showPreviousTab method

void showPreviousTab()

Implementation

void showPreviousTab()
{
  if (index == -1) return;
  int i = index - 1;
  if (i.isNegative) i = tabs.length - 1;
  index = i;
}