mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-20 03:59:35 +01:00
Merge pull request #4666 from nextcloud/backport/4659/stable-21.0
[stable-21.0] Switched the "Close" and "Set" Buttons in the remind-me-later dialog
This commit is contained in:
commit
262440319b
@ -149,6 +149,16 @@ class DateTimeCompose(val bundle: Bundle) {
|
||||
)
|
||||
}
|
||||
|
||||
TextButton(
|
||||
onClick = {
|
||||
shouldDismiss.value = true
|
||||
},
|
||||
modifier = Modifier
|
||||
.weight(CUBED_PADDING)
|
||||
) {
|
||||
Text(stringResource(R.string.close))
|
||||
}
|
||||
|
||||
TextButton(
|
||||
onClick = {
|
||||
val user = userManager.currentUser.blockingGet()
|
||||
@ -165,16 +175,6 @@ class DateTimeCompose(val bundle: Bundle) {
|
||||
) {
|
||||
Text(stringResource(R.string.set))
|
||||
}
|
||||
|
||||
TextButton(
|
||||
onClick = {
|
||||
shouldDismiss.value = true
|
||||
},
|
||||
modifier = Modifier
|
||||
.weight(CUBED_PADDING)
|
||||
) {
|
||||
Text(stringResource(R.string.close))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user