huh, so I've got a `Dialog` that i've set the size...
# compose-desktop
a
huh, so I've got a
Dialog
that i've set the size to Unspecified
Copy code
rememberDialogState(size = DpSize.Unspecified)
But now some, but not all, of my dialogs are throwing
IllegalStateException: DpSize is unspecified
Even if I give the internal views a definite size, something like
Copy code
Box(modifier = Modifier.size(200.dp).padding(Ui.Padding.XL)) {
a
Can you file a bug? We’ll take a look…