Skip to content

Commit 938876e

Browse files
committed
fix: wrong column indentation on right side of Interactive Rebase window, for wide commit messages (#764)
1 parent e65ac18 commit 938876e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Views/InteractiveRebase.axaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,9 @@
212212
</Border>
213213

214214
<!-- Commit Time -->
215-
<TextBlock Grid.Column="3" Classes="primary" Text="{Binding Commit.CommitterTimeStr}" Margin="8,0"/>
215+
<Border Grid.Column="3" ClipToBounds="True">
216+
<TextBlock Classes="primary" Text="{Binding Commit.CommitterTimeStr}" Margin="8,0"/>
217+
</Border>
216218

217219
<!-- MoveUp Button -->
218220
<Button Grid.Column="4" Classes="icon_button" Click="OnMoveItemUp" ToolTip.Tip="Alt+Up">

0 commit comments

Comments
 (0)