Skip to content

Commit fc4b5c9

Browse files
committed
Fix
1 parent e98964a commit fc4b5c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Flow.Launcher/MainWindow.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -880,7 +880,7 @@ private void SetupSearchTextBoxReactiveness(bool showResultsWithDelay)
880880
conversion => (sender, eventArg) => conversion(sender, eventArg),
881881
add => QueryTextBox.TextChanged += add,
882882
remove => QueryTextBox.TextChanged -= remove)
883-
.Throttle(TimeSpan.FromMilliseconds(_settings.SearchInputDelay * 10))
883+
.Throttle(TimeSpan.FromMilliseconds(_settings.SearchInputDelay))
884884
.Do(@event => Dispatcher.Invoke(() => PerformSearchQuery((TextBox)@event.Sender)))
885885
.Subscribe();
886886
}

0 commit comments

Comments
 (0)