I finally tested it, little delay, and the unique thing i see is that of course, you have to click into
Save image so to have the image set as you have rotated it, before to let close the popup. If the popup close before the image has been saved, when it is re-opened it show the original image in the original position as it is. It is supposed to be like that if you mean the above.
About the icon, that can be changed maybe with any available here:
https://fontawesome.com/v4/icons/
The rotate image icon
i tag that display the "rotation icon" is created in JS on fly into this file:
/ext/w3all/imageattachrotation/styles/all/template/event/overall_footer_body_after.html
line
Code: Select all
i.className = "icon fas fa-undo fa-rotate-270";
for example so, to change it and display this new icon instead:
https://fontawesome.com/v4/icon/repeat
just change the line above into this:
Code: Select all
i.className = "icon fas fa-repeat";
Remember that to make changes to take effect when you modify template files, you have to set the Recompile Stale template option to YES into the ACP, or like it is this case, you can also disable the extension, clean-up data of the extension, re-enable the extension.
Ok, of course on next version the icon will be changed to be the above and so to respect the intended direction that you can expect to be based on the icon direction! At the time i did the code i assume that the new Font Awesome icon linked above was not existent.