gimp_exit() when closing the "no image" window.

2008-03-20  Martin Nordholts  <martinn@svn.gnome.org>

	* app/display/gimpdisplayshell-close.c
	(gimp_display_shell_close): gimp_exit() when closing the "no
	image" window.

svn path=/trunk/; revision=25147
This commit is contained in:
Martin Nordholts
2008-03-20 20:43:48 +00:00
committed by Martin Nordholts
parent b8641d48e6
commit 667abcec21
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2008-03-20 Martin Nordholts <martinn@svn.gnome.org>
* app/display/gimpdisplayshell-close.c
(gimp_display_shell_close): gimp_exit() when closing the "no
image" window.
2008-03-20 Martin Nordholts <martinn@svn.gnome.org>
* app/gui/gui-vtable.c: Fix stupid mistake in previous commit...

View File

@ -98,6 +98,10 @@ gimp_display_shell_close (GimpDisplayShell *shell,
{
gimp_display_shell_really_close (shell);
}
else
{
gimp_exit (shell->display->gimp, FALSE);
}
}