diff options
author | Pooja Soundalgekar | 2016-07-12 15:41:05 +0530 |
---|---|---|
committer | Pooja Soundalgekar | 2016-07-12 15:41:05 +0530 |
commit | 5b55cf3036020eebf89bc43270d502b18f399347 (patch) | |
tree | 4a81db5c7ac060bcd09de9b4f61d78ac8c9eb91b | |
parent | 80f624b54fe7db6c4884b9323f1b380e5cbf3945 (diff) | |
download | xcos-on-web-5b55cf3036020eebf89bc43270d502b18f399347.tar.gz xcos-on-web-5b55cf3036020eebf89bc43270d502b18f399347.tar.bz2 xcos-on-web-5b55cf3036020eebf89bc43270d502b18f399347.zip |
flip and mirror images in orientation
-rw-r--r-- | images/flip.png | bin | 0 -> 540 bytes | |||
-rw-r--r-- | images/mirror.png | bin | 0 -> 581 bytes | |||
-rwxr-xr-x | index.html | 4 |
3 files changed, 2 insertions, 2 deletions
diff --git a/images/flip.png b/images/flip.png Binary files differnew file mode 100644 index 0000000..6dbbb5e --- /dev/null +++ b/images/flip.png diff --git a/images/mirror.png b/images/mirror.png Binary files differnew file mode 100644 index 0000000..2676528 --- /dev/null +++ b/images/mirror.png @@ -196,10 +196,10 @@ menu.addItem('Rotate', 'images/rotate.png', function() { editor.execute('rotateCustom'); }, format); - menu.addItem('Flip', 'images/rotate.png', function() { + menu.addItem('Flip', 'images/flip.png', function() { editor.execute('flipCustom'); }, format); - menu.addItem('Mirror', 'images/rotate.png', function() { + menu.addItem('Mirror', 'images/mirror.png', function() { editor.execute('mirrorCustom'); }, format); menu.addItem('Border Color', 'images/draw-brush.png', function() { |