add gtk name property to statusLineWrapper and statusLabel

This commit is contained in:
Schuldkröte
2023-11-21 11:47:01 +01:00
parent 33e0032725
commit 8e58654336

View File

@@ -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()