selectPreviousTool method
void
selectPreviousTool()
Navigate tool selection up.
Implementation
void selectPreviousTool() {
if (selectedToolIndex.value > 0) {
selectedToolIndex.value--;
}
}
Navigate tool selection up.
void selectPreviousTool() {
if (selectedToolIndex.value > 0) {
selectedToolIndex.value--;
}
}