merlinvn / controlp5

Automatically exported from code.google.com/p/controlp5
0 stars 0 forks source link

disableShortcuts() and enableShortcuts() doesn't work #19

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Revising the source code I've detected that the boolean values are swaped 

    public void disableKeys() {
-->     isShortcuts = false;
    }

    public void enableKeys() {
-->     isShortcuts = true;
    }

    public void disableShortcuts() {
-->     isShortcuts = true;
    }

    public void enableShortcuts() {
-->     isShortcuts = false;
    }

the deprecated functions still works

I'm using:
 * @modified    10/05/2010
 * @version 0.5.4

Original issue reported on code.google.com by gabr...@gmail.com on 15 Jul 2011 at 1:28

GoogleCodeExporter commented 8 years ago
Issue fixed in the last version, sorry when I posted this issue I only could 
saw the version linked in your website... trying to get the latest version from 
svn...

Original comment by gabr...@gmail.com on 15 Jul 2011 at 1:38

GoogleCodeExporter commented 8 years ago

Original comment by soj...@gmail.com on 18 Jan 2012 at 4:09