summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2012-06-27 02:42:22 -0400
committerCosimo Cecchi <cosimoc@gnome.org>2012-06-27 02:43:21 -0400
commit222d31a98b602ec9c807f798f43df0ab4bdf5a6e (patch)
tree426d10a4522dc61b405b5d049347154aeab6526c
parent5a761a3725137db851efef190c76e68ce25ff615 (diff)
downloadnautilus-222d31a98b602ec9c807f798f43df0ab4bdf5a6e.tar.gz
query-editor: don't set special style classes on query editor labels
We make bold by default using Pango and we don't need any other special theming for these.
-rw-r--r--src/nautilus-query-editor.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/nautilus-query-editor.c b/src/nautilus-query-editor.c
index ecccb8bd2..243586f31 100644
--- a/src/nautilus-query-editor.c
+++ b/src/nautilus-query-editor.c
@@ -991,9 +991,6 @@ nautilus_query_editor_init (NautilusQueryEditor *editor)
gtk_label_set_markup (GTK_LABEL (label), label_markup);
g_free (label_markup);
- gtk_style_context_add_class (gtk_widget_get_style_context (label),
- "nautilus-cluebar-label");
-
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
gtk_widget_show (label);
@@ -1069,9 +1066,6 @@ setup_internal_entry (NautilusQueryEditor *editor)
g_free (label_markup);
gtk_widget_show (label);
- gtk_style_context_add_class (gtk_widget_get_style_context (label),
- "nautilus-cluebar-label");
-
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
editor->details->entry = gtk_entry_new ();
@@ -1103,9 +1097,6 @@ setup_external_entry (NautilusQueryEditor *editor, GtkWidget *entry)
gtk_label_set_markup (GTK_LABEL (label), label_markup);
gtk_widget_show (label);
- gtk_style_context_add_class (gtk_widget_get_style_context (label),
- "nautilus-cluebar-label");
-
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
editor->details->entry = entry;