A single click now also focus on explored tiles.

This commit is contained in:
Stian Grenborgen 2023-06-11 14:16:46 +02:00
parent a30935bc96
commit c9379c201b
1 changed files with 5 additions and 1 deletions

View File

@ -1532,7 +1532,11 @@ public class SwingGUI extends GUI {
setFocus(tile);
}
} else { // Otherwise select the tile in terrain mode on multiclick
if (count > 1) changeView(tile);
if (count > 1) {
changeView(tile);
} else {
setFocus(tile);
}
}
}