Avoid wibox borders to be recovered by clients

Signed-off-by: Pierre Mazière <pierre.maziere@gmail.com>
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Pierre Mazière 2010-03-19 03:19:14 +01:00 committed by Julien Danjou
parent 62ac15d9d8
commit a89c94e9d7
1 changed files with 4 additions and 4 deletions

View File

@ -88,13 +88,13 @@ local function wibox_update_strut(wibox)
if not wibox.visible then if not wibox.visible then
wibox:struts { left = 0, right = 0, bottom = 0, top = 0 } wibox:struts { left = 0, right = 0, bottom = 0, top = 0 }
elseif wprop.position == "top" then elseif wprop.position == "top" then
wibox:struts { left = 0, right = 0, bottom = 0, top = wibox.height + wibox.border_width } wibox:struts { left = 0, right = 0, bottom = 0, top = wibox.height + 2 * wibox.border_width }
elseif wprop.position == "bottom" then elseif wprop.position == "bottom" then
wibox:struts { left = 0, right = 0, bottom = wibox.height + wibox.border_width, top = 0 } wibox:struts { left = 0, right = 0, bottom = wibox.height + 2 * wibox.border_width, top = 0 }
elseif wprop.position == "left" then elseif wprop.position == "left" then
wibox:struts { left = wibox.width + wibox.border_width, right = 0, bottom = 0, top = 0 } wibox:struts { left = wibox.width + 2 * wibox.border_width, right = 0, bottom = 0, top = 0 }
elseif wprop.position == "right" then elseif wprop.position == "right" then
wibox:struts { left = 0, right = wibox.width + wibox.border_width, bottom = 0, top = 0 } wibox:struts { left = 0, right = wibox.width + 2 * wibox.border_width, bottom = 0, top = 0 }
end end
break break
end end