/**
  * Scroll to a particular draw at the specified index
  *
  * @param index
  */
 void scrollToWheelItem(int index) {
   if (index >= 0 && index < drawerCards.size()) {
     wheeler.scrollToWheelItem(drawerCards.get(index).getButton());
   }
 }