mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-07-21 00:45:52 +00:00
Update specter
This commit is contained in:
parent
adcdf849fa
commit
de3ccfadd0
@ -76,7 +76,7 @@ void SplashScreen::mouseDown(const boo::SWindowCoord& coord, boo::EMouseButton b
|
|||||||
{
|
{
|
||||||
if (skipBuildInAnimation())
|
if (skipBuildInAnimation())
|
||||||
return;
|
return;
|
||||||
if (m_fileBrowser.m_view)
|
if (m_fileBrowser.m_view && !m_fileBrowser.m_view->closed())
|
||||||
m_fileBrowser.m_view->mouseDown(coord, button, mod);
|
m_fileBrowser.m_view->mouseDown(coord, button, mod);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -88,7 +88,7 @@ void SplashScreen::mouseDown(const boo::SWindowCoord& coord, boo::EMouseButton b
|
|||||||
|
|
||||||
void SplashScreen::mouseUp(const boo::SWindowCoord& coord, boo::EMouseButton button, boo::EModifierKey mod)
|
void SplashScreen::mouseUp(const boo::SWindowCoord& coord, boo::EMouseButton button, boo::EModifierKey mod)
|
||||||
{
|
{
|
||||||
if (m_fileBrowser.m_view)
|
if (m_fileBrowser.m_view && !m_fileBrowser.m_view->closed())
|
||||||
m_fileBrowser.m_view->mouseUp(coord, button, mod);
|
m_fileBrowser.m_view->mouseUp(coord, button, mod);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -100,7 +100,7 @@ void SplashScreen::mouseUp(const boo::SWindowCoord& coord, boo::EMouseButton but
|
|||||||
|
|
||||||
void SplashScreen::mouseMove(const boo::SWindowCoord& coord)
|
void SplashScreen::mouseMove(const boo::SWindowCoord& coord)
|
||||||
{
|
{
|
||||||
if (m_fileBrowser.m_view)
|
if (m_fileBrowser.m_view && !m_fileBrowser.m_view->closed())
|
||||||
m_fileBrowser.m_view->mouseMove(coord);
|
m_fileBrowser.m_view->mouseMove(coord);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -112,7 +112,7 @@ void SplashScreen::mouseMove(const boo::SWindowCoord& coord)
|
|||||||
|
|
||||||
void SplashScreen::mouseEnter(const boo::SWindowCoord& coord)
|
void SplashScreen::mouseEnter(const boo::SWindowCoord& coord)
|
||||||
{
|
{
|
||||||
if (m_fileBrowser.m_view)
|
if (m_fileBrowser.m_view && !m_fileBrowser.m_view->closed())
|
||||||
m_fileBrowser.m_view->mouseEnter(coord);
|
m_fileBrowser.m_view->mouseEnter(coord);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -124,7 +124,7 @@ void SplashScreen::mouseEnter(const boo::SWindowCoord& coord)
|
|||||||
|
|
||||||
void SplashScreen::mouseLeave(const boo::SWindowCoord& coord)
|
void SplashScreen::mouseLeave(const boo::SWindowCoord& coord)
|
||||||
{
|
{
|
||||||
if (m_fileBrowser.m_view)
|
if (m_fileBrowser.m_view && !m_fileBrowser.m_view->closed())
|
||||||
m_fileBrowser.m_view->mouseLeave(coord);
|
m_fileBrowser.m_view->mouseLeave(coord);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit 66bb135fbb8cec3dae31e849d52a5cf652820bb2
|
Subproject commit 30499d2ddfed030c7ce4c091277813b59854a3b6
|
Loading…
x
Reference in New Issue
Block a user