summaryrefslogtreecommitdiffstats
path: root/chrome/browser/gtk/find_bar_gtk.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/gtk/find_bar_gtk.cc')
-rw-r--r--chrome/browser/gtk/find_bar_gtk.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/chrome/browser/gtk/find_bar_gtk.cc b/chrome/browser/gtk/find_bar_gtk.cc
index fb2fa9b..e3ddeb8 100644
--- a/chrome/browser/gtk/find_bar_gtk.cc
+++ b/chrome/browser/gtk/find_bar_gtk.cc
@@ -372,16 +372,14 @@ void FindBarGtk::UpdateUIForFindResult(const FindNotificationDetails& result,
l10n_util::GetStringFUTF8(IDS_FIND_IN_PAGE_COUNT,
IntToString16(result.active_match_ordinal()),
IntToString16(result.number_of_matches())).c_str());
- UpdateMatchLabelAppearance(result.number_of_matches() == 0);
+ UpdateMatchLabelAppearance(result.number_of_matches() == 0 &&
+ result.final_update());
} else {
// If there was no text entered, we don't show anything in the result count
// area.
gtk_label_set_text(GTK_LABEL(match_count_label_), "");
UpdateMatchLabelAppearance(false);
}
-
- // TODO(brettw) enable or disable the find next/previous buttons depending
- // on whether any matches were found.
}
void FindBarGtk::AudibleAlert() {