diff --git a/Terminal.Gui/Views/TabView.cs b/Terminal.Gui/Views/TabView.cs index 8c0905b30..1baf85993 100644 --- a/Terminal.Gui/Views/TabView.cs +++ b/Terminal.Gui/Views/TabView.cs @@ -466,33 +466,6 @@ namespace Terminal.Gui { Width = Dim.Fill (); } - /// - /// Positions the cursor at the start of the currently selected tab - /// - public override void PositionCursor () - { - base.PositionCursor (); - - var selected = host.CalculateViewport (Bounds).FirstOrDefault (t => Equals (host.SelectedTab, t.Tab)); - - if (selected == null) { - return; - } - - int y; - - if (host.Style.TabsOnBottom) { - y = 1; - } else { - y = host.Style.ShowTopLine ? 1 : 0; - } - - Move (selected.X, y); - - - - } - public override bool OnEnter (View view) { Driver.SetCursorVisibility (CursorVisibility.Invisible);