selectPreviousTool method

void selectPreviousTool()

Navigate tool selection up.

Implementation

void selectPreviousTool() {
  if (selectedToolIndex.value > 0) {
    selectedToolIndex.value--;
  }
}