From 6262940ce5aee64b03dc869156706e90ae446124 Mon Sep 17 00:00:00 2001 From: don-tnowe <67479453+don-tnowe@users.noreply.github.com> Date: Tue, 29 Aug 2023 15:44:31 +0300 Subject: [PATCH] Fix incorrect sign of small numbers dock --- .../typed_editors/dock_number.gd | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/addons/resources_spreadsheet_view/typed_editors/dock_number.gd b/addons/resources_spreadsheet_view/typed_editors/dock_number.gd index 7feebf0..8f1872e 100644 --- a/addons/resources_spreadsheet_view/typed_editors/dock_number.gd +++ b/addons/resources_spreadsheet_view/typed_editors/dock_number.gd @@ -33,12 +33,12 @@ func _ready(): _button_grid.get_child(10).pressed.connect(_increment_values_custom.bind(false, false)) _button_grid.get_child(11).pressed.connect(_increment_values_custom.bind(false, true)) - _button_grid_small.get_child(1).pressed.connect(_increment_values_custom.bind(true, true)) - _button_grid_small.get_child(2).pressed.connect(_increment_values_custom.bind(true, false)) + _button_grid_small.get_child(1).pressed.connect(_increment_values_custom.bind(false, true)) + _button_grid_small.get_child(2).pressed.connect(_increment_values_custom.bind(false, false)) _button_grid_small.get_child(3).pressed.connect(_increment_values.bind(-1)) _button_grid_small.get_child(4).pressed.connect(_increment_values.bind(+1)) - _button_grid_small.get_child(5).pressed.connect(_increment_values_custom.bind(false, false)) - _button_grid_small.get_child(6).pressed.connect(_increment_values_custom.bind(false, true)) + _button_grid_small.get_child(5).pressed.connect(_increment_values_custom.bind(true, false)) + _button_grid_small.get_child(6).pressed.connect(_increment_values_custom.bind(true, true)) _resize_height_small = get_child(1).get_minimum_size().y