Skip to content

Commit

Permalink
Reformat affected while loop
Browse files Browse the repository at this point in the history
  • Loading branch information
konsolebox committed Aug 6, 2016
1 parent 13f47d6 commit cf9c0e6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/dialogs.c
Original file line number Diff line number Diff line change
Expand Up @@ -520,8 +520,9 @@ void dialogs_show_open_file(gboolean recursive)
gtk_file_chooser_add_shortcut_folder(GTK_FILE_CHOOSER(dialog),
app->project->base_path, NULL);

while (!open_file_dialog_handle_response(dialog,
gtk_dialog_run(GTK_DIALOG(dialog)), recursive));
while (!open_file_dialog_handle_response(dialog, gtk_dialog_run(GTK_DIALOG(dialog)),
recursive))
;
gtk_widget_destroy(dialog);
}
g_free(initdir);
Expand Down

0 comments on commit cf9c0e6

Please sign in to comment.