mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Add missing option commas
This commit is contained in:
parent
c409c9e3d1
commit
6dd333b432
@ -137,10 +137,15 @@ string const LaTeXFont::getPackageOptions(bool ot1, bool sc, bool osf, int scale
|
||||
os << to_ascii(osfscoption_);
|
||||
else
|
||||
os << to_ascii(osfoption_) << ',' << to_ascii(scoption_);
|
||||
} else if (osf && providesOSF())
|
||||
} else if (osf && providesOSF()) {
|
||||
if (!os.str().empty())
|
||||
os << ',';
|
||||
os << to_ascii(osfoption_);
|
||||
else if (sc && providesSC())
|
||||
} else if (sc && providesSC()) {
|
||||
if (!os.str().empty())
|
||||
os << ',';
|
||||
os << to_ascii(scoption_);
|
||||
}
|
||||
if (scale != 100 && !scaleoption_.empty()) {
|
||||
if (!os.str().empty())
|
||||
os << ',';
|
||||
|
Loading…
Reference in New Issue
Block a user