From 047ecee45a4feb01834c90834f4af33fc57e8ea3 Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Sat, 13 Sep 2025 11:07:10 -0700 Subject: [PATCH] Set the window title --- apps.py | 1 + 1 file changed, 1 insertion(+) 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) -- 2.50.1