1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2024-07-02 18:32:20 +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:
inc();
break;
case ALTLEFT:
setValue(value() - 10);
break;
case ALTRIGHT:
setValue(value() + 10);
break;
default:
break;
}