aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ui/managewindow.go
diff options
context:
space:
mode:
Diffstat (limited to 'ui/managewindow.go')
-rw-r--r--ui/managewindow.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/managewindow.go b/ui/managewindow.go
index dc062117..01e7f734 100644
--- a/ui/managewindow.go
+++ b/ui/managewindow.go
@@ -50,7 +50,9 @@ func NewManageTunnelsWindow() (*ManageTunnelsWindow, error) {
mtw.AddDisposable(font)
mtw.SetFont(font)
mtw.SetSize(walk.Size{900, 600})
- mtw.SetLayout(walk.NewVBoxLayout())
+ vlayout := walk.NewVBoxLayout()
+ vlayout.SetMargins(walk.Margins{5, 5, 5, 5})
+ mtw.SetLayout(vlayout)
mtw.Closing().Attach(func(canceled *bool, reason walk.CloseReason) {
// "Close to tray" instead of exiting application
*canceled = true