Skip to content

Commit

Permalink
Automated dotnet-format update (#1099)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Sep 30, 2024
1 parent a7a581f commit 53fc117
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/Beutl/Views/MainView.axaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,10 @@ static MenuItem CreateEditorMenuItem(EditorExtension item)
{
var menuItem = new MenuItem()
{
Header = item.DisplayName, DataContext = item, IsVisible = false, Icon = item.GetIcon()
Header = item.DisplayName,
DataContext = item,
IsVisible = false,
Icon = item.GetIcon()
};

menuItem.Click += async (s, e) =>
Expand Down Expand Up @@ -289,7 +292,9 @@ MenuItem CreateToolWindowMenuItem(PageExtension item)
{
var menuItem = new MenuItem()
{
Header = item.DisplayName, DataContext = item, Icon = item.GetRegularIcon()
Header = item.DisplayName,
DataContext = item,
Icon = item.GetRegularIcon()
};

menuItem.Click += async (s, e) =>
Expand Down

0 comments on commit 53fc117

Please sign in to comment.