Skip to content

Commit

Permalink
fix grid splitter
Browse files Browse the repository at this point in the history
  • Loading branch information
Taxxor90 committed Feb 8, 2024
1 parent f155b37 commit 79993ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/CapFrameX/Shell.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ private void GridSplitter_PreviewMouseDoubleClick(object sender, System.Windows.
if (LeftColumn.ActualWidth > 8)
{
ColumnAWidthSaved = LeftColumn.Width;
LeftColumn.Width = new GridLength(50, GridUnitType.Pixel);
LeftColumn.Width = new GridLength(8, GridUnitType.Pixel);
}
else
{
Expand Down

0 comments on commit 79993ce

Please sign in to comment.