From 062fb577b2451f70e9d417a1354a5d32350ce082 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Tue, 12 Dec 2023 20:09:19 +0100 Subject: [PATCH] fixed a bug with clicking lists in some dialogs --- dialogs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dialogs.cpp b/dialogs.cpp index ca4acb67..ba68b739 100644 --- a/dialogs.cpp +++ b/dialogs.cpp @@ -791,7 +791,7 @@ EX namespace dialog { continue; } else list_left -= size; - if(list_next_key) { key_actions[list_next_key] = key_actions[I.key]; I.key = list_next_key++; } + if(list_next_key) { if(key_actions.count(I.key)) key_actions[list_next_key] = key_actions[I.key]; I.key = list_next_key++; } } top = tothei;