diff --git a/data/ui/DrawingPerspective.ui b/data/ui/DrawingPerspective.ui index c7943d4..be67857 100644 --- a/data/ui/DrawingPerspective.ui +++ b/data/ui/DrawingPerspective.ui @@ -15,23 +15,6 @@ True False - - - True - False - 20 - 20 - device name - - - - - - False - False - 0 - - True diff --git a/tuhigui/drawingperspective.py b/tuhigui/drawingperspective.py index 86fb42b..7488939 100644 --- a/tuhigui/drawingperspective.py +++ b/tuhigui/drawingperspective.py @@ -28,7 +28,6 @@ logger = logging.getLogger('drawingperspective') class DrawingPerspective(Gtk.Stack): __gtype_name__ = "DrawingPerspective" - label_devicename = Gtk.Template.Child() image_battery = Gtk.Template.Child() flowbox_drawings = Gtk.Template.Child() @@ -54,7 +53,6 @@ class DrawingPerspective(Gtk.Stack): @device.setter def device(self, device): self._device = device - self.label_devicename.set_text(f'{device.name} - {device.address}') device.connect('notify::connected', self._on_connected) device.connect('notify::listening', self._on_listening_stopped)