Toggled autosave on by default, and open last project off by default

This commit is contained in:
OverloadedOrama 2020-05-11 16:15:59 +03:00
parent 5424472c95
commit 62a695366a
4 changed files with 3 additions and 9 deletions

View file

@ -43,7 +43,7 @@ var can_draw := false
var has_focus := false
var pressure_sensitivity_mode = Pressure_Sensitivity.NONE
var open_last_project := true
var open_last_project := false
var smooth_zoom := true
var cursor_image = preload("res://assets/graphics/cursor_icons/cursor.png")
var left_cursor_tool_texture : ImageTexture

View file

@ -15,7 +15,7 @@ func _ready() -> void:
autosave_timer.connect("timeout", self, "_on_Autosave_timeout")
add_child(autosave_timer)
set_autosave_interval(default_autosave_interval)
toggle_autosave(false) # Gets started from preferences dialog
toggle_autosave(true) # Gets started from preferences dialog
func open_pxo_file(path : String, untitled_backup : bool = false) -> void: