Fix reversed logic in gnc_quartz_should_quit

This commit is contained in:
jean 2020-08-27 17:00:32 -07:00
parent bbdd4f34b6
commit 3d98ba092f

View File

@ -3712,7 +3712,7 @@ static gboolean
gnc_quartz_should_quit (GtkosxApplication *theApp, GncMainWindow *window) gnc_quartz_should_quit (GtkosxApplication *theApp, GncMainWindow *window)
{ {
if (gnc_main_window_all_finish_pending()) if (gnc_main_window_all_finish_pending())
return gnc_main_window_quit (window); return !gnc_main_window_quit (window);
return TRUE; return TRUE;
} }