Skip to content

Commit

Permalink
Disable Resume checkbox when training
Browse files Browse the repository at this point in the history
  • Loading branch information
Neakita committed Sep 30, 2023
1 parent f0f1074 commit cd76c45
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion SightKeeper.Avalonia/Views/Tabs/TrainingTab.axaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@
IsVisible="{Binding Resume}"/>

<CheckBox Content="Resume"
IsChecked="{Binding Resume}"/>
IsChecked="{Binding Resume}"
IsEnabled="{Binding !IsTraining}"/>

<NumericUpDown Value="{Binding Epochs}"
Minimum="100"
Expand Down

0 comments on commit cd76c45

Please sign in to comment.