summaryrefslogtreecommitdiffstats
path: root/print.c
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2013-02-17 11:26:56 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-02-17 11:27:31 -0800
commit6b27fb9be58a6f3f4ae98b780a8c24c2f1370f52 (patch)
tree8c6088d3ca01c1f6938366c84b312e0819f3ec6d /print.c
parent4e90c5d7e845d526f6ce2a38a89a188d4edc837b (diff)
downloadsubsurface-6b27fb9be58a6f3f4ae98b780a8c24c2f1370f52.tar.gz
Print: better name and layout for custom widget
"Dive details" doesn't really capture what this is about and it got very odd translations. So we just repeat the "Print type" text - this avoids needing a new translation, too. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'print.c')
-rw-r--r--print.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/print.c b/print.c
index 2ccab9b4d..169c22f7c 100644
--- a/print.c
+++ b/print.c
@@ -864,9 +864,9 @@ static GtkWidget *print_dialog(GtkPrintOperation *operation, gpointer user_data)
{
GtkWidget *vbox, *radio1, *radio2, *radio3, *frame, *box;
int dives;
- gtk_print_operation_set_custom_tab_label(operation, _("Dive details"));
+ gtk_print_operation_set_custom_tab_label(operation, _("Print type"));
- vbox = gtk_vbox_new(TRUE, 5);
+ vbox = gtk_vbox_new(FALSE, 5);
frame = gtk_frame_new(_("Print type"));
gtk_box_pack_start(GTK_BOX(vbox), frame, FALSE, FALSE, 1);