From 9f8af0ae6db085570f48cc77a9fed94c918876fb Mon Sep 17 00:00:00 2001 From: Uli Schlachter Date: Sat, 2 Apr 2011 17:26:52 +0200 Subject: [PATCH] awful.wibox: Fix some flickering The menu was first made visible and then placed correctly. This caused a short, black flicker in the top, left corner of the screen. Fix this by removing a too early "visible = true". This was introduced by me in 4d280365ad1e1bcabc2c, sorry. Signed-off-by: Uli Schlachter --- lib/awful/menu.lua.in | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/awful/menu.lua.in b/lib/awful/menu.lua.in index ce6355d8..9cfbd665 100644 --- a/lib/awful/menu.lua.in +++ b/lib/awful/menu.lua.in @@ -298,7 +298,6 @@ function show(menu, args) local screen_index = capi.mouse.screen local keygrabber = args.keygrabber or false - menu.wibox.visible = true if not set_size(menu) then return end set_coords(menu, screen_index, coords)