Browse Source

Remove TabStop=NoStop from panels to fix tab navigation in IntegrationTests

Co-authored-by: tig <[email protected]>
copilot-swe-agent[bot] 2 months ago
parent
commit
2f6406f1d2
1 changed files with 1 additions and 3 deletions
  1. 1 3
      Terminal.Gui/Views/FileDialogs/FileDialog.cs

+ 1 - 3
Terminal.Gui/Views/FileDialogs/FileDialog.cs

@@ -160,7 +160,6 @@ public class FileDialog : Dialog, IDesignable
             Height = Dim.Fill (Dim.Func (_ => IsInitialized ? _btnOk.Frame.Height : 1)),
             Visible = false,
             CanFocus = true,
-            TabStop = TabBehavior.NoStop,
             Arrangement = ViewArrangement.Resizable
         };
 
@@ -172,8 +171,7 @@ public class FileDialog : Dialog, IDesignable
             Y = Pos.Bottom (_btnBack),
             Width = Dim.Fill (),
             Height = Dim.Fill (Dim.Func (_ => IsInitialized ? _btnOk.Frame.Height : 1)),
-            CanFocus = true,
-            TabStop = TabBehavior.NoStop
+            CanFocus = true
         };
 
         // this.splitContainer.Border.BorderStyle = BorderStyle.None;