diff options
author | Chris Toshok <toshok@ximian.com> | 2002-08-30 05:41:07 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2002-08-30 05:41:07 +0800 |
commit | ca0432fb04f8fef397ab5965877d7df7e119ffcf (patch) | |
tree | b2b5b56a501ce5428d424c1cd5284828b8497402 /widgets/misc | |
parent | 61a36eb138cee5176aebc5658272429170594be4 (diff) | |
download | gsoc2013-evolution-ca0432fb04f8fef397ab5965877d7df7e119ffcf.tar.gz gsoc2013-evolution-ca0432fb04f8fef397ab5965877d7df7e119ffcf.tar.zst gsoc2013-evolution-ca0432fb04f8fef397ab5965877d7df7e119ffcf.zip |
need to make the find now button sensitive when you select something from
2002-08-29 Chris Toshok <toshok@ximian.com>
* e-search-bar.c (subitem_activated_cb): need to make the find now
button sensitive when you select something from a submenu.
svn path=/trunk/; revision=17931
Diffstat (limited to 'widgets/misc')
-rw-r--r-- | widgets/misc/ChangeLog | 5 | ||||
-rw-r--r-- | widgets/misc/e-search-bar.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/widgets/misc/ChangeLog b/widgets/misc/ChangeLog index d2bb3a268a..7d0938cf54 100644 --- a/widgets/misc/ChangeLog +++ b/widgets/misc/ChangeLog @@ -1,3 +1,8 @@ +2002-08-29 Chris Toshok <toshok@ximian.com> + + * e-search-bar.c (subitem_activated_cb): need to make the find now + button sensitive when you select something from a submenu. + 2002-08-29 Peter Williams <peterw@ximian.com> * e-filter-bar.c (option_changed): If the item is ADVANCED_ID, check diff --git a/widgets/misc/e-search-bar.c b/widgets/misc/e-search-bar.c index ef7c3cdd8c..12659d87da 100644 --- a/widgets/misc/e-search-bar.c +++ b/widgets/misc/e-search-bar.c @@ -265,6 +265,8 @@ subitem_activated_cb (GtkWidget *widget, ESearchBar *esb) esb->item_id = id; esb->subitem_id = subid; + + set_find_now_sensitive (esb, TRUE); } static char * |