-
Notifications
You must be signed in to change notification settings - Fork 634
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add an option to remember last opened Extensions in Dynamo #13812
Conversation
src/DocumentationBrowserViewExtension/DocumentationBrowserViewExtension.cs
Show resolved
Hide resolved
@@ -771,7 +771,7 @@ public string SelectedPythonEngine | |||
} | |||
|
|||
/// <summary> | |||
/// Controls the IsChecked property in the "Hide IronPython alerts" toogle button | |||
/// Controls the IsChecked property in the "Hide IronPython alerts" toggle button |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice
src/WorkspaceDependencyViewExtension/WorkspaceDependencyViewExtension.cs
Outdated
Show resolved
Hide resolved
@@ -63,6 +63,7 @@ namespace Dynamo.Controls | |||
public partial class DynamoView : Window, IDisposable | |||
{ | |||
public const string BackgroundPreviewName = "BackgroundPreview"; | |||
private const int SideBarCollapseThreshold = 20; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is actually a nice thing to add to the preferences!
src/DocumentationBrowserViewExtension/DocumentationBrowserViewExtension.cs
Show resolved
Hide resolved
looks pretty solid @zeusongit - a few comments. |
some test failures on latest commits. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM with couple comments
Thanks @zeusongit Since I see the previous Dynamo SelfServe check already passed, will merge once basic ones passing |
…13812) Add an option to remember last opened Extensions in Dynamo
Add an option to remember last opened Extensions in Dynamo
Purpose
https://jira.autodesk.com/browse/DYN-5570
This PR adds an option to remember last opened Extensions, a new toggle button is added under Features > Extensions section of preference panel to enable/disable this feature.
When enabled, the user will see view extensions which were open while closing Dynamo in the last session.
When disabled, dynamo will not open extensions from the prior session or save their state.
The extensions are serialized in the settings XML file.
Unit tests added -
Snapshot:
Declarations
Check these if you believe they are true
*.resx
filesRelease Notes
Reviewers
@DynamoDS/dynamo