Merge pull request #104 from Schuldkroete/main

Make the description line at the bottom of the drawer themable
This commit is contained in:
Piotr Miller
2023-11-21 14:20:22 +01:00
committed by GitHub

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