diff options
author | TingPing <TingPing@users.noreply.github.com> | 2013-09-06 17:00:55 -0700 |
---|---|---|
committer | TingPing <TingPing@users.noreply.github.com> | 2013-09-06 17:00:55 -0700 |
commit | 703316ace60e469e3500960d54b6c9c5b353f3c8 (patch) | |
tree | 79bf048b2c43a5590d6f15a280496bbb5f368152 /src/fe-gtk/plugingui.c | |
parent | 88afa4afa2b3821f832007ad106e92d487d82ec9 (diff) | |
parent | bf269d2e0386a54650b3b9e860eeb2e2f05a3fde (diff) |
Merge pull request #733 from hexchat/filedialog
Improve file dialogs
Diffstat (limited to 'src/fe-gtk/plugingui.c')
-rw-r--r-- | src/fe-gtk/plugingui.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fe-gtk/plugingui.c b/src/fe-gtk/plugingui.c index 745c6d83..c6d90e2f 100644 --- a/src/fe-gtk/plugingui.c +++ b/src/fe-gtk/plugingui.c @@ -162,9 +162,9 @@ plugingui_load (void) gtkutil_file_req (_("Select a Plugin or Script to load"), plugingui_load_cb, current_sess, #ifdef WIN32 - sub_dir, "*.dll;*.lua;*.pl;*.py;*.tcl;*.js", FRF_ADDFOLDER|FRF_FILTERISINITIAL|FRF_EXTENSIONS); + sub_dir, "*.dll;*.lua;*.pl;*.py;*.tcl;*.js", FRF_FILTERISINITIAL|FRF_EXTENSIONS); #else - sub_dir, "*.so;*.lua;*.pl;*.py;*.tcl;*.js", FRF_ADDFOLDER|FRF_FILTERISINITIAL|FRF_EXTENSIONS); + sub_dir, "*.so;*.lua;*.pl;*.py;*.tcl;*.js", FRF_FILTERISINITIAL|FRF_EXTENSIONS); #endif g_free (sub_dir); |