From: Scott Worley Date: Sat, 13 Sep 2025 18:07:10 +0000 (-0700) Subject: Set the window title X-Git-Tag: v1.0.0~3 X-Git-Url: http://git.scottworley.com/nix-env-apps/commitdiff_plain/047ecee45a4feb01834c90834f4af33fc57e8ea3?hp=0ac29b2ecacf45c6b9d6b552301acce54fe24fce Set the window title --- diff --git a/apps.py b/apps.py index 77fb563..1556714 100644 --- a/apps.py +++ b/apps.py @@ -92,6 +92,7 @@ def make_button(label: str, action: Callable[[Any], None]) -> Gtk.Button: def on_activate(app: Gtk.Application) -> None: win = Gtk.ApplicationWindow(application=app) + win.set_title('Apps') box = Gtk.Box() box.set_orientation(Gtk.Orientation.VERTICAL) edit = make_button("Edit Configuration", on_edit)