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

Co-authored-by: tig <585482+tig@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-10-02 15:28:38 +00:00
parent 932e3f3250
commit 2f6406f1d2

View File

@@ -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;