var fDesc=new Array(); fDesc[0] = "PrusaControl automatically updates print settings for Prusa i3 MK2 everytime you open it. PrusaControl is an alternative user interface for Slic3r Prusa Edition.

Rotation UI is also implemented, you can rotate by 1° outside the circle and by 45° inside the circle. ColorPrint is also included. When you get into the simple G-code preview, you can always add a change on the highlighted layer. Very easy and convenient!"; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }