From e4d6884d19752b183f5b0928b682641504943ec5 Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Sun, 14 Mar 2010 15:05:32 +0000 Subject: [PATCH] (trunk gtk) use Rolcol's suggestions on the filterbar --- gtk/filter.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gtk/filter.c b/gtk/filter.c index 5a98f2ccc..512b4585f 100644 --- a/gtk/filter.c +++ b/gtk/filter.c @@ -515,8 +515,10 @@ testCategory( GtkWidget * category_combo, tr_torrent * tor ) } case CAT_FILTER_TYPE_TAG: + /* FIXME */ + return TRUE; + default: - g_message( "FIXME" ); return TRUE; } } @@ -922,7 +924,7 @@ gtr_filter_bar_new( GtkTreeModel * tmodel, GtkTreeModel ** filter_model ) h = gtk_hbox_new( FALSE, GUI_PAD_SMALL ); /* add the category combobox */ - str = _( "Show _Category:" ); + str = _( "_Category:" ); w = category; l = gtk_label_new( NULL ); gtk_label_set_markup_with_mnemonic( GTK_LABEL( l ), str );