Made tab's text left-aligned if wider than the tab

This commit is contained in:
rxi 2020-06-03 13:34:10 +01:00
parent 4b167e86c6
commit 18de4552e2
1 changed files with 3 additions and 1 deletions

View File

@ -349,7 +349,9 @@ function Node:draw_tabs()
color = style.text
end
core.push_clip_rect(x, y, w, h)
common.draw_text(style.font, color, text, "center", x, y, w, h)
x, w = x + style.padding.x, w - style.padding.x * 2
local align = style.font:get_width(text) > w and "left" or "center"
common.draw_text(style.font, color, text, align, x, y, w, h)
core.pop_clip_rect()
end