Moved date in "Commited changes" to fit better in low res screens

This commit is contained in:
Abdelilah El Aissaoui 2022-06-01 12:12:31 +02:00
parent a6c496d866
commit 8a25dadc12

View File

@ -151,15 +151,23 @@ fun Author(commit: RevCommit) {
.fillMaxSize(),
verticalArrangement = Arrangement.Center
) {
TooltipText(
text = authorIdent.name,
color = MaterialTheme.colors.primaryTextColor,
maxLines = 1,
fontSize = 14.sp,
tooltipTitle = authorIdent.emailAddress,
)
Row {
TooltipText(
text = authorIdent.name,
color = MaterialTheme.colors.primaryTextColor,
Text(
text = commit.id.abbreviate(7).name(),
color = MaterialTheme.colors.secondaryTextColor,
maxLines = 1,
fontSize = 14.sp,
tooltipTitle = authorIdent.emailAddress,
fontSize = 12.sp,
)
Spacer(modifier = Modifier.weight(1f, fill = true))
val date = remember(authorIdent) {
@ -175,13 +183,6 @@ fun Author(commit: RevCommit) {
tooltipTitle = authorIdent.`when`.toSystemDateTimeString()
)
}
Text(
text = commit.id.abbreviate(7).name(),
color = MaterialTheme.colors.secondaryTextColor,
maxLines = 1,
fontSize = 12.sp,
)
}
}
}