Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Kragrathea committed Aug 19, 2020
1 parent 81d0450 commit 17a7453
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion octoprint_prettygcode/static/js/prettygcode.js
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,9 @@ $(function () {
gui.add(pgSettings, 'orbitWhenIdle');
gui.add(pgSettings, 'fatLines').onFinishChange(pgSettings.reloadGcode);
gui.add(pgSettings, 'reflections');
gui.add(pgSettings, 'antialias').onFinishChange(alert("Antialias chenges won't take effect until you refresh the page"));
gui.add(pgSettings, 'antialias').onFinishChange(function(){
alert("Antialias chenges won't take effect until you refresh the page");
});
//gui.add(pgSettings, 'reloadGcode');

var folder = gui.addFolder('Windows');//hidden.
Expand Down

0 comments on commit 17a7453

Please sign in to comment.