From 7b343cc30f684b158f379409267af0cece7334e9 Mon Sep 17 00:00:00 2001 From: Manolis Papadeas <35376950+OverloadedOrama@users.noreply.github.com> Date: Wed, 7 Jul 2021 18:32:37 +0300 Subject: [PATCH] Fix width and height fields in the create palette dialog that used to remain disabled when the dialog appeared again --- src/Palette/CreatePaletteDialog.gd | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Palette/CreatePaletteDialog.gd b/src/Palette/CreatePaletteDialog.gd index fb94f8ee5..427b5df75 100644 --- a/src/Palette/CreatePaletteDialog.gd +++ b/src/Palette/CreatePaletteDialog.gd @@ -37,6 +37,8 @@ func open(opened_current_palette: Palette) -> void: # Stop all inputs in the rest of the app Global.dialog_open(true) popup_centered() + width_input.editable = true + height_input.editable = true # Resets all dialog values to default