Add margins to the mainwindow

This commit is contained in:
Xpl0itU 2023-07-19 21:33:24 +02:00
parent 8060005529
commit 22aec91884

View file

@ -310,6 +310,11 @@ func (mw *MainWindow) ShowAll() {
mainvBox.PackEnd(bottomhBox, false, false, 0)
mainvBox.SetMarginBottom(2)
mainvBox.SetMarginEnd(2)
mainvBox.SetMarginStart(2)
mainvBox.SetMarginTop(2)
mw.window.Add(mainvBox)
mw.window.ShowAll()