Commit a6dfb304cb1fdf0bda9d299ac7eb2af29df6ddea
1 parent
3352d19b
Exists in
master
and in
1 other branch
Fixing .deb builds.
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/filetransfer/select.c
... | ... | @@ -118,7 +118,7 @@ gchar * v3270ft_select_file(GtkWidget *dialog, const gchar *title, const gchar * |
118 | 118 | GtkFileFilter *filter = gtk_file_filter_new(); |
119 | 119 | gtk_file_filter_set_name(filter,name); |
120 | 120 | gtk_file_filter_add_pattern(filter, pattern); |
121 | - gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(native), filter); | |
121 | + gtk_file_chooser_add_filter(GTK_FILE_CHOOSER(chooser), filter); | |
122 | 122 | |
123 | 123 | } |
124 | 124 | va_end(args); | ... | ... |