@@ -120,8 +120,8 @@ private fun SubtitleRow(
120120 if (visibilityIcon != null ) {
121121 Icon (
122122 modifier = Modifier
123- .size(16 .dp)
124- .padding(end = 4 .dp),
123+ .size(16 .dp)
124+ .padding(end = 4 .dp),
125125 imageVector = visibilityIcon,
126126 contentDescription = null ,
127127 tint = ElementTheme .colors.iconTertiary,
@@ -178,20 +178,20 @@ private fun SpaceRoomItemScaffold(
178178 content : @Composable ColumnScope .() -> Unit ,
179179) {
180180 val clickModifier = Modifier
181- .combinedClickable(
182- onClick = onClick,
183- onLongClick = onLongClick,
184- onLongClickLabel = stringResource(CommonStrings .action_open_context_menu),
185- indication = ripple(),
186- interactionSource = remember { MutableInteractionSource () }
187- )
188- .onKeyboardContextMenuAction { onLongClick }
181+ .combinedClickable(
182+ onClick = onClick,
183+ onLongClick = onLongClick,
184+ onLongClickLabel = stringResource(CommonStrings .action_open_context_menu),
185+ indication = ripple(),
186+ interactionSource = remember { MutableInteractionSource () }
187+ )
188+ .onKeyboardContextMenuAction { onLongClick }
189189 Row (
190190 modifier = modifier
191- .fillMaxWidth()
192- .then(clickModifier)
193- .padding(horizontal = 16 .dp, vertical = 8 .dp)
194- .height(IntrinsicSize .Min ),
191+ .fillMaxWidth()
192+ .then(clickModifier)
193+ .padding(horizontal = 16 .dp, vertical = 8 .dp)
194+ .height(IntrinsicSize .Min ),
195195 ) {
196196 Avatar (
197197 avatarData = avatarData,
0 commit comments