From bea814962f04944def4943ba0b95fe1cf558d8c0 Mon Sep 17 00:00:00 2001 From: Sven Neumann Date: Wed, 18 Mar 1998 18:19:32 +0000 Subject: [PATCH] Split the "Brought to you by S&P" line in two to avoid problems with 100dpi fonts. --Sven --- ChangeLog | 5 +++++ app/app_procs.c | 15 +++++++++++---- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 45de93fbc1..346795e21e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Mar 18 19:11:01 MET 1998 Sven Neumann + + * app/app_procs.c: split the "Brought to you by S&P" line in + two to avoid problems with 100dpi fonts + Wed Mar 18 00:06:50 MET 1998 Sven Neumann * gradient.c: fixed a problem in the gradient editor diff --git a/app/app_procs.c b/app/app_procs.c index 34b5f05720..757e708de5 100644 --- a/app/app_procs.c +++ b/app/app_procs.c @@ -58,7 +58,8 @@ #define LOGO_WIDTH_MIN 350 #define LOGO_HEIGHT_MIN 110 #define NAME "The GIMP" -#define AUTHORS "brought to you by Spencer Kimball and Peter Mattis" +#define BROUGHT "brought to you by" +#define AUTHORS "Spencer Kimball and Peter Mattis" #define SHOW_NEVER 0 #define SHOW_LATER 1 @@ -241,7 +242,7 @@ splash_text_draw (GtkWidget *widget) font, widget->style->black_gc, ((logo_area_width - gdk_string_width (font, NAME)) / 2), - (0.3 * logo_area_height), + (0.25 * logo_area_height), NAME); font = gdk_font_load ("-Adobe-Helvetica-Bold-R-Normal--*-120-*-*-*-*-*-*"); @@ -249,13 +250,19 @@ splash_text_draw (GtkWidget *widget) font, widget->style->black_gc, ((logo_area_width - gdk_string_width (font, VERSION)) / 2), - (0.5 * logo_area_height), + (0.45 * logo_area_height), VERSION); + gdk_draw_string (widget->window, + font, + widget->style->black_gc, + ((logo_area_width - gdk_string_width (font, BROUGHT)) / 2), + (0.65 * logo_area_height), + BROUGHT); gdk_draw_string (widget->window, font, widget->style->black_gc, ((logo_area_width - gdk_string_width (font, AUTHORS)) / 2), - (0.7 * logo_area_height), + (0.80 * logo_area_height), AUTHORS); }