Skip to content

Commit

Permalink
Merge pull request #957 from Justinzobel/next
Browse files Browse the repository at this point in the history
Fix import label
  • Loading branch information
antenore authored Aug 12, 2016
2 parents cbcb19e + ad2f2b4 commit 2b281fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion remmina/src/remmina_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,7 @@ void remmina_main_on_action_tools_import(GtkAction *action, gpointer user_data)
TRACE_CALL("remmina_main_on_action_tools_import");
GtkWidget *dialog;

dialog = gtk_file_chooser_dialog_new(_("Import"), remminamain->window, GTK_FILE_CHOOSER_ACTION_OPEN, "document-open",
dialog = gtk_file_chooser_dialog_new(_("Import"), remminamain->window, GTK_FILE_CHOOSER_ACTION_OPEN, "Import",
GTK_RESPONSE_ACCEPT, NULL);
gtk_file_chooser_set_select_multiple(GTK_FILE_CHOOSER(dialog), TRUE);
g_signal_connect(G_OBJECT(dialog), "response", G_CALLBACK(remmina_main_action_tools_import_on_response), NULL);
Expand Down

0 comments on commit 2b281fe

Please sign in to comment.