summary refs log tree commit diff stats
path: root/src/fe-gtk/gtkutil.h
diff options
context:
space:
mode:
authorPatrick Griffis <tingping@tingping.se>2022-04-16 18:41:34 -0500
committerPatrick Griffis <tingping@tingping.se>2022-04-16 18:41:34 -0500
commit13b6a40b9c3d1f2215ff87cdaff9e38a4020ee92 (patch)
tree29b3d01d4be5596c2aa2c5321ca21bbf3557ae10 /src/fe-gtk/gtkutil.h
parentdd167b4c8393677f465c03d66b438d519c43fb87 (diff)
Change preferences sub-dialogs to be modal
This solves the issue where the parent dialog is closed and then
the child dialog is used.

This is however only a partial fix:

- Many other dialogs throughout the codebase do not currently have
  parent windows and need to be refactored.

- Not all window managers respect modal so users can still trigger
  bugs. We can be more defensive against this but it requires more
  refactoring.

Closes #2686
Diffstat (limited to 'src/fe-gtk/gtkutil.h')
-rw-r--r--src/fe-gtk/gtkutil.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fe-gtk/gtkutil.h b/src/fe-gtk/gtkutil.h
index 0aa36439..c6e380e9 100644
--- a/src/fe-gtk/gtkutil.h
+++ b/src/fe-gtk/gtkutil.h
@@ -25,7 +25,7 @@
 
 typedef void (*filereqcallback) (void *, char *file);
 
-void gtkutil_file_req (const char *title, void *callback, void *userdata, char *filter, char *extensions, int flags);
+void gtkutil_file_req (GtkWindow *parent, const char *title, void *callback, void *userdata, char *filter, char *extensions, int flags);
 void gtkutil_destroy (GtkWidget * igad, GtkWidget * dgad);
 void gtkutil_destroy_on_esc (GtkWidget *win);
 GtkWidget *gtkutil_button (GtkWidget *box, char *stock, char *tip, void *callback,