Better adding the break, even if falling through would be Ok,
as LyX requires xcolor when both xcolor and color are requested.
This commit is contained in:
Enrico Forestieri 2016-10-05 01:31:14 +02:00
parent ccc0e03fdc
commit 42a3035709

View File

@ -88,8 +88,10 @@ void InsetMathColor::validate(LaTeXFeatures & features) const
case Color_teal:
case Color_violet:
features.require("xcolor");
break;
default:
features.require("color");
break;
}
}
}