Fix Reder PR build errors

This commit is contained in:
Jobobby04 2021-01-26 13:37:31 -05:00
parent 295af5306b
commit b0981a00bd

View File

@ -402,19 +402,19 @@ class ReaderActivity : BaseRxActivity<ReaderActivityBinding, ReaderPresenter>()
.onEach { .onEach {
ReaderColorFilterSheet(this).show() ReaderColorFilterSheet(this).show()
} }
.launchIn(scope) .launchIn(lifecycleScope)
binding.actionSettings.clicks() binding.actionSettings.clicks()
.onEach { .onEach {
ReaderSettingsSheet(this).show() ReaderSettingsSheet(this).show()
} }
.launchIn(scope) .launchIn(lifecycleScope)
binding.webviewButton.clicks() binding.webviewButton.clicks()
.onEach { .onEach {
openMangaInBrowser() openMangaInBrowser()
} }
.launchIn(scope) .launchIn(lifecycleScope)
// Extra menu buttons // Extra menu buttons
binding.leftChapter.setOnClickListener { binding.leftChapter.setOnClickListener {