Fix unreadable sheet tab text in light blue theme

(cherry picked from commit 9f2fe33ce0)
This commit is contained in:
arkon
2021-02-04 09:16:37 -05:00
committed by Jobobby04
parent c635d72b30
commit 9a3faad499
3 changed files with 13 additions and 2 deletions
@@ -570,13 +570,13 @@ open class BrowseSourceController(bundle: Bundle) :
val actions = emptyList<EmptyView.Action>().toMutableList()
if (presenter.source is LocalSource) {
actions += EmptyView.Action(R.string.local_source_help_guide, View.OnClickListener { openLocalSourceHelpGuide() })
actions += EmptyView.Action(R.string.local_source_help_guide) { openLocalSourceHelpGuide() }
} else {
actions += EmptyView.Action(R.string.action_retry, retryAction)
}
if (presenter.source is HttpSource) {
actions += EmptyView.Action(R.string.action_open_in_web_view, View.OnClickListener { openInWebView() })
actions += EmptyView.Action(R.string.action_open_in_web_view) { openInWebView() }
}
binding.emptyView.show(message, actions)