From 0e97360d32491b8069db1254973e467e6f17f9be Mon Sep 17 00:00:00 2001 From: koniu Date: Fri, 21 Nov 2008 00:44:55 +0000 Subject: [PATCH] naughty: fix a bug with variable width popups Signed-off-by: koniu --- 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 9e2c5892..569c17c8 100644 --- a/lib/naughty.lua.in +++ b/lib/naughty.lua.in @@ -129,7 +129,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 = config.width, height = notification.height }) + notification.box:geometry({ x = offset.x, y = offset.y, width = notification.width, height = notification.height }) notification.idx = i end end