2001-05-26 Dave Peticolas <dave@krondo.com>

* src/gnome/window-acct-tree.c: fix label alignment

	* src/gnome/window-report.c: fix label alignment


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@4289 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Dave Peticolas
2001-05-26 07:59:53 +00:00
parent 0c875ac857
commit 8f839d7d32
3 changed files with 7 additions and 2 deletions

View File

@@ -1,5 +1,9 @@
2001-05-26 Dave Peticolas <dave@krondo.com>
* src/gnome/window-acct-tree.c: fix label alignment
* src/gnome/window-report.c: fix label alignment
* src/gnome/window-main.c: put child menu after tools menu
2001-05-25 Dave Peticolas <dave@krondo.com>

View File

@@ -125,7 +125,8 @@ gnc_acct_tree_view_labeler(GnomeMDIChild * child, GtkWidget * current,
else {
gtk_label_set_text(GTK_LABEL(current), name);
}
gtk_label_set_justify(GTK_LABEL(current), GTK_JUSTIFY_LEFT);
gtk_misc_set_alignment (GTK_MISC(current), 0.0, 0.5);
if (name) free (name);

View File

@@ -121,7 +121,7 @@ gnc_report_window_view_labeler(GnomeMDIChild * child, GtkWidget * current,
gtk_label_set_text(GTK_LABEL(current), name);
free(name);
}
gtk_label_set_justify(GTK_LABEL(current), GTK_JUSTIFY_LEFT);
gtk_misc_set_alignment (GTK_MISC(current), 0.0, 0.5);
return current;
}