Merge text0

This commit is contained in:
Kartik K. Agaram 2024-09-10 20:27:22 -07:00
commit 94c0ef8772
2 changed files with 0 additions and 2 deletions

View File

@ -150,7 +150,6 @@ function edit.quit(State)
end
function edit.mouse_press(State, x,y, mouse_button)
love.keyboard.setTextInput(true) -- bring up keyboard on touch screen
if State.search_term then return end
State.mouse_down = mouse_button
--? print_and_log(('edit.mouse_press: cursor at %d,%d'):format(State.cursor1.line, State.cursor1.pos))

View File

@ -34,7 +34,6 @@ end
-- called only for real run
function App.initialize(arg)
love.keyboard.setTextInput(true) -- bring up keyboard on touch screen
love.keyboard.setKeyRepeat(true)
Editor_state = nil -- not used outside editor tests