Fix not being able to drag a window tab all of the way to the right.
This commit is contained in:
@@ -629,7 +629,7 @@ namespace FlaxEditor.GUI.Docking
|
|||||||
|
|
||||||
internal void MoveTabRight(int index)
|
internal void MoveTabRight(int index)
|
||||||
{
|
{
|
||||||
if (index < _tabs.Count - 2)
|
if (index < _tabs.Count - 1)
|
||||||
{
|
{
|
||||||
var tab = _tabs[index];
|
var tab = _tabs[index];
|
||||||
_tabs.RemoveAt(index);
|
_tabs.RemoveAt(index);
|
||||||
|
|||||||
Reference in New Issue
Block a user