From 53bed4450c6268a290c0ee285fd352350354edd6 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Sat, 27 Apr 2019 16:20:22 +0200 Subject: ui: enable double buffering on confview This fixes the flickering, but now the header labels are cut off. I'll let lxn fix this part. --- ui/confview.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ui/confview.go') diff --git a/ui/confview.go b/ui/confview.go index 5dd5c626..481a2da3 100644 --- a/ui/confview.go +++ b/ui/confview.go @@ -390,7 +390,7 @@ func NewConfView(parent walk.Container) (*ConfView, error) { if err := walk.InitWrapperWindow(cv); err != nil { return nil, err } - + cv.SetDoubleBuffering(true) return cv, nil } -- cgit v1.2.3-59-g8ed1b