mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Implement some forgotten context menu items for arguments
* Dissolve context menu * Label toggle (for conglomerate-styled arguments) Fixes: #10150
This commit is contained in:
parent
0e1834f2d9
commit
8ed362fda7
@ -158,10 +158,19 @@ Menuset
|
|||||||
#
|
#
|
||||||
# InsetArgument context menu
|
# InsetArgument context menu
|
||||||
#
|
#
|
||||||
|
|
||||||
Menu "context-argument"
|
Menu "context-argument"
|
||||||
|
Item "Dissolve Inset|D" "inset-dissolve"
|
||||||
|
Separator
|
||||||
SwitchArguments
|
SwitchArguments
|
||||||
End
|
End
|
||||||
|
|
||||||
|
Menu "context-argument-conglomerate"
|
||||||
|
Item "Show Label|L" "inset-toggle"
|
||||||
|
Item "Dissolve Inset|D" "inset-dissolve"
|
||||||
|
Separator
|
||||||
|
SwitchArguments
|
||||||
|
End
|
||||||
|
|
||||||
#
|
#
|
||||||
# InsetBox context menu
|
# InsetBox context menu
|
||||||
|
@ -232,6 +232,9 @@ bool InsetArgument::getStatus(Cursor & cur, FuncRequest const & cmd,
|
|||||||
|
|
||||||
string InsetArgument::contextMenuName() const
|
string InsetArgument::contextMenuName() const
|
||||||
{
|
{
|
||||||
|
if (decoration() == InsetLayout::CONGLOMERATE)
|
||||||
|
return "context-argument-conglomerate";
|
||||||
|
else
|
||||||
return "context-argument";
|
return "context-argument";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user