Nigel Moore Posted October 12, 2023 Share Posted October 12, 2023 Hi there, is there a reason why on other machine like Mac, the editor icon is using "_hidpi" version? How can we change that? so it wont use that version? Thanks -Allan of team Nigel Link to comment Share on other sites More sharing options...
Nigel Moore Posted October 12, 2023 Author Share Posted October 12, 2023 Is there a way to disable hidpi in ckeditor? Thanks -Allan of team Nigel Link to comment Share on other sites More sharing options...
Nathan Explosion Posted October 12, 2023 Share Posted October 12, 2023 Give this a try - no guarantees. Add the below to your globalTemplate, just before the closing </body> tag. <script> if(typeof CKEDITOR !='undefined'){ CKEDITOR.env.hidpi=false; } </script> Link to comment Share on other sites More sharing options...
Nigel Moore Posted October 12, 2023 Author Share Posted October 12, 2023 4 minutes ago, Nathan Explosion said: Give this a try - no guarantees. Add the below to your globalTemplate, just before the closing </body> tag. <script> if(typeof CKEDITOR !='undefined'){ CKEDITOR.env.hidpi=false; } </script> thank you for the reply, I just try this code and it doesnt work, sorry -Allan Link to comment Share on other sites More sharing options...
Nathan Explosion Posted October 12, 2023 Share Posted October 12, 2023 (edited) Ah well - that's likely the only option outside of deleting the actual icons from within your file structure. Why exactly do you want to disabled them? They are used on Retina screens for a reason (the default PNG icons probably blur a little on those screens) Edited October 12, 2023 by Nathan Explosion Link to comment Share on other sites More sharing options...
Nigel Moore Posted October 12, 2023 Author Share Posted October 12, 2023 4 minutes ago, Nathan Explosion said: Ah well - that's likely the only option outside of deleting the actual icons from within your file structure. Why exactly do you want to disabled them? They are used on Retina screens for a reason (the default PNG icons probably blur a little on those screens) We have edited the skin icons, and its not showing on retina display device. -Allan Link to comment Share on other sites More sharing options...
Recommended Posts