mirror of
https://github.com/tonytins/CozyPixelStudio.git
synced 2025-06-25 21:44:42 -04:00
Toggled autosave on by default, and open last project off by default
This commit is contained in:
parent
5424472c95
commit
62a695366a
4 changed files with 3 additions and 9 deletions
|
@ -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
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue