diff --git a/krita/ui/widgets/kis_lod_availability_widget.cpp b/krita/ui/widgets/kis_lod_availability_widget.cpp --- a/krita/ui/widgets/kis_lod_availability_widget.cpp +++ b/krita/ui/widgets/kis_lod_availability_widget.cpp @@ -76,16 +76,16 @@ { QString limitationsText; Q_FOREACH (const KoID &id, l.limitations) { - limitationsText.append(""); + limitationsText.append("
  • "); limitationsText.append(id.name()); - limitationsText.append(""); + limitationsText.append("
  • "); } QString blockersText; Q_FOREACH (const KoID &id, l.blockers) { - blockersText.append(""); + blockersText.append("
  • "); blockersText.append(id.name()); - blockersText.append(""); + blockersText.append("
  • "); } bool isBlocked = !l.blockers.isEmpty(); @@ -96,18 +96,18 @@ if (isBlocked) { toolTip.append(i18nc("@info:tooltip", - "Instant Preview Mode is " + "

    Instant Preview Mode is " "disabled by the following options:" - "%1", blockersText)); + "

      %1

    ", blockersText)); } else if (isLimited) { toolTip.append(i18nc("@info:tooltip", - "Instant Preview may look different " + "

    Instant Preview may look different " "from the final result. In case of troubles " "try disabling the following options:" - "%1", limitationsText)); + "

      %1

    ", limitationsText)); } else { - toolTip = i18nc("@info:tooltip", "Instant Preview Mode is available"); + toolTip = i18nc("@info:tooltip", "

    Instant Preview Mode is available

    "); } {