mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
fix: prevent clicking through composable background
This commit is contained in:
parent
a39390254a
commit
4a6c0c0b40
1 changed files with 3 additions and 1 deletions
|
|
@ -130,7 +130,9 @@ fun ChannelSettingsItemList(
|
|||
}
|
||||
|
||||
Box(
|
||||
modifier = Modifier.fillMaxSize()
|
||||
modifier = Modifier
|
||||
.fillMaxSize()
|
||||
.clickable(onClick = { }, enabled = false)
|
||||
) {
|
||||
if (maxChannels > settingsListInput.size) FloatingActionButton(
|
||||
onClick = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue