diff --git a/docs/changelog.txt b/docs/changelog.txt index af2e6b3fa..79ba705b1 100644 --- a/docs/changelog.txt +++ b/docs/changelog.txt @@ -36,6 +36,7 @@ changelog.txt uses a syntax similar to RST, with a few special sequences: ## New Plugins ## Fixes +- `automaterial`: fix the cursor jumping up a z level when clicking quickly after box select - `gui/create-item`: prevent materials list filter from intercepting sublist hotkeys - `tiletypes`: no longer resets dig priority to the default when updating other properties of a tile diff --git a/plugins/automaterial.cpp b/plugins/automaterial.cpp index b1b83d09e..a99d66cfc 100644 --- a/plugins/automaterial.cpp +++ b/plugins/automaterial.cpp @@ -94,7 +94,7 @@ static bool show_box_selection = true; static bool hollow_selection = false; static deque box_select_materials; -#define SELECTION_IGNORE_TICKS 10 +#define SELECTION_IGNORE_TICKS 1 static int ignore_selection = SELECTION_IGNORE_TICKS; static map last_used_material;