From ae5e41fd6bd954e13668ef4c7d2c08d03fa2d4c7 Mon Sep 17 00:00:00 2001 From: BDisp Date: Wed, 27 Mar 2024 00:17:31 +0000 Subject: [PATCH] Fixes #3351. TabIndex with the same setter value but with wrong index return without set the correct value. --- Terminal.Gui/View/ViewKeyboard.cs | 2 +- UnitTests/View/NavigationTests.cs | 47 +++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+), 1 deletion(-) diff --git a/Terminal.Gui/View/ViewKeyboard.cs b/Terminal.Gui/View/ViewKeyboard.cs index 409f7de64..52aa07da9 100644 --- a/Terminal.Gui/View/ViewKeyboard.cs +++ b/Terminal.Gui/View/ViewKeyboard.cs @@ -267,7 +267,7 @@ public partial class View return; } - if (_tabIndex == value) + if (_tabIndex == value && TabIndexes.IndexOf (this) == value) { return; } diff --git a/UnitTests/View/NavigationTests.cs b/UnitTests/View/NavigationTests.cs index 3d1e6611c..653c447ef 100644 --- a/UnitTests/View/NavigationTests.cs +++ b/UnitTests/View/NavigationTests.cs @@ -1290,6 +1290,53 @@ public class NavigationTests r.Dispose (); } + [Fact] + public void TabIndex_Invert_Order () + { + var r = new View (); + var v1 = new View () { Id = "1", CanFocus = true }; + var v2 = new View () { Id = "2", CanFocus = true }; + var v3 = new View () { Id = "3", CanFocus = true }; + + r.Add (v1, v2, v3); + + v1.TabIndex = 2; + v2.TabIndex = 1; + v3.TabIndex = 0; + Assert.True (r.TabIndexes.IndexOf (v1) == 2); + Assert.True (r.TabIndexes.IndexOf (v2) == 1); + Assert.True (r.TabIndexes.IndexOf (v3) == 0); + + Assert.True (r.Subviews.IndexOf (v1) == 0); + Assert.True (r.Subviews.IndexOf (v2) == 1); + Assert.True (r.Subviews.IndexOf (v3) == 2); + } + + [Fact] + public void TabIndex_Invert_Order_Mixed () + { + var r = new View (); + var vl1 = new View () { Id = "vl1" }; + var v1 = new View () { Id = "v1", CanFocus = true }; + var vl2 = new View () { Id = "vl2" }; + var v2 = new View () { Id = "v2", CanFocus = true }; + var vl3 = new View () { Id = "vl3" }; + var v3 = new View () { Id = "v3", CanFocus = true }; + + r.Add (vl1, v1, vl2, v2, vl3, v3); + + v1.TabIndex = 2; + v2.TabIndex = 1; + v3.TabIndex = 0; + Assert.True (r.TabIndexes.IndexOf (v1) == 4); + Assert.True (r.TabIndexes.IndexOf (v2) == 2); + Assert.True (r.TabIndexes.IndexOf (v3) == 0); + + Assert.True (r.Subviews.IndexOf (v1) == 1); + Assert.True (r.Subviews.IndexOf (v2) == 3); + Assert.True (r.Subviews.IndexOf (v3) == 5); + } + [Fact] public void TabStop_All_False_And_All_True_And_Changing_TabStop_Later () {