1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-24 11:37:32 +03:00

Downgrade RxSwift to 3.0.0-rc1 for the time being

- https://github.com/ReactiveX/RxSwift/pull/957
This commit is contained in:
Tae Won Ha 2016-10-25 22:22:20 +02:00
parent d6333b058a
commit 5dc93e1946
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
github "ReactiveX/RxSwift" == 3.0.0
github "ReactiveX/RxSwift" "3.0.0-rc.1"
github "PureLayout/PureLayout" == 3.0.2
github "eonil/FileSystemEvents" "master"
github "sparkle-project/Sparkle" == 1.14.0

View File

@ -1,5 +1,5 @@
github "eonil/FileSystemEvents" "aa5c6af1fd35939f9aca3b9eba3b672bfa549b3a"
github "Quick/Nimble" "v5.1.0"
github "PureLayout/PureLayout" "v3.0.2"
github "ReactiveX/RxSwift" "3.0.0"
github "ReactiveX/RxSwift" "3.0.0-rc.1"
github "sparkle-project/Sparkle" "1.14.0"

View File

@ -47,7 +47,7 @@ class OpenQuicklyWindowComponent: WindowComponent,
init(source: Observable<Any>, fileItemService: FileItemService) {
self.fileItemService = fileItemService
self.searchStream = self.searchField.rx.textInput.text.orEmpty
self.searchStream = self.searchField.rx.text
.throttle(0.2, scheduler: MainScheduler.instance)
.distinctUntilChanged()