mirror of https://github.com/AxioDL/metaforce.git
Minor type fix
This commit is contained in:
parent
c43840fb3b
commit
c38e4dd101
|
@ -7,7 +7,7 @@
|
|||
|
||||
namespace Specter
|
||||
{
|
||||
struct ISplitSpaceController;
|
||||
struct ISpaceController;
|
||||
|
||||
struct IViewManager
|
||||
{
|
||||
|
@ -21,7 +21,7 @@ public:
|
|||
return vor;
|
||||
}
|
||||
|
||||
virtual void deferSpaceSplit(ISplitSpaceController* split, SplitView::Axis axis, int thisSlot) {}
|
||||
virtual void deferSpaceSplit(ISpaceController* split, SplitView::Axis axis, int thisSlot) {}
|
||||
|
||||
virtual const std::vector<HECL::SystemString>* recentProjects() const {return nullptr;}
|
||||
virtual void pushRecentProject(const HECL::SystemString& path) {}
|
||||
|
|
|
@ -150,7 +150,6 @@ void Space::mouseMove(const boo::SWindowCoord& coord)
|
|||
if (m_cornerDrag)
|
||||
{
|
||||
float pf = rootView().viewRes().pixelFactor();
|
||||
ISplitSpaceController* cornerDragSplitSpace = nullptr;
|
||||
if (m_cornerView.m_view->m_flip)
|
||||
{
|
||||
if (coord.pixel[0] < m_cornerDragPoint[0] - CORNER_DRAG_THRESHOLD * pf)
|
||||
|
|
Loading…
Reference in New Issue