diff options
author | neauoire <[email protected]> | 2019-11-17 07:28:26 -0500 |
---|---|---|
committer | neauoire <[email protected]> | 2019-11-17 07:28:26 -0500 |
commit | 94e9ba05c82caf9dfb441c7a8366d071d4daac26 (patch) | |
tree | 75b16080e92b920b693c5b1fb24ba9c05bfee70f | |
parent | a04a9cb11d843a6bce17beacb41f2b74802f637b (diff) | |
download | Orca-94e9ba05c82caf9dfb441c7a8366d071d4daac26.tar.gz Orca-94e9ba05c82caf9dfb441c7a8366d071d4daac26.zip |
Fixed bpm accels bug
-rw-r--r-- | desktop/package.json | 2 | ||||
-rw-r--r-- | desktop/sources/scripts/client.js | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/desktop/package.json b/desktop/package.json index ca03bf3..616654e 100644 --- a/desktop/package.json +++ b/desktop/package.json @@ -3,7 +3,7 @@ "version": "0.1.0", "main": "main.js", "scripts": { - "start": "electron .", + "start": "electron . --disable-gpu", "time": "node time.js", "docs": "node ../docs.js", "fix": "standard --fix", diff --git a/desktop/sources/scripts/client.js b/desktop/sources/scripts/client.js index e3cfe9b..fe27015 100644 --- a/desktop/sources/scripts/client.js +++ b/desktop/sources/scripts/client.js @@ -12,7 +12,7 @@ /* global Theme */ function Client () { - this.version = 149 + this.version = 150 this.library = library this.theme = new Theme(this) @@ -98,8 +98,8 @@ function Client () { this.acels.set('Clock', 'Play/Pause', 'Space', () => { this.clock.togglePlay() }) this.acels.set('Clock', 'Frame By Frame', 'CmdOrCtrl+F', () => { this.clock.touch() }) this.acels.set('Clock', 'Reset Frame', 'CmdOrCtrl+Shift+R', () => { this.clock.setFrame(0) }) - this.acels.set('Clock', 'Incr. Speed', 'Shift+>', () => { this.clock.modSpeed(1) }) - this.acels.set('Clock', 'Decr. Speed', 'Shift+<', () => { this.clock.modSpeed(-1) }) + this.acels.set('Clock', 'Incr. Speed', '>', () => { this.clock.modSpeed(1) }) + this.acels.set('Clock', 'Decr. Speed', '<', () => { this.clock.modSpeed(-1) }) this.acels.set('Clock', 'Incr. Speed(10x)', 'CmdOrCtrl+>', () => { this.clock.modSpeed(10, true) }) this.acels.set('Clock', 'Decr. Speed(10x)', 'CmdOrCtrl+<', () => { this.clock.modSpeed(-10, true) }) |