Explanation from Udi:

  There is a missing validation for the requirement of xcolor in
  InsetBox::validate, the case we use Boxed with non-default color.

Patch from Udi.
This commit is contained in:
Scott Kostyshak 2023-09-30 20:21:22 -04:00
parent 10403b7959
commit a6882a1db0

View File

@ -810,7 +810,7 @@ void InsetBox::validate(LaTeXFeatures & features) const
break;
case Boxed:
features.require("calc");
if (getFrameColor() != "black" || getBackgroundColor() != "white")
if (getFrameColor() != "default" || getBackgroundColor() != "white")
features.require("xcolor");
break;
case ovalbox: