From: Juergen Spitzmueller Date: Wed, 7 Aug 2024 12:45:26 +0000 (+0200) Subject: enhance debug message (see #13087) X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=90a876a04984e5fd8fe6f234b29d2c4a0bc46c2a;p=lyx.git enhance debug message (see #13087) --- diff --git a/src/frontends/qt/GuiFontLoader.cpp b/src/frontends/qt/GuiFontLoader.cpp index 453d1260ea..cf6c205d2d 100644 --- a/src/frontends/qt/GuiFontLoader.cpp +++ b/src/frontends/qt/GuiFontLoader.cpp @@ -155,7 +155,8 @@ static bool isChosenFont(QFont & font, QString const & family, // positions. QFontInfo fi(font); - LYXERR_NOPOS(Debug::FONT, "got: " << fi.family()); + LYXERR_NOPOS(Debug::FONT, "got: " << fi.family() + << " (style: " << fi.styleName() << ")"); if (fi.family().contains(family) && (style.isEmpty() || fi.styleName().contains(style))) {