aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorAlexander Neumann <alexander.neumann@picos-software.com>2019-04-23 18:15:25 +0200
committerAlexander Neumann <alexander.neumann@picos-software.com>2019-04-23 18:15:25 +0200
commit9325c83ac36e044e215fbfa8a0c9d6be38980c5a (patch)
tree2c8801b9bfc9b891df29c44e6ad99db7de47d377
parentui: overlay main window and tray icons according to tunnel status (diff)
downloadwireguard-windows-9325c83ac36e044e215fbfa8a0c9d6be38980c5a.tar.xz
wireguard-windows-9325c83ac36e044e215fbfa8a0c9d6be38980c5a.zip
ui: use more horizontal space for conf view
Signed-off-by: Alexander Neumann <alexander.neumann@picos-software.com>
-rw-r--r--ui/manage_tunnels.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/manage_tunnels.go b/ui/manage_tunnels.go
index dbe719b9..35c067a6 100644
--- a/ui/manage_tunnels.go
+++ b/ui/manage_tunnels.go
@@ -131,6 +131,7 @@ func NewManageTunnelsWindow(icon *walk.Icon, logger *ringlogger.Ringlogger) (*Ma
currentTunnelContainer, _ := walk.NewComposite(splitter)
currentTunnelContainer.SetLayout(walk.NewVBoxLayout())
+ splitter.Layout().(interface{ SetStretchFactor(walk.Widget, int) error }).SetStretchFactor(currentTunnelContainer, 3)
mtw.confView, _ = NewConfView(currentTunnelContainer)