mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
Fix problem caused by re-ordering of menu at 5f6332bf4
.
This broke the activation and de-activation of plural, capitalize, etc. I guess that tells us how much those get used....
This commit is contained in:
parent
c9dd349bee
commit
9b3f9cc687
@ -147,9 +147,11 @@ void GuiRef::enableBoxes()
|
||||
{
|
||||
bool const isFormatted =
|
||||
(InsetRef::getName(typeCO->currentIndex()) == "formatted");
|
||||
LYXERR0(InsetRef::getName(typeCO->currentIndex()));
|
||||
bool const isLabelOnly =
|
||||
(InsetRef::getName(typeCO->currentIndex()) == "labelonly");
|
||||
bool const usingRefStyle = buffer().params().use_refstyle;
|
||||
LYXERR0(usingRefStyle);
|
||||
pluralCB->setEnabled(isFormatted && usingRefStyle);
|
||||
capsCB->setEnabled(isFormatted && usingRefStyle);
|
||||
noprefixCB->setEnabled(isLabelOnly);
|
||||
|
@ -478,8 +478,8 @@ InsetRef::type_info const InsetRef::types[] = {
|
||||
{ "pageref", N_("Page Number"), N_("Page: ")},
|
||||
{ "vpageref", N_("Textual Page Number"), N_("TextPage: ")},
|
||||
{ "vref", N_("Standard+Textual Page"), N_("Ref+Text: ")},
|
||||
{ "formatted", N_("Formatted"), N_("Format: ")},
|
||||
{ "nameref", N_("Reference to Name"), N_("NameRef: ")},
|
||||
{ "formatted", N_("Formatted"), N_("Format: ")},
|
||||
{ "labelonly", N_("Label Only"), N_("Label: ")},
|
||||
{ "", "", "" }
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user