Skip to content

Commit

Permalink
spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
linhpha committed May 8, 2024
1 parent 37f0feb commit 1ea39f0
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -238,13 +238,14 @@ fun StatusDialog(
confirmButtonText: String,
onQuit: () -> Unit,
onConfirm: () -> Unit,
modifier: Modifier = Modifier
modifier: Modifier = Modifier,
) {
// No M3 AlertDialog in compose-jb yet
// https://github.com/JetBrains/compose-multiplatform/issues/2037
Popup(alignment = Alignment.Center, onDismissRequest = { onQuit() }, ) {
Popup(alignment = Alignment.Center, onDismissRequest = { onQuit() }) {
Box(
modifier.width(600.dp)
modifier
.width(600.dp)
.height(100.dp)
.background(JewelTheme.globalColors.paneBackground)
.border(1.5.dp, JewelTheme.globalColors.borders.disabled, RoundedCornerShape(8.dp))
Expand Down

0 comments on commit 1ea39f0

Please sign in to comment.