Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Full screen on mouse wheel #1337

Closed
JonDous opened this issue May 14, 2022 · 1 comment
Closed

Full screen on mouse wheel #1337

JonDous opened this issue May 14, 2022 · 1 comment

Comments

@JonDous
Copy link

JonDous commented May 14, 2022

I'm surprised but I didn't file to set mouse wheel press to enter/exit full screen mode.

@d2phap
Copy link
Owner

d2phap commented Sep 6, 2022

You can do this in v9.0 beta 2 with this setting:

// in igconfig.json

"MouseClickActions": {
  "WheelClick": {
    "ToggleOn": {
      "Executable": "MnuFullScreen",
      "Argument": ""
    },
    "ToggleOff": {
      "Executable": "MnuFullScreen",
      "Argument": ""
    }
  }
},

The list of events for MouseClickActions:

public enum MouseClickEvent
{
LeftClick = 1,
LeftDoubleClick = 2,
RightClick = 3,
RightDoubleClick = 4,
XButton1Click = 5,
XButton1DoubleClick = 6,
XButton2Click = 7,
XButton2DoubleClick = 8,
WheelClick = 9,
WheelDoubleClick = 10,
}

@d2phap d2phap closed this as completed Sep 6, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants