Skip to content

Commit

Permalink
[PTRun][Dev]Fix additional option default values not taking settings …
Browse files Browse the repository at this point in the history
…values (#29480)
  • Loading branch information
waaverecords committed Oct 31, 2023
1 parent 3fe5617 commit cded4ef
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/modules/launcher/PowerLauncher/SettingsReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,9 @@ private static IEnumerable<PluginAdditionalOption> CombineAdditionalOptions(IEnu
if (option.Key != null && defaultOptions.TryGetValue(option.Key, out PluginAdditionalOption defaultOption))
{
defaultOption.Value = option.Value;
defaultOption.ComboBoxValue = option.ComboBoxValue;
defaultOption.TextValue = option.TextValue;
defaultOption.NumberValue = option.NumberValue;
}
}

Expand Down

0 comments on commit cded4ef

Please sign in to comment.