Skip to content

Commit

Permalink
Fix properties
Browse files Browse the repository at this point in the history
  • Loading branch information
wieslawsoltes committed Aug 9, 2019
1 parent d27645a commit cb53eef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Dock.Avalonia/Controls/HostWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ public class HostWindow : Window, IStyleable, IDockHost
/// Defines the <see cref="IsChromeVisible"/> property.
/// </summary>
public static readonly AvaloniaProperty<bool> IsChromeVisibleProperty =
AvaloniaProperty.Register<MetroWindow, bool>(nameof(IsChromeVisible), true);
AvaloniaProperty.Register<HostWindow, bool>(nameof(IsChromeVisible), true);

/// <summary>
/// Defines the <see cref="TitleBarContent"/> property.
/// </summary>
public static readonly AvaloniaProperty<Control> TitleBarContentProperty =
AvaloniaProperty.Register<MetroWindow, Control>(nameof(TitleBarContent));
AvaloniaProperty.Register<HostWindow, Control>(nameof(TitleBarContent));

/// <summary>
/// Gets or sets the flag indicating whether chrome is visible.
Expand Down

0 comments on commit cb53eef

Please sign in to comment.