Skip to content

Commit 09020d3

Browse files
Fix whitespace formatting
This commit resolves trailing whitespace formatting issues reported by CI.
1 parent ddb6596 commit 09020d3

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/UniGetUI/Controls/SettingsWidgets/ButtonCard.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public string ButtonText
1919
private string _text = "";
2020
public string Text
2121
{
22-
set
22+
set
2323
{
2424
_text = CoreTools.Translate(value);
2525
Header = _text;
@@ -39,7 +39,7 @@ public ButtonCard()
3939
};
4040
Content = _button;
4141

42-
Loaded += (s, e) =>
42+
Loaded += (s, e) =>
4343
{
4444
Microsoft.UI.Xaml.Automation.AutomationProperties.SetName(this, _text);
4545
Microsoft.UI.Xaml.Automation.AutomationProperties.SetLocalizedControlType(this, "grouping");

src/UniGetUI/Controls/SettingsWidgets/CheckboxButtonCard.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public CheckboxButtonCard()
100100

101101
Button.Click += (s, e) => Click?.Invoke(s, e);
102102

103-
Loaded += (s, e) =>
103+
Loaded += (s, e) =>
104104
{
105105
Microsoft.UI.Xaml.Automation.AutomationProperties.SetName(this, _textblock.Text);
106106
Microsoft.UI.Xaml.Automation.AutomationProperties.SetLocalizedControlType(this, "grouping");

src/UniGetUI/Controls/SettingsWidgets/CheckboxCard.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public CheckboxCard()
102102
_checkbox.HorizontalAlignment = HorizontalAlignment.Stretch;
103103
_checkbox.Toggled += _checkbox_Toggled;
104104

105-
Loaded += (s, e) =>
105+
Loaded += (s, e) =>
106106
{
107107
Microsoft.UI.Xaml.Automation.AutomationProperties.SetName(this, _textblock.Text);
108108
Microsoft.UI.Xaml.Automation.AutomationProperties.SetLocalizedControlType(this, "grouping");

src/UniGetUI/Controls/SettingsWidgets/SecureCheckboxCard.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public SecureCheckboxCard()
119119
_checkbox.HorizontalAlignment = HorizontalAlignment.Stretch;
120120
_checkbox.Toggled += (s, e) => _ = _checkbox_Toggled();
121121

122-
Loaded += (s, e) =>
122+
Loaded += (s, e) =>
123123
{
124124
Microsoft.UI.Xaml.Automation.AutomationProperties.SetName(this, _textblock.Text);
125125
Microsoft.UI.Xaml.Automation.AutomationProperties.SetLocalizedControlType(this, "grouping");

0 commit comments

Comments
 (0)