mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 19:07:45 +00:00
Fix crash with math inset with empty string.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20284 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
8d52aa5638
commit
5afe768b67
@ -245,6 +245,9 @@ int GuiPainter::smallCapsText(int x, int y,
|
||||
int GuiPainter::text(int x, int y, docstring const & s,
|
||||
Font const & f)
|
||||
{
|
||||
if (s.empty())
|
||||
return 0;
|
||||
|
||||
/* Caution: The following ucs4 to QString conversions work for symbol fonts
|
||||
only because they are no real conversions but simple casts in reality.
|
||||
When we want to draw a symbol or calculate the metrics we pass the position
|
||||
|
Loading…
Reference in New Issue
Block a user