Skip to content

Commit

Permalink
(GH-811) Add new feature to ToString output
Browse files Browse the repository at this point in the history
This should have been included earlier, but it was overlooked.
  • Loading branch information
gep13 committed Feb 16, 2021
1 parent c6cb096 commit d09be61
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Source/ChocolateyGui.Common/Models/AppConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ public override string ToString()
AllowNonAdminAccessToSettings: {11}
UseKeyboardBindings: {12}
HidePackageDownloadCount: {13}
PreventAllPackageIconDownloads: {14}
".format_with(
OutdatedPackagesCacheDurationInMinutes,
DefaultSourceName,
Expand All @@ -105,7 +106,8 @@ public override string ToString()
ShowAdditionalPackageInformation,
AllowNonAdminAccessToSettings,
UseKeyboardBindings,
HidePackageDownloadCount);
HidePackageDownloadCount,
PreventAllPackageIconDownloads);
}
}
}

0 comments on commit d09be61

Please sign in to comment.