mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-03 08:28:25 +00:00
Do not attempt to add dynamic quotes to the style combo
This commit is contained in:
parent
e4b84371ac
commit
229f3863f9
@ -1071,6 +1071,8 @@ GuiDocument::GuiDocument(GuiView & lv)
|
|||||||
|
|
||||||
for (int i = 0; i < quoteparams.stylescount(); ++i) {
|
for (int i = 0; i < quoteparams.stylescount(); ++i) {
|
||||||
InsetQuotesParams::QuoteStyle qs = InsetQuotesParams::QuoteStyle(i);
|
InsetQuotesParams::QuoteStyle qs = InsetQuotesParams::QuoteStyle(i);
|
||||||
|
if (qs == InsetQuotesParams::DynamicQuotes)
|
||||||
|
continue;
|
||||||
langModule->quoteStyleCO->addItem(toqstr(quoteparams.getGuiLabel(qs)), qs);
|
langModule->quoteStyleCO->addItem(toqstr(quoteparams.getGuiLabel(qs)), qs);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user