Merge driver.love

This commit is contained in:
Kartik K. Agaram 2024-09-10 21:22:54 -07:00
commit 2079b5a2b1
2 changed files with 0 additions and 2 deletions

View File

@ -147,7 +147,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

@ -53,7 +53,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