Can somebody confirm a strange behaviour I found in a Window plugin I am trying to write:
While an ACTION_VOLUME_UP is being dispatched to my OnAction-Method, an ACTION_VOLUME_DOWN never reaches that method. This strange behaviour is independent of the input method (keyboard, remote). Volume control in MP does work, only the action never reaches my plugin.
Thanks,
Ralph Reckert
While an ACTION_VOLUME_UP is being dispatched to my OnAction-Method, an ACTION_VOLUME_DOWN never reaches that method. This strange behaviour is independent of the input method (keyboard, remote). Volume control in MP does work, only the action never reaches my plugin.
Thanks,
Ralph Reckert
Code:
public class MyPlugin : GUIWindow, ISetupForm {
....
public override void OnAction(Action action) {
switch (action.wID) {
case Action.ActionType.ACTION_VOLUME_DOWN:
Log.Debug("MyPlugin.OnAction({0}) ...", action.wID);
/* never reached */
break;
case Action.ActionType.ACTION_VOLUME_UP:
Log.Debug("MyPlugin.OnAction({0}) ...", action.wID);
/* works fine */
break;