From 682c6e31834a863c4c78b6dfd5f830c72a6b665d Mon Sep 17 00:00:00 2001 From: Manuel Nickschas Date: Thu, 3 Apr 2008 14:34:55 +0000 Subject: [PATCH] Yet another try to fix that font issue on some machines. Added another no-op that seems to avoid triggering the bug... I can't debug this properly, since everything I try makes the bug go away, thus I can't grab it... :( Please let me know if this works for you. --- src/uisupport/uistyle.cpp | 2 +- version.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/uisupport/uistyle.cpp b/src/uisupport/uistyle.cpp index e04a0bd0..79f23c67 100644 --- a/src/uisupport/uistyle.cpp +++ b/src/uisupport/uistyle.cpp @@ -132,7 +132,7 @@ QString UiStyle::formatCode(FormatType ftype) const { UiStyle::StyledText UiStyle::styleString(const QString &_s) { QString s = _s; // we can't use call-by-value since this seems to maybe screw up Qt's implicit sharing somehow // at least invalid formats are created if we do that - + if(s.startsWith(" ")) {}; // and yet some other stupid no-op that seems to fix the font issue on some machines... -_- StyledText result; QList fmtList; fmtList.append(None); diff --git a/version.inc b/version.inc index 3a87606d..78c964ac 100644 --- a/version.inc +++ b/version.inc @@ -5,7 +5,7 @@ quasselVersion = "0.2.0-alpha5-pre"; quasselDate = "2008-04-03"; - quasselBuild = 691; + quasselBuild = 695; //! Minimum client build number the core needs clientBuildNeeded = 642; -- 2.20.1