From cebf7bc76248a98104ff8d92c43b846413fbf274 Mon Sep 17 00:00:00 2001 From: koniu Date: Fri, 7 Aug 2009 22:13:49 +0100 Subject: [PATCH] naughty: fix size/position messup on arrange Signed-off-by: koniu Signed-off-by: Julien Danjou --- lib/naughty.lua.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/naughty.lua.in b/lib/naughty.lua.in index 7d61d4ebc..d006d38bf 100644 --- a/lib/naughty.lua.in +++ b/lib/naughty.lua.in @@ -162,7 +162,7 @@ local function arrange(screen) for p,pos in pairs(notifications[screen]) do for i,notification in pairs(notifications[screen][p]) do local offset = get_offset(screen, p, i, notification.width, notification.height) - notification.box:geometry({ x = offset.x, y = offset.y, width = notification.width, height = notification.height }) + notification.box:geometry({ x = offset.x, y = offset.y }) notification.idx = offset.idx end end