From e2c278742682530e40d174451830b17e5af89e0d Mon Sep 17 00:00:00 2001 From: Jim Evins Date: Tue, 3 Sep 2002 04:36:12 +0000 Subject: [PATCH] Removed TAB from authors strings -- it caused a segfault w/ AA fonts. git-svn-id: https://glabels.svn.sourceforge.net/svnroot/glabels/trunk@80 f5e0f49d-192f-0410-a22d-a8d8700d0965 --- glabels2/src/commands.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/glabels2/src/commands.c b/glabels2/src/commands.c index cd83667b..91793985 100644 --- a/glabels2/src/commands.c +++ b/glabels2/src/commands.c @@ -368,10 +368,9 @@ gl_cmd_help_about (BonoboUIComponent *uic, "General Public License for more details.\n"); gchar *authors[] = { - _("Author:"), - "\tJim Evins ", - "", - _("See the file AUTHORS for additional acknowledgments,"), + "Jim Evins ", + " ", + _("See the file AUTHORS for additional credits,"), _("or visit http://snaught.com/glabels"), NULL }; @@ -398,8 +397,8 @@ gl_cmd_help_about (BonoboUIComponent *uic, copy_text, about_text, (const char **)authors, - (const char **)documenters, - (const char *)translator_credits, + (const char **)NULL, + (const char *)NULL, pixbuf); gtk_window_set_transient_for (GTK_WINDOW (about), -- 2.39.5