Removed option to stage/unstage lines in other than modified files
This commit is contained in:
parent
765bae578f
commit
45629528f2
@ -1145,7 +1145,12 @@ fun DiffLineText(line: Line, diffType: DiffType, onActionTriggered: () -> Unit)
|
|||||||
val isHovered by hoverInteraction.collectIsHoveredAsState()
|
val isHovered by hoverInteraction.collectIsHoveredAsState()
|
||||||
|
|
||||||
Box(modifier = Modifier.hoverable(hoverInteraction)) {
|
Box(modifier = Modifier.hoverable(hoverInteraction)) {
|
||||||
if (isHovered && diffType is DiffType.UncommittedDiff && line.lineType != LineType.CONTEXT) {
|
if (
|
||||||
|
isHovered &&
|
||||||
|
diffType is DiffType.UncommittedDiff &&
|
||||||
|
line.lineType != LineType.CONTEXT &&
|
||||||
|
diffType.statusType == StatusType.MODIFIED
|
||||||
|
) {
|
||||||
val color: Color = if (diffType is DiffType.StagedDiff) {
|
val color: Color = if (diffType is DiffType.StagedDiff) {
|
||||||
MaterialTheme.colors.error
|
MaterialTheme.colors.error
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user