mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-02-02 04:06:51 +01:00
Hiding the filter icon in top bar when in selection mode
This commit is contained in:
parent
cf98963cdb
commit
dcb8aea292
@ -225,6 +225,7 @@ class OtherSessionsFragment :
|
|||||||
|
|
||||||
override fun invalidate() = withState(viewModel) { state ->
|
override fun invalidate() = withState(viewModel) { state ->
|
||||||
updateLoading(state.isLoading)
|
updateLoading(state.isLoading)
|
||||||
|
updateFilterView(state.isSelectModeEnabled)
|
||||||
if (state.devices is Success) {
|
if (state.devices is Success) {
|
||||||
val devices = state.devices.invoke()
|
val devices = state.devices.invoke()
|
||||||
renderDevices(devices, state.currentFilter, state.isShowingIpAddress)
|
renderDevices(devices, state.currentFilter, state.isShowingIpAddress)
|
||||||
@ -240,6 +241,10 @@ class OtherSessionsFragment :
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private fun updateFilterView(isSelectModeEnabled: Boolean) {
|
||||||
|
views.otherSessionsFilterFrameLayout.isVisible = isSelectModeEnabled.not()
|
||||||
|
}
|
||||||
|
|
||||||
private fun updateToolbar(devices: List<DeviceFullInfo>, isSelectModeEnabled: Boolean) {
|
private fun updateToolbar(devices: List<DeviceFullInfo>, isSelectModeEnabled: Boolean) {
|
||||||
invalidateOptionsMenu()
|
invalidateOptionsMenu()
|
||||||
val title = if (isSelectModeEnabled) {
|
val title = if (isSelectModeEnabled) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user