1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2024-07-04 21:28:54 +03:00

User can now increase/decrease by 10 the values of clock, brightness etc.

This commit is contained in:
Ayla 2010-09-19 00:50:16 +02:00
parent 08468776f4
commit ffdc8de2ac

View File

@ -74,6 +74,12 @@ void MenuSettingInt::manageInput(bevent_t *event)
case RIGHT: case RIGHT:
inc(); inc();
break; break;
case ALTLEFT:
setValue(value() - 10);
break;
case ALTRIGHT:
setValue(value() + 10);
break;
default: default:
break; break;
} }