bugfix. disable convert button during slicing
This commit is contained in:
parent
7c9fbda690
commit
ed82f46f57
1 changed files with 1 additions and 1 deletions
|
|
@ -146,7 +146,7 @@ $(function(){
|
|||
});
|
||||
|
||||
self.enableConvertButton = ko.computed(function() {
|
||||
if (self.laserIntensity() === undefined || self.laserSpeed() === undefined || self.gcodeFilename() === undefined) {
|
||||
if (self.slicing_in_progress() || self.laserIntensity() === undefined || self.laserSpeed() === undefined || self.gcodeFilename() === undefined) {
|
||||
return false;
|
||||
} else {
|
||||
var tmpIntensity = self.laserIntensity();
|
||||
|
|
|
|||
Loading…
Reference in a new issue