Skip to content

Commit

Permalink
Decrease debounce interval for tag search
Browse files Browse the repository at this point in the history
  • Loading branch information
kaphacius committed Dec 18, 2022
1 parent bd3bc4f commit c003166
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion JustTags/Main/MainVM.swift
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ internal final class MainVM: AnyWindowVM {

private func setUpSearch() {
$searchText
.debounce(for: 0.2, scheduler: RunLoop.main, options: nil)
.debounce(for: 0.10, scheduler: RunLoop.main, options: nil)
.removeDuplicates()
.sink { [weak self] v in
self?.searchTags()
Expand Down

0 comments on commit c003166

Please sign in to comment.