Simplify option picker announcements to value only
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
// Maintainer-controlled web client version.
|
||||
// Format: YYYY.MM.DD Rn (example: 2026.02.20 R2)
|
||||
window.CHGRID_WEB_VERSION = "2026.02.20 R64";
|
||||
window.CHGRID_WEB_VERSION = "2026.02.20 R65";
|
||||
|
||||
@@ -1751,7 +1751,7 @@ function handleItemPropertyOptionSelectModeInput(code: string): void {
|
||||
code === 'ArrowDown'
|
||||
? (state.itemPropertyOptionIndex + 1) % state.itemPropertyOptionValues.length
|
||||
: (state.itemPropertyOptionIndex - 1 + state.itemPropertyOptionValues.length) % state.itemPropertyOptionValues.length;
|
||||
updateStatus(`${propertyKey}: ${state.itemPropertyOptionValues[state.itemPropertyOptionIndex]}`);
|
||||
updateStatus(state.itemPropertyOptionValues[state.itemPropertyOptionIndex]);
|
||||
audio.sfxUiBlip();
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user