Skip to content
This repository has been archived by the owner on Sep 6, 2019. It is now read-only.

Commit

Permalink
[IPLUG/AAX] fix for triple-click controls on mac
Browse files Browse the repository at this point in the history
  • Loading branch information
olilarkin committed Oct 6, 2012
1 parent 5eacae0 commit e83d311
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WDL/IPlug/IGraphics.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
if (pMod->C) aax_mods |= AAX_eModifiers_Command;
#else
if (pMod->C) aax_mods |= AAX_eModifiers_Control;
if (pMod->R) aax_mods |= AAX_eModifiers_Command;
#endif
//if (pMod->R) aax_mods |= AAX_eModifiers_Command; // TODO: ??
if (pMod->S) aax_mods |= AAX_eModifiers_Shift;
if (pMod->R) aax_mods |= AAX_eModifiers_SecondaryButton;

Expand Down

0 comments on commit e83d311

Please sign in to comment.