We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d2751a commit 85921beCopy full SHA for 85921be
Changelog.md
@@ -1,5 +1,11 @@
1
# Changelog for Fluent.Ribbon
2
3
+## 10.0.1
4
+
5
+- ### Bug fixes
6
7
+ - [#1134](../../issues/1134) - Selected Tab on first render has a black border
8
9
## 10.0.0
10
11
- ### Breaking changes
Fluent.Ribbon/Controls/RibbonTabControl.cs
@@ -867,7 +867,10 @@ public void SelectFirstTab()
867
this.SelectedItem = this.GetFirstVisibleItem();
868
}
869
870
- this.SelectedTabItem?.Focus();
+ if (this.IsKeyboardFocusWithin)
871
+ {
872
+ this.SelectedTabItem?.Focus();
873
+ }
874
875
876
// Handles IsMinimized changed
0 commit comments