0
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2025-07-14 03:31:50 +02:00

WIP waveform name removed

This commit is contained in:
2025-04-08 10:08:34 +02:00
parent a77367f2bd
commit 6a63e3747a
3 changed files with 1 additions and 10 deletions

View File

@ -25,7 +25,6 @@ class RoundedFrame(QFrame):
# Apply rounded frame styling
self.setProperty("skip_settings", True)
self.setObjectName("roundedFrame")
# Create a layout for the frame
self.layout = QHBoxLayout(self)

View File

@ -35,7 +35,6 @@ class SidePanel(QWidget):
super().__init__(parent=parent)
self.setProperty("skip_settings", True)
self.setObjectName("SidePanel")
self._orientation = orientation
self._panel_max_width = panel_max_width

View File

@ -129,19 +129,12 @@ class Waveform(PlotBase):
client=None,
gui_id: str | None = None,
popups: bool = True,
name=None,
**kwargs,
):
if config is None:
config = WaveformConfig(widget_class=self.__class__.__name__)
super().__init__(
parent=parent,
config=config,
client=client,
gui_id=gui_id,
popups=popups,
name=name,
**kwargs,
parent=parent, config=config, client=client, gui_id=gui_id, popups=popups, **kwargs
)
# For PropertyManager identification