[gtkhtml] Bug 644166 - Add style class to primary toolbars
- From: Matthew Barnes <mbarnes src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtkhtml] Bug 644166 - Add style class to primary toolbars
- Date: Tue, 8 Mar 2011 12:41:27 +0000 (UTC)
commit 7311ef4ebd81e4a66723c3afe44639b3fa4cd9da
Author: Matthew Barnes <mbarnes redhat com>
Date: Mon Mar 7 22:15:18 2011 -0500
Bug 644166 - Add style class to primary toolbars
Requires GTK+ >= 3.0.2 since GTK_STYLE_CLASS_PRIMARY_TOOLBAR is a very
recent addition.
components/editor/gtkhtml-editor-private.c | 4 ++++
configure.ac | 2 +-
2 files changed, 5 insertions(+), 1 deletions(-)
---
diff --git a/components/editor/gtkhtml-editor-private.c b/components/editor/gtkhtml-editor-private.c
index 1a27682..7126c39 100644
--- a/components/editor/gtkhtml-editor-private.c
+++ b/components/editor/gtkhtml-editor-private.c
@@ -235,6 +235,10 @@ gtkhtml_editor_private_constructed (GtkhtmlEditor *editor)
priv->main_toolbar = g_object_ref (widget);
gtk_widget_show (widget);
+ gtk_style_context_add_class (
+ gtk_widget_get_style_context (widget),
+ GTK_STYLE_CLASS_PRIMARY_TOOLBAR);
+
widget = gtkhtml_editor_get_managed_widget (editor, "/edit-toolbar");
gtk_toolbar_set_style (GTK_TOOLBAR (widget), GTK_TOOLBAR_BOTH_HORIZ);
gtk_box_pack_start (GTK_BOX (editor->vbox), widget, FALSE, FALSE, 0);
diff --git a/configure.ac b/configure.ac
index 61aba3e..ed52df8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,7 +9,7 @@ AC_CONFIG_SRCDIR(README)
PACKAGE=gtkhtml
dnl Required Package Versions
-m4_define([gtk_minimum_version], [3.0])
+m4_define([gtk_minimum_version], [3.0.2])
m4_define([enchant_minimum_version], [1.1.7])
m4_define([gnome_icon_theme_minimum_version], [2.22.0])
m4_define([cairo_minimum_version], [1.10.0])
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]