osx release right button event fixed
RIGHT_MOUSE_BUTTON was not removed from the button mask (instead it was added...) fixes #9079
This commit is contained in:
parent
9e5efa4abd
commit
328d0e2b4e
1 changed files with 1 additions and 1 deletions
|
@ -365,7 +365,7 @@ static int button_mask = 0;
|
||||||
|
|
||||||
- (void)rightMouseUp:(NSEvent *)event {
|
- (void)rightMouseUp:(NSEvent *)event {
|
||||||
|
|
||||||
button_mask |= BUTTON_MASK_RIGHT;
|
button_mask &= ~BUTTON_MASK_RIGHT;
|
||||||
|
|
||||||
Ref<InputEventMouseButton> mb;
|
Ref<InputEventMouseButton> mb;
|
||||||
mb.instance();
|
mb.instance();
|
||||||
|
|
Loading…
Reference in a new issue