From 8e586543367ba3debe93474d032c56005ea9e499 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Schuldkr=C3=B6te?= <18383242+Schuldkroete@users.noreply.github.com> Date: Tue, 21 Nov 2023 11:47:01 +0100 Subject: [PATCH] add gtk name property to statusLineWrapper and statusLabel --- main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.go b/main.go index 6ef1fc8..e555865 100644 --- a/main.go +++ b/main.go @@ -542,8 +542,10 @@ func main() { } statusLineWrapper, _ := gtk.BoxNew(gtk.ORIENTATION_HORIZONTAL, 0) + statusLineWrapper.SetProperty("name", "status-line-wrapper") outerVBox.PackStart(statusLineWrapper, false, false, 10) statusLabel, _ = gtk.LabelNew(status) + statusLabel.SetProperty("name", "status-label") statusLineWrapper.PackStart(statusLabel, true, false, 0) win.ShowAll()