Fix right and middle mouse click macro actions which were exchanged. Fixes #794.

This commit is contained in:
László Monda
2018-09-27 00:35:13 +02:00
parent 425f861451
commit 8afdeac306
4 changed files with 21 additions and 12 deletions

View File

@@ -3,9 +3,9 @@ import { UhkBuffer } from '../../uhk-buffer';
import { MacroAction, MacroActionId, MacroMouseSubAction, macroActionType } from './macro-action';
export enum MouseButtons {
Left = 1 << 0,
Middle = 1 << 1,
Right = 1 << 2
Left = 0,
Right = 1,
Middle = 2
}
export interface JsObjectMouseButtonMacroAction {