Skip to content

Commit

Permalink
Fixing fix for #952
Browse files Browse the repository at this point in the history
  • Loading branch information
batzen committed Jun 14, 2021
1 parent 82cda4e commit 797ced0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public RibbonBackstageTabControlAutomationPeer([NotNull] BackstageTabControl own
/// <inheritdoc />
protected override AutomationControlType GetAutomationControlTypeCore()
{
return AutomationControlType.Custom;
return AutomationControlType.Tab;
}

/// <inheritdoc />
Expand All @@ -32,7 +32,7 @@ protected override ItemAutomationPeer CreateItemAutomationPeer(object item)
return new RibbonControlDataAutomationPeer(item, this);
}

bool ISelectionProvider.IsSelectionRequired => false;
bool ISelectionProvider.IsSelectionRequired => true;

bool ISelectionProvider.CanSelectMultiple => false;
}
Expand Down

0 comments on commit 797ced0

Please sign in to comment.