Skip to content

Commit

Permalink
wew
Browse files Browse the repository at this point in the history
  • Loading branch information
lainsce authored Feb 4, 2023
1 parent 024a683 commit ac4cb41
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/Models/Window.vala
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ public class He.Window : Gtk.Window {
}
set {
_parent = value;
set_parent (value);
set_transient_for (value);
}
}
Expand All @@ -45,7 +46,7 @@ public class He.Window : Gtk.Window {
private new bool _modal;
public new bool modal {
get {
return modal;
return this.get_modal ();
}
set {
_modal = value;
Expand Down Expand Up @@ -93,4 +94,4 @@ public class He.Window : Gtk.Window {
has_title = false;
has_back_button = false;
}
}
}

0 comments on commit ac4cb41

Please sign in to comment.