diff --git a/src/gui/RideItem.cpp b/src/gui/RideItem.cpp index 444569f17..d195572e5 100644 --- a/src/gui/RideItem.cpp +++ b/src/gui/RideItem.cpp @@ -157,7 +157,7 @@ static const char *metricsXml = " \n" " \n" - " \n" " \n" @@ -407,8 +407,11 @@ later: summary += "
  • " + i.next(); summary += ""; } - if (noteString.length() > 0) - summary += "

    " + noteString; + if (noteString.length() > 0) { + // The extra
    works around a bug in QT 4.3.1, + // which will otherwise put the noteString above the
    . + summary += "

    " + noteString; + } summary += "
    "; }