Merge pull request #3624 from sclu1034/issue/3623

Fix missing accessor for notification.app_icon
This commit is contained in:
Emmanuel Lepage Vallée 2022-05-29 12:30:25 -07:00 committed by GitHub
commit 5adc223ef8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 9 deletions

View File

@ -613,15 +613,15 @@ function notification:get_text()
end
local properties = {
"message" , "title" , "timeout" , "hover_timeout" ,
"app_name", "position", "ontop" , "border_width" ,
"width" , "font" , "icon" , "icon_size" ,
"fg" , "bg" , "height" , "border_color" ,
"shape" , "opacity" , "margin" , "ignore_suspend",
"destroy" , "preset" , "callback", "actions" ,
"run" , "id" , "ignore" , "auto_reset_timeout",
"urgency" , "image" , "images" , "widget_template",
"max_width",
"message" , "title" , "timeout" , "hover_timeout" ,
"app_name" , "position", "ontop" , "border_width" ,
"width" , "font" , "icon" , "icon_size" ,
"fg" , "bg" , "height" , "border_color" ,
"shape" , "opacity" , "margin" , "ignore_suspend" ,
"destroy" , "preset" , "callback", "actions" ,
"run" , "id" , "ignore" , "auto_reset_timeout",
"urgency" , "image" , "images" , "widget_template" ,
"max_width", "app_icon",
}
for _, prop in ipairs(properties) do