mirror of https://github.com/GNOME/gimp.git
switch to the "Channels" tab after adding the new channel. Fixes bug
2003-05-27 Michael Natterer <mitch@gimp.org> * app/gui/select-commands.c (select_save_cmd_callback): switch to the "Channels" tab after adding the new channel. Fixes bug #101970.
This commit is contained in:
parent
ee3734eeab
commit
5c04f27cd5
|
@ -1,3 +1,9 @@
|
|||
2003-05-27 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/gui/select-commands.c (select_save_cmd_callback): switch
|
||||
to the "Channels" tab after adding the new channel.
|
||||
Fixes bug #101970.
|
||||
|
||||
2003-05-27 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* configure.in: Don't warn about webbrowser and gimp-remote not
|
||||
|
|
|
@ -31,9 +31,14 @@
|
|||
#include "core/gimpimage-mask.h"
|
||||
#include "core/gimpimage-qmask.h"
|
||||
|
||||
#include "widgets/gimpdialogfactory.h"
|
||||
|
||||
#include "display/gimpdisplay.h"
|
||||
#include "display/gimpdisplayshell.h"
|
||||
|
||||
#include "dialogs.h"
|
||||
#include "select-commands.h"
|
||||
|
||||
#include "gimp-intl.h"
|
||||
|
||||
|
||||
|
@ -253,6 +258,9 @@ select_save_cmd_callback (GtkWidget *widget,
|
|||
|
||||
gimp_image_mask_save (gimage);
|
||||
gimp_image_flush (gimage);
|
||||
|
||||
gimp_dialog_factory_dialog_raise (global_dock_factory,
|
||||
"gimp-channel-list", -1);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
@ -31,9 +31,14 @@
|
|||
#include "core/gimpimage-mask.h"
|
||||
#include "core/gimpimage-qmask.h"
|
||||
|
||||
#include "widgets/gimpdialogfactory.h"
|
||||
|
||||
#include "display/gimpdisplay.h"
|
||||
#include "display/gimpdisplayshell.h"
|
||||
|
||||
#include "dialogs.h"
|
||||
#include "select-commands.h"
|
||||
|
||||
#include "gimp-intl.h"
|
||||
|
||||
|
||||
|
@ -253,6 +258,9 @@ select_save_cmd_callback (GtkWidget *widget,
|
|||
|
||||
gimp_image_mask_save (gimage);
|
||||
gimp_image_flush (gimage);
|
||||
|
||||
gimp_dialog_factory_dialog_raise (global_dock_factory,
|
||||
"gimp-channel-list", -1);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in New Issue