From e673888529d14a14df59a7954a3cc1eef9945f0e Mon Sep 17 00:00:00 2001 From: OverloadedOrama <35376950+OverloadedOrama@users.noreply.github.com> Date: Thu, 27 Aug 2020 01:37:14 +0300 Subject: [PATCH] Import pal palette files by dropping them into the app --- src/Autoload/OpenSave.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Autoload/OpenSave.gd b/src/Autoload/OpenSave.gd index 33c6b57..c8fbcde 100644 --- a/src/Autoload/OpenSave.gd +++ b/src/Autoload/OpenSave.gd @@ -23,7 +23,7 @@ func handle_loading_files(files : PoolStringArray) -> void: var file_ext : String = file.get_extension().to_lower() if file_ext == "pxo": # Pixelorama project file open_pxo_file(file) - elif file_ext == "json" or file_ext == "gpl": # Palettes + elif file_ext == "json" or file_ext == "gpl" or file_ext == "pal": # Palettes Global.palette_container.on_palette_import_file_selected(file) else: # Image files var image := Image.new()