Code style fix
This commit is contained in:
@@ -899,8 +899,10 @@ namespace FlaxEditor.Windows
|
|||||||
public override bool OnMouseDown(Float2 location, MouseButton button)
|
public override bool OnMouseDown(Float2 location, MouseButton button)
|
||||||
{
|
{
|
||||||
// Navigate through directories using the side mouse buttons
|
// Navigate through directories using the side mouse buttons
|
||||||
if (button == MouseButton.Extended1) NavigateBackward();
|
if (button == MouseButton.Extended1)
|
||||||
else if (button == MouseButton.Extended2) NavigateForward();
|
NavigateBackward();
|
||||||
|
else if (button == MouseButton.Extended2)
|
||||||
|
NavigateForward();
|
||||||
|
|
||||||
return base.OnMouseDown(location, button);
|
return base.OnMouseDown(location, button);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user