We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfeba68 commit 888abe2Copy full SHA for 888abe2
src/PopupWindow.vala
@@ -18,6 +18,10 @@ class Plotinus.PopupWindow : Gtk.Window {
18
destroy_with_parent = true;
19
modal = true;
20
21
+ // Required for modal window behavior on X11 (see Gtk.Dialog)
22
+ window_position = Gtk.WindowPosition.CENTER_ON_PARENT;
23
+ type_hint = Gdk.WindowTypeHint.DIALOG;
24
+
25
// Width is determined by the width of the search entry/command list
26
set_default_size(-1, 300);
27
set_size_request(-1, 200);
0 commit comments