1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-01-18 09:09:47 +00:00

Remove unused variables

This commit is contained in:
Emmanouil Papadeas 2024-07-21 21:17:18 +03:00
parent b8af094529
commit 774786ab44
2 changed files with 0 additions and 2 deletions

View file

@ -302,7 +302,6 @@ func export_processed_images(
ignore_overwrites: bool, export_dialog: ConfirmationDialog, project := Global.current_project
) -> bool:
# Stop export if directory path or file name are not valid
var dir := DirAccess.open(project.export_directory_path)
var dir_exists := DirAccess.dir_exists_absolute(project.export_directory_path)
var is_valid_filename := project.file_name.is_valid_filename()
if not dir_exists:

View file

@ -837,7 +837,6 @@ func help_menu_id_pressed(id: int) -> void:
Global.HelpMenu.ISSUE_TRACKER:
OS.shell_open(ISSUES_URL)
Global.HelpMenu.OPEN_EDITOR_DATA_FOLDER:
var dir := DirAccess.open("user://")
OS.shell_open(ProjectSettings.globalize_path("user://"))
Global.HelpMenu.CHANGELOG:
OS.shell_open(CHANGELOG_URL)