I think I have stumbled again over a regression in...
# compose-desktop
m
I think I have stumbled again over a regression in Compose. Going from 1.4.0-alpha01-dev984 to 985 my AlertDialogs changed from looking like this to
The code is as simple as this:
Copy code
AlertDialog(
                onDismissRequest = { model.clearMessages() },
                title = { Text(title, color = primaryDarkColor) },
                text  = { Text(text,  color = primaryColor) },
                buttons = {},
                modifier = Modifier.width(600.dp).border(1.dp, primaryDarkColor)
            )
Has anybody else seen something like this?
a
Looking into it
Should be fixed in the next dev release.