Skip to content

Commit

Permalink
More just-in-case GTK window flags
Browse files Browse the repository at this point in the history
These don't do anything on my system, but they definitely represent what
I want the window to do on systems where these mean something.
  • Loading branch information
anko committed May 2, 2021
1 parent 39c5cd4 commit 2eebe46
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions main.c
Original file line number Diff line number Diff line change
Expand Up @@ -741,6 +741,8 @@ int main(int argc, char **argv) {
// but otherwise leave it alone.
gtk_window_set_keep_above (GTK_WINDOW(window), true);
gtk_window_set_skip_taskbar_hint(GTK_WINDOW(window), true);
gtk_window_set_skip_pager_hint (GTK_WINDOW(window), true);
gtk_window_set_focus_on_map (GTK_WINDOW(window), false);
gtk_window_set_accept_focus (GTK_WINDOW(window), true);
gtk_window_set_decorated (GTK_WINDOW(window), false);
gtk_window_set_resizable (GTK_WINDOW(window), false);
Expand Down

0 comments on commit 2eebe46

Please sign in to comment.