mirror of https://github.com/GNOME/gimp.git
changed button label and added an icon.
2008-07-07 Sven Neumann <sven@gimp.org> * app/widgets/gimphelp.c (gimp_help_query_user_manual_online): changed button label and added an icon. svn path=/trunk/; revision=26085
This commit is contained in:
parent
2b3741c357
commit
11a5d20892
|
@ -1,3 +1,8 @@
|
|||
2008-07-07 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/widgets/gimphelp.c (gimp_help_query_user_manual_online):
|
||||
changed button label and added an icon.
|
||||
|
||||
2008-07-07 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/paint/gimppaintoptions.c
|
||||
|
|
|
@ -569,18 +569,25 @@ static void
|
|||
gimp_help_query_user_manual_online (GimpIdleHelp *idle_help)
|
||||
{
|
||||
GtkWidget *dialog;
|
||||
GtkWidget *button;
|
||||
|
||||
dialog = gimp_message_dialog_new (_("GIMP user manual is missing"),
|
||||
GIMP_STOCK_USER_MANUAL,
|
||||
NULL, 0, NULL, NULL,
|
||||
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
|
||||
_("Use _Online Version"), GTK_RESPONSE_ACCEPT,
|
||||
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
|
||||
NULL);
|
||||
|
||||
button = gtk_dialog_add_button (GTK_DIALOG (dialog),
|
||||
_("_Read Online"), GTK_RESPONSE_ACCEPT);
|
||||
gtk_button_set_image (GTK_BUTTON (button),
|
||||
gtk_image_new_from_stock (GIMP_STOCK_WEB,
|
||||
GTK_ICON_SIZE_BUTTON));
|
||||
|
||||
gtk_dialog_set_alternative_button_order (GTK_DIALOG (dialog),
|
||||
GTK_RESPONSE_ACCEPT,
|
||||
GTK_RESPONSE_CANCEL,
|
||||
-1);
|
||||
gtk_dialog_set_default_response (GTK_DIALOG (dialog), GTK_RESPONSE_ACCEPT);
|
||||
|
||||
if (idle_help->progress)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue