Added padding at the end of the graph to avoid the last line being partially covered by the horizontal scrollbar of the graph

This commit is contained in:
Abdelilah El Aissaoui 2022-04-03 19:22:45 +02:00
parent 154ab89a21
commit e2449db568

View File

@ -348,6 +348,10 @@ fun MessagesList(
onRevCommitSelected = { logViewModel.selectLogLine(graphNode) }, onRevCommitSelected = { logViewModel.selectLogLine(graphNode) },
) )
} }
item {
Box(modifier = Modifier.height(20.dp))
}
} }
} }
@ -403,6 +407,10 @@ fun GraphList(
) )
} }
} }
item {
Box(modifier = Modifier.height(20.dp))
}
} }
} }
} }