Skip to content

Commit

Permalink
Fixes #633.
Browse files Browse the repository at this point in the history
  • Loading branch information
Qitian Zhang authored and Qitian Zhang committed Apr 30, 2024
1 parent 5e03920 commit 9179d31
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,8 @@ private async void GeneratingButton_ClickAsync(object sender, RoutedEventArgs e)
var (pattern, missingDigit, fixedCandidates) = (SelectedCells, MissingDigit, FixedCandidates);
var ratingScale = ((App)Application.Current).Preference.TechniqueInfoPreferences.RatingScale;
var ratingScaleFormat = FactorMarshal.GetScaleFormatString(1 / ratingScale);
var analyzer = ((App)Application.Current).GetAnalyzerConfigured(SudokuPane);
var analyzer = ((App)Application.Current).GetAnalyzerConfigured(SudokuPane)
.WithUserDefinedOptions(new() { DistinctDirectMode = true, IsDirectMode = true });
using var cts = new CancellationTokenSource();
try
{
Expand Down

0 comments on commit 9179d31

Please sign in to comment.