Skip to content

Commit

Permalink
Extension fix (#11861)
Browse files Browse the repository at this point in the history
DYN-3773
  • Loading branch information
zeusongit authored Jul 15, 2021
1 parent 9c32570 commit 5248e31
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/DynamoCoreWpf/Views/Core/DynamoView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -1787,6 +1787,7 @@
VerticalAlignment="Stretch"
Margin="0"
Background="Transparent"
DragCompleted="RightExtensionSidebar_DragCompleted"
Cursor="/DynamoCoreWpf;component/UI/Images/resize_horizontal.cur" />

<!--Start Page-->
Expand Down
6 changes: 6 additions & 0 deletions src/DynamoCoreWpf/Views/Core/DynamoView.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2483,6 +2483,12 @@ private void ShowGetStartedGuidedTour()
surveyPopup.Show();
}

private void RightExtensionSidebar_DragCompleted(object sender, DragCompletedEventArgs e)
{
//Setting the width of right extension after resize to
extensionsColumnWidth = RightExtensionsViewColumn.Width;
}

public void Dispose()
{
viewExtensionManager.Dispose();
Expand Down

0 comments on commit 5248e31

Please sign in to comment.