Skip to content
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 settings to preferences panel #13358

Merged
merged 5 commits into from
Oct 4, 2022
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 63 additions & 0 deletions src/DynamoCoreWpf/Properties/Resources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 26 additions & 2 deletions src/DynamoCoreWpf/Properties/Resources.en-US.resx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Expand Down Expand Up @@ -3323,4 +3323,28 @@ You can manage this in Preferences -&gt; Security.</value>
<data name="ImportSettingsFailedMessage" xml:space="preserve">
<value>Import Failed</value>
</data>
</root>
<data name="PreferencesSettingHardwareAcceleration" xml:space="preserve">
<value>Use Hardware Acceleration</value>
</data>
<data name="PreferencesSettingCustomPythomTemplate" xml:space="preserve">
<value>Custom Python Template File Path</value>
<comment>Preferences | Features | Python | Python Template File</comment>
</data>
<data name="PreferencesSettingBackupInterval" xml:space="preserve">
<value>Auto-Backup Interval</value>
<comment>Setting menu | Auto-Backup Interval</comment>
</data>
<data name="PreferencesSettingMaxRecentFiles" xml:space="preserve">
<value>Maximum Number of Recent Files</value>
<comment>Setting menu | Maximum Number of Recent Files</comment>
</data>
<data name="BackupInternalUnit" xml:space="preserve">
<value>Minute(s) between backups</value>
</data>
<data name="PythonTemplateAddPathTooltip" xml:space="preserve">
<value>Add a file path for Python Node Template</value>
</data>
<data name="AddFilePathButtonName" xml:space="preserve">
<value>Add File Path</value>
</data>
</root>
28 changes: 26 additions & 2 deletions src/DynamoCoreWpf/Properties/Resources.resx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Expand Down Expand Up @@ -3310,4 +3310,28 @@ You can manage this in Preferences -&gt; Security.</value>
<data name="ImportSettingsFailedMessage" xml:space="preserve">
<value>Import Failed</value>
</data>
</root>
<data name="PreferencesSettingHardwareAcceleration" xml:space="preserve">
<value>Use Hardware Acceleration</value>
</data>
<data name="PreferencesSettingCustomPythomTemplate" xml:space="preserve">
<value>Custom Python Template File Path</value>
<comment>Preferences | Features | Python | Python Template File</comment>
</data>
<data name="PreferencesSettingBackupInterval" xml:space="preserve">
<value>Auto-Backup Interval</value>
<comment>Setting menu | Auto-Backup Interval</comment>
</data>
<data name="PreferencesSettingMaxRecentFiles" xml:space="preserve">
<value>Maximum Number of Recent Files</value>
<comment>Setting menu | Maximum Number of Recent Files</comment>
</data>
<data name="BackupInternalUnit" xml:space="preserve">
<value>Minute(s) between backups</value>
</data>
<data name="PythonTemplateAddPathTooltip" xml:space="preserve">
<value>Add a file path for Python Node Template</value>
</data>
<data name="AddFilePathButtonName" xml:space="preserve">
<value>Add File Path</value>
</data>
</root>
4 changes: 2 additions & 2 deletions src/DynamoCoreWpf/UI/Themes/Modern/DynamoModern.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -3197,8 +3197,8 @@
Background="{TemplateBinding Background}"
CornerRadius="4"/>
<Border x:Name="border"
Margin="4"
Height="36px"
Margin="0,4,4,4"
Height="30px"
Padding="8,0,8,0"
BorderThickness="1"
BorderBrush="{TemplateBinding BorderBrush}"
Expand Down
Loading