Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(391)

Unified Diff: chrome/browser/renderer_context_menu/render_view_context_menu.cc

Issue 2724973002: [Re-Merge 57] Remove redundant separator at end of the spelling correction context menu (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/renderer_context_menu/render_view_context_menu.cc
diff --git a/chrome/browser/renderer_context_menu/render_view_context_menu.cc b/chrome/browser/renderer_context_menu/render_view_context_menu.cc
index 92d96ddcd3a83843783193e3426a11caa0c57e4b..a289043a18bf6572a8af9f33ad02b2221f807757 100644
--- a/chrome/browser/renderer_context_menu/render_view_context_menu.cc
+++ b/chrome/browser/renderer_context_menu/render_view_context_menu.cc
@@ -854,6 +854,13 @@ void RenderViewContextMenu::InitMenu() {
ContextMenuContentType::ITEM_GROUP_PASSWORD)) {
AppendPasswordItems();
}
+
+ // Remove any redundant trailing separator.
+ if (menu_model_.GetItemCount() > 0 &&
+ menu_model_.GetTypeAt(menu_model_.GetItemCount() - 1) ==
+ ui::MenuModel::TYPE_SEPARATOR) {
+ menu_model_.RemoveItemAt(menu_model_.GetItemCount() - 1);
+ }
}
Profile* RenderViewContextMenu::GetProfile() {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698