Ver código fonte

Fix accessor on color edits

Neal Wilson 6 anos atrás
pai
commit
f09ada14f9
1 arquivos alterados com 4 adições e 4 exclusões
  1. 4
    4
      config/Windows/newbatch.xml

+ 4
- 4
config/Windows/newbatch.xml Ver arquivo

@@ -668,11 +668,11 @@
668 668
                 query2.bind(":user", Application.currentTypicaUser());
669 669
                 var extradata = new Object;
670 670
                 var colordata = new Object;
671
-                if(wholecolor.text.length > 0) {
672
-                    colordata.whole = wholecolor.text;
671
+                if(wholecolor.value.length > 0) {
672
+                    colordata.whole = wholecolor.value;
673 673
                 }
674
-                if(groundcolor.text.length > 0) {
675
-                    colordata.ground = groundcolor.text;
674
+                if(groundcolor.value.length > 0) {
675
+                    colordata.ground = groundcolor.value;
676 676
                 }
677 677
                 if(colordata.whole || colordata.ground) {
678 678
                     extradata.color = colordata;

Carregando…
Cancelar
Salvar