aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorAlexander Neumann <alexander.neumann@picos-software.com>2019-04-15 14:39:14 +0200
committerAlexander Neumann <alexander.neumann@picos-software.com>2019-04-23 11:05:00 +0200
commitbecbf78dcff9378c50ab9031f7b3ec4b7ee50792 (patch)
treed35995932eca52eb40162e5ab4f64601e2f3231d
parentui: refactor exportLog (diff)
downloadwireguard-windows-becbf78dcff9378c50ab9031f7b3ec4b7ee50792.tar.xz
wireguard-windows-becbf78dcff9378c50ab9031f7b3ec4b7ee50792.zip
ui: add some margin to the bottom of toggleActiveLine
Signed-off-by: Alexander Neumann <alexander.neumann@picos-software.com> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r--ui/confview.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/confview.go b/ui/confview.go
index 2101aa0a..fa021289 100644
--- a/ui/confview.go
+++ b/ui/confview.go
@@ -210,7 +210,7 @@ func newToggleActiveLine(parent walk.Container) *toggleActiveLine {
tal.composite, _ = walk.NewComposite(parent)
layout := walk.NewHBoxLayout()
- layout.SetMargins(walk.Margins{})
+ layout.SetMargins(walk.Margins{0, 0, 0, 6})
tal.composite.SetLayout(layout)
tal.button, _ = walk.NewPushButton(tal.composite)