diff options
author | Christopher James Lahey <clahey@helixcode.com> | 2000-05-26 00:25:41 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2000-05-26 00:25:41 +0800 |
commit | da3c570d5e91ceef20d9846946a5bebec5b5fa50 (patch) | |
tree | 4474e7015d4945112cc19d1f8236725e33693ec8 /shell | |
parent | 6ba980d9eb23806fddd88be73af1b62d1dd3ead0 (diff) | |
download | gsoc2013-evolution-da3c570d5e91ceef20d9846946a5bebec5b5fa50.tar gsoc2013-evolution-da3c570d5e91ceef20d9846946a5bebec5b5fa50.tar.gz gsoc2013-evolution-da3c570d5e91ceef20d9846946a5bebec5b5fa50.tar.bz2 gsoc2013-evolution-da3c570d5e91ceef20d9846946a5bebec5b5fa50.tar.lz gsoc2013-evolution-da3c570d5e91ceef20d9846946a5bebec5b5fa50.tar.xz gsoc2013-evolution-da3c570d5e91ceef20d9846946a5bebec5b5fa50.tar.zst gsoc2013-evolution-da3c570d5e91ceef20d9846946a5bebec5b5fa50.zip |
From shell/ChangeLog:
2000-05-25 Christopher James Lahey <clahey@helixcode.com>
* e-storage-set-view.c: Make this always look pretty, with Helix
GNOME or without.
From calendar/ChangeLog:
2000-05-25 Christopher James Lahey <clahey@helixcode.com>
* gui/main.c: Make it so that warnings don't crash calendar.
svn path=/trunk/; revision=3201
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ChangeLog | 5 | ||||
-rw-r--r-- | shell/e-storage-set-view.c | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index 9854bb840e..e72c09712a 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,8 @@ +2000-05-25 Christopher James Lahey <clahey@helixcode.com> + + * e-storage-set-view.c: Make this always look pretty, with Helix + GNOME or without. + 2000-05-25 Ettore Perazzoli <ettore@helixcode.com> * e-storage-set-view.c (e_storage_set_view_construct): Set the diff --git a/shell/e-storage-set-view.c b/shell/e-storage-set-view.c index 7c957c2e9a..5b5a11972a 100644 --- a/shell/e-storage-set-view.c +++ b/shell/e-storage-set-view.c @@ -561,7 +561,9 @@ e_storage_set_view_construct (EStorageSetView *storage_set_view, /* Set up GtkCTree/GtkCList parameters. */ gtk_ctree_construct (ctree, 1, 0, NULL); - gtk_ctree_set_line_style (ctree, GTK_CTREE_LINES_DOTTED); + /* This looks ugly with Helix GNOME unless we do this. */ + gtk_ctree_set_line_style (ctree, GTK_CTREE_LINES_NONE); + gtk_ctree_set_expander_style (ctree, GTK_CTREE_EXPANDER_TRIANGLE); gtk_clist_set_selection_mode (GTK_CLIST (ctree), GTK_SELECTION_BROWSE); gtk_clist_set_row_height (GTK_CLIST (ctree), E_SHELL_MINI_ICON_SIZE); |