Fixed filename being cut in uncommited/commit changes

This commit is contained in:
Abdelilah El Aissaoui 2022-10-22 01:15:54 +02:00
parent 3554c7ebcf
commit 096f4128b2
2 changed files with 0 additions and 6 deletions

View file

@ -290,7 +290,6 @@ fun CommitLogChanges(
}
Text(
text = diffEntry.fileName,
modifier = Modifier.weight(1f, fill = false),
maxLines = 1,
softWrap = false,
style = MaterialTheme.typography.body2,

View file

@ -560,10 +560,6 @@ private fun EntriesList(
}
}
@OptIn(
ExperimentalComposeUiApi::class, ExperimentalFoundationApi::class,
ExperimentalAnimationApi::class
)
@Composable
private fun FileEntry(
statusEntry: StatusEntry,
@ -618,7 +614,6 @@ private fun FileEntry(
}
Text(
text = statusEntry.fileName,
modifier = Modifier.weight(1f, fill = false),
maxLines = 1,
softWrap = false,
style = MaterialTheme.typography.body2,