Skip to content
Snippets Groups Projects
Commit fafa1860 authored by dg's avatar dg
Browse files

fix word wrapping on some dialogs

git-svn-id: http://svn.net-core.org/repos/t-engine4@408 51575b47-30f0-44d4-a5cc-537603b46e54
parent 3c752800
No related branches found
No related tags found
No related merge requests found
......@@ -88,14 +88,13 @@ function string.splitLine(str, max_width, font)
local w, h = font:size(v)
-- Ignore the size of color markers
local _, _, color = v:find("(#%x%x%x%x%x%x#)")
if color then
local color_w = font:size(color)
local _, _, color1 = v:find("(#%x%x%x%x%x%x#)")
local _, _, color2 = v:find("(#[A-Z_]+#)")
if color1 then
local color_w = font:size(color1)
w = w - color_w
end
local _, _, color = v:find("(#[A-Z_]+#)")
if color then
local color_w = font:size(color)
elseif color2 then
local color_w = font:size(color2)
w = w - color_w
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment