Swap clockwise/counterclockwise rotation buttons, change glyphs

This commit is contained in:
Bryan Housel
2017-11-06 15:51:48 -05:00
parent e439ea406a
commit 5f2b257ddc
+4 -4
View File
@@ -315,13 +315,13 @@ export default {
controlsEnter
.append('button')
.on('click.rotate-cw', rotate(90))
.text('');
.on('click.rotate-ccw', rotate(-90))
.text('⤿');
controlsEnter
.append('button')
.on('click.rotate-ccw', rotate(-90))
.text('');
.on('click.rotate-cw', rotate(90))
.text('');
controlsEnter
.append('button')