mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-13 09:15:50 +00:00
branch: Fix disabling of submenus that are empty.
see: http://www.lyx.org/trac/changeset/28027 git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_6_X@29026 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
4b76c8267f
commit
4dd1fed397
@ -339,8 +339,8 @@ void MenuDefinition::addWithStatusCheck(MenuItem const & i)
|
||||
}
|
||||
|
||||
case MenuItem::Submenu: {
|
||||
if (i.hasSubmenu()) {
|
||||
bool enabled = false;
|
||||
if (i.hasSubmenu()) {
|
||||
for (const_iterator cit = i.submenu().begin();
|
||||
cit != i.submenu().end(); ++cit) {
|
||||
if ((cit->kind() == MenuItem::Command
|
||||
@ -350,13 +350,11 @@ void MenuDefinition::addWithStatusCheck(MenuItem const & i)
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (enabled || !i.optional()) {
|
||||
items_.push_back(i);
|
||||
items_.back().status().setEnabled(enabled);
|
||||
}
|
||||
}
|
||||
else
|
||||
items_.push_back(i);
|
||||
break;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user