[Mplayerplug-in-cvs] mplayerplug-in/Source plugin-ui.cpp, 1.249, 1.250
Brought to you by:
kdekorte
|
From: Kevin D. <kde...@us...> - 2007-08-14 19:27:16
|
Update of /cvsroot/mplayerplug-in/mplayerplug-in/Source In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv7150/Source Modified Files: plugin-ui.cpp Log Message: key 9 vol down, key 0 volume up Index: plugin-ui.cpp =================================================================== RCS file: /cvsroot/mplayerplug-in/mplayerplug-in/Source/plugin-ui.cpp,v retrieving revision 1.249 retrieving revision 1.250 diff -C2 -d -r1.249 -r1.250 *** plugin-ui.cpp 4 Apr 2007 16:18:05 -0000 1.249 --- plugin-ui.cpp 14 Aug 2007 19:27:13 -0000 1.250 *************** *** 963,966 **** --- 963,974 ---- } + if (event->keyval == GDK_9) { + instance->VolumeDown(); + } + + if (event->keyval == GDK_0) { + instance->VolumeUp(); + } + return FALSE; |