From f9d872148933f072e504c1292c058c676352ab17 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Thu, 4 Apr 2019 10:28:21 +0200 Subject: ui: use slightly larger font to improve status display in ConfView Signed-off-by: Alexander Neumann Signed-off-by: Jason A. Donenfeld --- ui/manage_tunnels.go | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'ui/manage_tunnels.go') diff --git a/ui/manage_tunnels.go b/ui/manage_tunnels.go index 6ab20873..662de850 100644 --- a/ui/manage_tunnels.go +++ b/ui/manage_tunnels.go @@ -45,6 +45,12 @@ func NewManageTunnelsWindow(icon *walk.Icon) (*ManageTunnelsWindow, error) { func (mtw *ManageTunnelsWindow) setup() error { mtw.SetIcon(mtw.icon) + font, err := walk.NewFont("Segoe UI", 9, 0) + if err != nil { + return err + } + mtw.AddDisposable(font) + mtw.SetFont(font) mtw.SetSize(walk.Size{900, 600}) mtw.SetLayout(walk.NewVBoxLayout()) mtw.Closing().Attach(func(canceled *bool, reason walk.CloseReason) { -- cgit v1.2.3-59-g8ed1b