mirror of
https://github.com/minetest/minetest.git
synced 2025-02-17 02:22:26 +01:00
Hypertext: Fix missing space after single letter word (#14551)
Fixes #11727
This commit is contained in:
@ -64,7 +64,7 @@ local inv_style_fs = [[
|
||||
list[current_player;main;.5,7;8,4]
|
||||
]]
|
||||
|
||||
local hypertext_basic = [[
|
||||
local hypertext_basic = [[A hypertext element
|
||||
<bigger>Normal test</bigger>
|
||||
This is a normal text.
|
||||
|
||||
|
@ -293,8 +293,8 @@ void ParsedText::pushChar(wchar_t c)
|
||||
else
|
||||
return;
|
||||
} else {
|
||||
m_empty_paragraph = false;
|
||||
enterElement(ELEMENT_TEXT);
|
||||
m_empty_paragraph = false;
|
||||
}
|
||||
m_element->text += c;
|
||||
}
|
||||
|
Reference in New Issue
Block a user