Skip to content

Commit

Permalink
fix: set budgie run dialog to skip pager and taskbar (#530)
Browse files Browse the repository at this point in the history
fixes #529
  • Loading branch information
JoshStrobl authored Feb 9, 2024
1 parent 85cbf71 commit f936531
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/dialogs/run/RunDialog.vala
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ namespace Budgie {
construct {
set_keep_above(true);
set_position(Gtk.WindowPosition.CENTER);
set_skip_pager_hint(true);
set_skip_taskbar_hint(true);
Gdk.Visual? visual = screen.get_rgba_visual();
if (visual != null) {
this.set_visual(visual);
Expand Down

0 comments on commit f936531

Please sign in to comment.