Skip to content

Commit dc0e5d3

Browse files
committed
Astal4: fix namespace setter
1 parent e5a8e3b commit dc0e5d3

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

lib/astal/gtk4/src/widget/window.vala

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,12 @@ public class Astal.Window : Gtk.Window {
7979
*/
8080
public string namespace {
8181
get { return get_namespace(this); }
82-
set { set_namespace(this, value); }
82+
set {
83+
if(check("set namespace"))
84+
return;
85+
86+
set_namespace(this, value);
87+
}
8388
}
8489

8590
/**

0 commit comments

Comments
 (0)