Quote:
Originally Posted by skylar_battles
What are gfx scripts?
|
gfx is REAPER's built-in functions for ReaScript GUIs. MK Slicer and 80icio's mod are made with it.
REAPER's right click emulation works by sending a short right click when Ctrl + left mouse button are pressed (+ disables Ctrl). For a brief time, both the left and right buttons are "down". It seems that MK Slicer prioritizes the left click and ignores the right click. The script would need to be changed to prioritize the right click instead.
EDIT: Quick fix for MK Slicer 3.03:
Lines 7451 and 7480:
Code:
if mouseR_Up_status == 1 --[[and not Wave:mouseDown()--]] then
(Not perfect as it still moves the edit cursor from the left click.)