From 3dda3928c066de7b7aaf525b828bebe2edd589e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20K=C3=BCrten?= <sebastian@mobanisto.de> Date: Tue, 8 Feb 2022 08:56:58 +0100 Subject: [PATCH] Remove rounded bottom left corner of introduction drawer --- .../briar/desktop/conversation/ConversationScreen.kt | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/main/kotlin/org/briarproject/briar/desktop/conversation/ConversationScreen.kt b/src/main/kotlin/org/briarproject/briar/desktop/conversation/ConversationScreen.kt index 5389849dcf..31964e446b 100644 --- a/src/main/kotlin/org/briarproject/briar/desktop/conversation/ConversationScreen.kt +++ b/src/main/kotlin/org/briarproject/briar/desktop/conversation/ConversationScreen.kt @@ -30,7 +30,6 @@ import androidx.compose.foundation.layout.fillMaxSize import androidx.compose.foundation.layout.offset import androidx.compose.foundation.layout.requiredSize import androidx.compose.foundation.layout.width -import androidx.compose.foundation.shape.RoundedCornerShape import androidx.compose.material.ExperimentalMaterialApi import androidx.compose.material.MaterialTheme import androidx.compose.material.Scaffold @@ -132,10 +131,7 @@ fun ConversationScreen( Column( modifier = Modifier.fillMaxHeight().width(COLUMN_WIDTH) .offset(maxWidth + animatedInfoDrawerOffsetX) - .background( - MaterialTheme.colors.surfaceVariant, - RoundedCornerShape(topStart = 10.dp, bottomStart = 10.dp) - ) + .background(MaterialTheme.colors.surfaceVariant) ) { ContactInfoDrawer( contactItem, -- GitLab