summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--src/yelp-window.c3
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 423596f0..320daf55 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2002-06-27 Mikael Hallendal <micke@codefactory.se>
+ * src/yelp-window.c: added patch from Kang Jeong-Hee to support
+ toolbar style "both_horiz". Fixes #85529
+
* src/yelp-view-toc.c (toc_page_end):
- don't scale the gnome-button.
- mark some strings for translation. Fixes #84020
diff --git a/src/yelp-window.c b/src/yelp-window.c
index 1b522b99..139a7932 100644
--- a/src/yelp-window.c
+++ b/src/yelp-window.c
@@ -55,7 +55,8 @@ typedef enum {
static GConfEnumStringPair toolbar_styles[] = {
{ GTK_TOOLBAR_TEXT, "text" },
{ GTK_TOOLBAR_ICONS, "icons" },
- { GTK_TOOLBAR_BOTH, "both" }
+ { GTK_TOOLBAR_BOTH, "both" },
+ { GTK_TOOLBAR_BOTH_HORIZ, "both_horiz" }
};
static void window_init (YelpWindow *window);