TouchScreen-For-NanoDLP icon indicating copy to clipboard operation
TouchScreen-For-NanoDLP copied to clipboard

Slice not showing 3.2.HMI

Open Dougwar opened this issue 6 years ago • 0 comments

Hi, the slice image was not showing, so I change this in /bin/plugins/nextion/pages/printingHome.js :

`
case 11: _context2.next = 13; return this.getValue("t12.x");

          case 13:
            this.imageX = _context2.sent;
            _context2.next = 16;
            return this.getValue("t12.y");

          case 16:
            this.imageY = _context2.sent;
            _context2.next = 19;
            return this.getValue("t12.w");

to this `
case 11: _context2.next = 13; return this.getValue("m0.x");

          case 13:
            this.imageX = _context2.sent;
            _context2.next = 16;
            return this.getValue("m0.y");

          case 16:
            this.imageY = _context2.sent;
            _context2.next = 19;
            return this.getValue("m0.w");`        

Now its working fine

Dougwar avatar May 17 '18 16:05 Dougwar