[Settings]Fix description property type for checkbox controls (#18796)

This commit is contained in:
Mahdi Hosseini
2022-06-23 19:51:44 +04:30
committed by GitHub
parent 22f9629174
commit 6f5429ec49

View File

@@ -59,7 +59,7 @@ namespace Microsoft.PowerToys.Settings.UI.Controls
public static readonly DependencyProperty DescriptionProperty = DependencyProperty.Register(
"Description",
typeof(object),
typeof(string),
typeof(CheckBoxWithDescriptionControl),
new PropertyMetadata(default(string)));