Merge pull request #2740 from Elv13/more_notif_fixes

Fix 2 more notification issues
This commit is contained in:
mergify[bot] 2019-04-07 08:34:22 +00:00 committed by GitHub
commit 7b7dcdd87a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -9,6 +9,7 @@ if dbus then
naughty.dbus = require("naughty.dbus")
end
naughty.action = require("naughty.action")
naughty.layout = require("naughty.layout")
naughty.notification = require("naughty.notification")

View File

@ -400,8 +400,8 @@ function naughty.default_notification_handler(notification, args)
local action_width = w + 2 * margin
actionmarginbox:buttons(gtable.join(
button({ }, 1, function() action:trigger() end),
button({ }, 3, function() action:trigger() end)
button({ }, 1, function() action:invoke() end),
button({ }, 3, function() action:invoke() end)
))
actionslayout:add(actionmarginbox)