Skip to content

Commit

Permalink
Merge pull request #40 from 0x6e6174/main
Browse files Browse the repository at this point in the history
replace widget_set_class_names with wiget_get_class_names in core/lua/astal/widget.lua:270
  • Loading branch information
Aylur authored Oct 11, 2024
2 parents d0fb3d0 + 958ec66 commit 1a1ffe5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/lua/astal/widget.lua
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ Gtk.Widget._attribute.css = {
Gtk.Widget._attribute.class_name = {
get = function(self)
local result = ""
local strings = Astal.widget_set_class_names(self)
local strings = Astal.widget_get_class_names(self)
for i, str in ipairs(strings) do
result = result .. str
if i < #strings then
Expand Down

0 comments on commit 1a1ffe5

Please sign in to comment.