Renamed widget; moved to use signals; fixed label update

This commit is contained in:
2024-09-08 01:20:22 -05:00
parent ed63067bb8
commit 08a3623c9b
7 changed files with 36 additions and 116 deletions

View File

@@ -6,7 +6,6 @@ gi.require_version('Gtk', '3.0')
from gi.repository import Gtk
# Application imports
from ..widgets.buttons.open_files_button import OpenFilesButton
from ..widgets.controls.transparency_scale import TransparencyScale
@@ -38,7 +37,6 @@ class HeaderContainer(Gtk.Box):
button = Gtk.Button(label = "Interactive Debug")
button.connect("clicked", self._interactive_debug)
self.add( OpenFilesButton() )
self.add( TransparencyScale() )
self.add(button)