ソースを参照

1

样式分支
fyf 2年前
コミット
2c7229474e
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      FryPot_DosingSystem/ViewModel/AgvViewModel.cs

+ 1
- 1
FryPot_DosingSystem/ViewModel/AgvViewModel.cs ファイルの表示

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


読み込み中…
キャンセル
保存