Disabled softwarp for branches and uncommited changes

This commit is contained in:
Abdelilah El Aissaoui 2022-01-23 17:16:28 +01:00
parent d14c13595c
commit 57e428a9e8
3 changed files with 3 additions and 3 deletions

View File

@ -212,7 +212,7 @@ fun CommitLogChanges(diffEntries: List<DiffEntry>, onDiffSelected: (DiffEntry) -
color = textColor,
maxLines = 1,
fontSize = 13.sp,
overflow = TextOverflow.Ellipsis,
softWrap = false,
)
}

View File

@ -355,7 +355,7 @@ private fun FileEntry(
text = diffEntry.filePath,
modifier = Modifier.weight(1f, fill = true),
maxLines = 1,
overflow = TextOverflow.Ellipsis,
softWrap = false,
fontSize = 13.sp,
color = MaterialTheme.colors.primaryTextColor,
)

View File

@ -54,7 +54,7 @@ fun SideMenuSubentry(
fontSize = 13.sp,
fontWeight = if (bold) FontWeight.SemiBold else FontWeight.Normal,
color = MaterialTheme.colors.primaryTextColor,
overflow = TextOverflow.Ellipsis,
softWrap = false,
)
additionalInfo()