diff options
author | Aylur <[email protected]> | 2024-06-26 02:20:59 +0200 |
---|---|---|
committer | Aylur <[email protected]> | 2024-06-26 02:20:59 +0200 |
commit | 710e419986b671dbe02021f19e9fe94e0d17ccb3 (patch) | |
tree | 0dedeeb4d7c9469e36fdeaf508fc97282b8aa0db /lua/astal | |
parent | 03228cdb160cff067e562a6ab7f8650af23358bd (diff) |
feat: widget click through
Diffstat (limited to 'lua/astal')
-rw-r--r-- | lua/astal/widget.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lua/astal/widget.lua b/lua/astal/widget.lua index f38cdb9..d2dadc6 100644 --- a/lua/astal/widget.lua +++ b/lua/astal/widget.lua @@ -259,6 +259,11 @@ Gtk.Widget._attribute.cursor = { set = Astal.widget_set_cursor, } +Gtk.Widget._attribute.click_through = { + get = Astal.widget_get_click_through, + set = Astal.widget_set_click_through, +} + Astal.Box._attribute.children = { get = Astal.Box.get_children, set = Astal.Box.set_children, |