[gimp] devel-docs: get rid of icons in dialog buttons (use labels not stock IDs)



commit 813ae8461c90038ce0af5019f65acb287fcfe477
Author: Michael Natterer <mitch gimp org>
Date:   Sun Feb 12 16:11:12 2017 +0100

    devel-docs: get rid of icons in dialog buttons (use labels not stock IDs)

 devel-docs/tools/widgets.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/devel-docs/tools/widgets.c b/devel-docs/tools/widgets.c
index 4b4fe77..6d17f9c 100644
--- a/devel-docs/tools/widgets.c
+++ b/devel-docs/tools/widgets.c
@@ -391,8 +391,8 @@ create_dialog (void)
   widget = gimp_dialog_new ("Gimp Dialog",
                             "gimp-widget-dialog",
                             NULL, 0, NULL, NULL,
-                            GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
-                            GTK_STOCK_OK,     GTK_RESPONSE_OK,
+                            "_Cancel", GTK_RESPONSE_CANCEL,
+                            "_OK",     GTK_RESPONSE_OK,
 
                             NULL);
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]