Simplify option picker announcements to value only
This commit is contained in:
@@ -1,3 +1,3 @@
|
|||||||
// Maintainer-controlled web client version.
|
// Maintainer-controlled web client version.
|
||||||
// Format: YYYY.MM.DD Rn (example: 2026.02.20 R2)
|
// 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'
|
code === 'ArrowDown'
|
||||||
? (state.itemPropertyOptionIndex + 1) % state.itemPropertyOptionValues.length
|
? (state.itemPropertyOptionIndex + 1) % state.itemPropertyOptionValues.length
|
||||||
: (state.itemPropertyOptionIndex - 1 + state.itemPropertyOptionValues.length) % 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();
|
audio.sfxUiBlip();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user