Explorar el Código

1

样式分支
fyf hace 2 años
padre
commit
2c7229474e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      FryPot_DosingSystem/ViewModel/AgvViewModel.cs

+ 1
- 1
FryPot_DosingSystem/ViewModel/AgvViewModel.cs Ver fichero

@@ -834,7 +834,7 @@ namespace FryPot_DosingSystem.ViewModel
try
{
count = int.Parse(_DishesNum);
if (count > 0 && count <= 8)
if (count >= 0 && count <= 8)
{
_DishesNum = count.ToString();
}


Cargando…
Cancelar
Guardar