aboutsummaryrefslogtreecommitdiffstats
path: root/src/ephy-notebook.c
diff options
context:
space:
mode:
authorDiego Escalante Urrelo <descalante@igalia.com>2011-01-08 22:26:55 +0800
committerDiego Escalante Urrelo <descalante@igalia.com>2011-01-11 09:01:02 +0800
commitb2bbeb102c9a2fe3817d01959681a82b6b11d177 (patch)
tree11fae6294f94eadf8d12b1030dc0e9acb650fcbb /src/ephy-notebook.c
parent0205afea985c753c6400eba9634f679863d085c0 (diff)
downloadgsoc2013-epiphany-b2bbeb102c9a2fe3817d01959681a82b6b11d177.tar
gsoc2013-epiphany-b2bbeb102c9a2fe3817d01959681a82b6b11d177.tar.gz
gsoc2013-epiphany-b2bbeb102c9a2fe3817d01959681a82b6b11d177.tar.bz2
gsoc2013-epiphany-b2bbeb102c9a2fe3817d01959681a82b6b11d177.tar.lz
gsoc2013-epiphany-b2bbeb102c9a2fe3817d01959681a82b6b11d177.tar.xz
gsoc2013-epiphany-b2bbeb102c9a2fe3817d01959681a82b6b11d177.tar.zst
gsoc2013-epiphany-b2bbeb102c9a2fe3817d01959681a82b6b11d177.zip
Use the new GTK_STATE_FLAG_NORMAL flag
Until 2.99.0 GtkStyleContext didn't have a "normal" flag, the closest thing was GTK_STATE_FLAG_ACTIVE, but it is not necessarily correct. Bug #636501
Diffstat (limited to 'src/ephy-notebook.c')
-rw-r--r--src/ephy-notebook.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ephy-notebook.c b/src/ephy-notebook.c
index e06bae075..81dc7ca12 100644
--- a/src/ephy-notebook.c
+++ b/src/ephy-notebook.c
@@ -562,7 +562,7 @@ tab_label_style_set_cb (GtkWidget *hbox,
context = gtk_widget_get_pango_context (hbox);
style = gtk_widget_get_style_context (hbox);
metrics = pango_context_get_metrics (context,
- gtk_style_context_get_font (style, GTK_STATE_FLAG_ACTIVE),
+ gtk_style_context_get_font (style, GTK_STATE_FLAG_NORMAL),
pango_context_get_language (context));
char_width = pango_font_metrics_get_approximate_digit_width (metrics);
pango_font_metrics_unref (metrics);