File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2005,6 +2005,10 @@ msgstr ""
20052005msgid "Company/Studio:"
20062006msgstr ""
20072007
2008+ #. Found in the project properties. It is a header of the information about the author of the project who last saved the project.
2009+ msgid "Last saved by"
2010+ msgstr ""
2011+
20082012#. Found in the Preferences, under Extensions.
20092013msgid "Add Extension"
20102014msgstr ""
Original file line number Diff line number Diff line change @@ -853,6 +853,7 @@ func _ready() -> void:
853853 set (pref , value )
854854 if OS .is_sandboxed () or OS .has_feature ("mobile" ):
855855 Global .use_native_file_dialogs = true
856+ current_project .initialize_author_data ()
856857 await get_tree ().process_frame
857858 project_switched .emit ()
858859 canvas .color_index .enabled = show_pixel_indices # Initialize color index preview
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ const REMOVE_TEXTURE := preload("res://assets/graphics/misc/close.png")
99var _selected_tileset : TileSetCustom
1010var _current_tileset_name_filter : String
1111
12+ @onready var list := $ HSplitContainer/List as ItemList
1213@onready var general_container := % GeneralContainer as VBoxContainer
1314@onready var size_value_label := % SizeValueLabel as Label
1415@onready var color_mode_value_label := % ColorModeValueLabel as Label
@@ -36,6 +37,7 @@ var export_tileset_confirmation_dialog: ConfirmationDialog = $ExportTilesetConfi
3637
3738
3839func _ready () -> void :
40+ list .select (0 )
3941 export_tileset_file_dialog .use_native_dialog = Global .use_native_file_dialogs
4042
4143
You can’t perform that action at this time.
0 commit comments