explicitly state stance on autosave

This commit is contained in:
Kartik K. Agaram 2024-03-17 10:49:45 -07:00
parent ff27ad6ad4
commit fff4dc198c
2 changed files with 4 additions and 0 deletions

View File

@ -12,5 +12,6 @@ on.update = function(dt)
elseif Current_pane.output_editor_state.scrollbar_drag then
adjust_scrollbar(Current_pane.output_editor_state, App.mouse_y())
end
-- never call edit.update; autosave is flaky on mobile devices
if car.update then call_protected(car.update, dt) end
end

3
0176-on.quit Normal file
View File

@ -0,0 +1,3 @@
on.quit = function()
-- never call edit.quit; autosave is flaky on mobile devices
end