@gennad commented on this pull request.
In src/project.c:
> @@ -654,17 +654,16 @@ gboolean project_ask_close(void) { if (app->project != NULL) { - if (dialogs_show_question_full(NULL, GTK_STOCK_CLOSE, GTK_STOCK_CANCEL, + if (!project_prefs.project_ask_close ||
Should it not be
if (project_prefs.project_ask_close &&
dialogs_show_question_full(NULL, GTK_STOCK_CLOSE, GTK_STOCK_CANCEL)
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.