diff options
Diffstat (limited to 'views/controls/menu/simple_menu_model.cc')
-rw-r--r-- | views/controls/menu/simple_menu_model.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/views/controls/menu/simple_menu_model.cc b/views/controls/menu/simple_menu_model.cc index 67a9e2d..de86bce 100644 --- a/views/controls/menu/simple_menu_model.cc +++ b/views/controls/menu/simple_menu_model.cc @@ -103,9 +103,7 @@ bool SimpleMenuModel::GetAcceleratorAt(int index, bool SimpleMenuModel::IsItemCheckedAt(int index) const { if (!delegate_) return false; - int item_index = FlipIndex(index); - return (items_[item_index].type == TYPE_CHECK) ? - delegate_->IsCommandIdChecked(GetCommandIdAt(index)) : false; + return delegate_->IsCommandIdChecked(GetCommandIdAt(index)); } int SimpleMenuModel::GetGroupIdAt(int index) const { |