mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 05:16:21 +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) {
|
||||
InsetQuotesParams::QuoteStyle qs = InsetQuotesParams::QuoteStyle(i);
|
||||
if (qs == InsetQuotesParams::DynamicQuotes)
|
||||
continue;
|
||||
langModule->quoteStyleCO->addItem(toqstr(quoteparams.getGuiLabel(qs)), qs);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user