Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
LoneWandererProductions committed Nov 28, 2024
2 parents e25d134 + f518c4b commit 828ab99
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions SlimControls/UnifiedToolOptions.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,22 @@ private void NotifyToolSelection(ImageZoomTools selectedTool)
ToolChanged?.Invoke(this, selectedTool);
}

// Constructor
/// <summary>
/// Constructor
/// Initializes a new instance of the <see cref="UnifiedToolOptions"/> class.
/// </summary>
public UnifiedToolOptions()
{
InitializeComponent();
}

// SelectedTool Property
/// <summary>
/// SelectedTool Property
/// Gets or sets the selected tool.
/// </summary>
/// <value>
/// The selected tool.
/// </value>
public ImageTools SelectedTool
{
get => (ImageTools)GetValue(SelectedToolProperty);
Expand Down

0 comments on commit 828ab99

Please sign in to comment.