From 110c62ad99c7fe616d2c5445d859acb08e5e7d68 Mon Sep 17 00:00:00 2001 From: Elliot Lee Date: Fri, 13 Mar 1998 19:41:03 +0000 Subject: [PATCH] Put "www.gimp.org" label in the about box - just a peeve of mine to always include info on where to get a program... :) --- app/about_dialog.c | 5 +++++ app/dialogs/about-dialog.c | 5 +++++ app/gui/about-dialog.c | 5 +++++ 3 files changed, 15 insertions(+) diff --git a/app/about_dialog.c b/app/about_dialog.c index 2644332963..97e882ba21 100644 --- a/app/about_dialog.c +++ b/app/about_dialog.c @@ -64,6 +64,7 @@ static char *scroll_text[] = "Karl LaRocca", "Jens Lautenbacher", "Laramie Leavitt", + "Elliot Lee", "Raph Levien", "Adrian Likins", "Ingo Luetkebohle", @@ -200,6 +201,10 @@ about_dialog_create (int timeout) gtk_container_add (GTK_CONTAINER (aboutframe), scroll_area); gtk_widget_show (scroll_area); + label = gtk_label_new ("Please visit http://www.gimp.org/ for more info"); + gtk_box_pack_start (GTK_BOX (vbox), label, FALSE, TRUE, 0); + gtk_widget_show (label); + gtk_widget_realize (scroll_area); gdk_window_set_background (scroll_area->window, &scroll_area->style->white); } diff --git a/app/dialogs/about-dialog.c b/app/dialogs/about-dialog.c index 2644332963..97e882ba21 100644 --- a/app/dialogs/about-dialog.c +++ b/app/dialogs/about-dialog.c @@ -64,6 +64,7 @@ static char *scroll_text[] = "Karl LaRocca", "Jens Lautenbacher", "Laramie Leavitt", + "Elliot Lee", "Raph Levien", "Adrian Likins", "Ingo Luetkebohle", @@ -200,6 +201,10 @@ about_dialog_create (int timeout) gtk_container_add (GTK_CONTAINER (aboutframe), scroll_area); gtk_widget_show (scroll_area); + label = gtk_label_new ("Please visit http://www.gimp.org/ for more info"); + gtk_box_pack_start (GTK_BOX (vbox), label, FALSE, TRUE, 0); + gtk_widget_show (label); + gtk_widget_realize (scroll_area); gdk_window_set_background (scroll_area->window, &scroll_area->style->white); } diff --git a/app/gui/about-dialog.c b/app/gui/about-dialog.c index 2644332963..97e882ba21 100644 --- a/app/gui/about-dialog.c +++ b/app/gui/about-dialog.c @@ -64,6 +64,7 @@ static char *scroll_text[] = "Karl LaRocca", "Jens Lautenbacher", "Laramie Leavitt", + "Elliot Lee", "Raph Levien", "Adrian Likins", "Ingo Luetkebohle", @@ -200,6 +201,10 @@ about_dialog_create (int timeout) gtk_container_add (GTK_CONTAINER (aboutframe), scroll_area); gtk_widget_show (scroll_area); + label = gtk_label_new ("Please visit http://www.gimp.org/ for more info"); + gtk_box_pack_start (GTK_BOX (vbox), label, FALSE, TRUE, 0); + gtk_widget_show (label); + gtk_widget_realize (scroll_area); gdk_window_set_background (scroll_area->window, &scroll_area->style->white); }