fyf vor 2 Jahren
Ursprung
Commit
2c7229474e
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. +1
    -1
      FryPot_DosingSystem/ViewModel/AgvViewModel.cs

+ 1
- 1
FryPot_DosingSystem/ViewModel/AgvViewModel.cs Datei anzeigen

@@ -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();
}


Laden…
Abbrechen
Speichern