Skip to content

Commit fb977b2

Browse files
Fix incorrect change on previous commit
1 parent b6f28bb commit fb977b2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

WinUIGallery/ControlPages/DesignGuidance/IconographyPage.xaml.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -143,13 +143,13 @@ private void IconsItemsView_SelectionChanged(ItemsView sender, ItemsViewSelectio
143143
}
144144

145145
}
146+
}
146147

147-
private void TagButton_Click(object sender, RoutedEventArgs e)
148+
private void TagButton_Click(object sender, RoutedEventArgs e)
149+
{
150+
if ((sender as Button).Content is string tag)
148151
{
149-
if ((sender as Button).Content is string tag)
150-
{
151-
IconsAutoSuggestBox.Text = tag;
152-
}
152+
IconsAutoSuggestBox.Text = tag;
153153
}
154154
}
155-
}
155+
}

0 commit comments

Comments
 (0)