Kaydet (Commit) d6d82d3f authored tarafından Caolán McNamara's avatar Caolán McNamara

Resolves: tdf#125369 recover newline support of tdf#101779

Change-Id: Ia46fc89f056c714e9a06c48e980277025fb16a61
Reviewed-on: https://gerrit.libreoffice.org/72602
Tested-by: Jenkins
Reviewed-by: 's avatarCaolán McNamara <caolanm@redhat.com>
Tested-by: 's avatarCaolán McNamara <caolanm@redhat.com>
üst 9345ef1c
......@@ -696,7 +696,9 @@ private:
aPt = OutputToScreenPixel(aHelpArea.BottomRight());
aHelpArea.SetRight(aPt.X());
aHelpArea.SetBottom(aPt.Y());
Help::ShowQuickHelp(this, aHelpArea, sHelpTip);
// tdf#125369 recover newline support of tdf#101779
QuickHelpFlags eHelpWinStyle = sHelpTip.indexOf('\n') != -1 ? QuickHelpFlags::TipStyleBalloon : QuickHelpFlags::NONE;
Help::ShowQuickHelp(this, aHelpArea, sHelpTip, eHelpWinStyle);
}
}
virtual FactoryFunction GetUITestFactory() const override
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment