Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions material_maker/windows/material_editor/export_editor.gd
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ func _on_Load_Export_pressed():
dialog.min_size = Vector2(500, 500)
dialog.access = FileDialog.ACCESS_FILESYSTEM
dialog.file_mode = FileDialog.FILE_MODE_OPEN_FILES
dialog.window_title = "Load export target from file"
dialog.title = "Load export target from file"
dialog.add_filter("*.mme;Material Maker Export target")
var files = await dialog.select_files()
if files.size() > 0:
Expand All @@ -141,7 +141,7 @@ func _on_Save_Export_pressed():
dialog.min_size = Vector2(500, 500)
dialog.access = FileDialog.ACCESS_FILESYSTEM
dialog.file_mode = FileDialog.FILE_MODE_SAVE_FILE
dialog.window_title = "Save export target to file"
dialog.title = "Save export target to file"
dialog.add_filter("*.mme;Material Maker Export target")
var files = await dialog.select_files()
if files.size() > 0:
Expand Down