()
| 1759 | } |
| 1760 | |
| 1761 | public void toggleVibra() { |
| 1762 | // swap profiles |
| 1763 | int profile = cf.profile; |
| 1764 | cf.profile = (profile == AlertProfile.VIBRA) ? cf.lastProfile : AlertProfile.VIBRA; |
| 1765 | cf.lastProfile = profile; |
| 1766 | |
| 1767 | updateMainBar(); |
| 1768 | redraw(); // Need? |
| 1769 | } |
| 1770 | |
| 1771 | public void changeMotoBacklightState() { |
| 1772 | if (!cf.ghostMotor) { |
no test coverage detected