exclude left margin from my word-split heuristic

Gratifying how few tests need changing. Recent commits seem on the right
track.
This commit is contained in:
Kartik K. Agaram 2022-07-20 07:15:46 -07:00
parent a472d218f2
commit 9f4b41d829
2 changed files with 3 additions and 3 deletions

View File

@ -98,7 +98,7 @@ function Text.compute_fragments(State, line_index)
--? print('x: '..tostring(x)..'; '..tostring(State.right-x)..'px to go')
while x + frag_width > State.right do
--? print(('checking whether to split fragment ^%s$ of width %d when rendering from %d'):format(frag, frag_width, x))
if x < 0.8*State.right then
if (x-State.left) < 0.8 * (State.right-State.left) then
--? print('splitting')
-- long word; chop it at some letter
-- We're not going to reimplement TeX here.

View File

@ -432,9 +432,9 @@ function test_draw_wrapping_text_containing_non_ascii()
local y = Editor_state.top
App.screen.check(y, 'mad', 'F - test_draw_wrapping_text_containing_non_ascii/screen:1')
y = y + Editor_state.line_height
App.screen.check(y, 'am ', 'F - test_draw_wrapping_text_containing_non_ascii/screen:2')
App.screen.check(y, 'am I', 'F - test_draw_wrapping_text_containing_non_ascii/screen:2')
y = y + Editor_state.line_height
App.screen.check(y, 'Im ', 'F - test_draw_wrapping_text_containing_non_ascii/screen:3')
App.screen.check(y, 'm a', 'F - test_draw_wrapping_text_containing_non_ascii/screen:3')
end
function test_click_on_wrapping_line()