Skip to content

Commit 2a7561f

Browse files
committed
Fix calculating column position for resize
1 parent 55b2866 commit 2a7561f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/view/table_view.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -902,7 +902,7 @@ where
902902
{
903903
return Some((i, offset));
904904
}
905-
offset = right_edge + 2;
905+
offset = right_edge + 1;
906906
}
907907
None
908908
}

0 commit comments

Comments
 (0)