Update specter

This commit is contained in:
Jack Andersen 2015-12-22 14:26:30 -10:00
parent adcdf849fa
commit de3ccfadd0
2 changed files with 6 additions and 6 deletions

View File

@ -76,7 +76,7 @@ void SplashScreen::mouseDown(const boo::SWindowCoord& coord, boo::EMouseButton b
{
if (skipBuildInAnimation())
return;
if (m_fileBrowser.m_view)
if (m_fileBrowser.m_view && !m_fileBrowser.m_view->closed())
m_fileBrowser.m_view->mouseDown(coord, button, mod);
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)
{
if (m_fileBrowser.m_view)
if (m_fileBrowser.m_view && !m_fileBrowser.m_view->closed())
m_fileBrowser.m_view->mouseUp(coord, button, mod);
else
{
@ -100,7 +100,7 @@ void SplashScreen::mouseUp(const boo::SWindowCoord& coord, boo::EMouseButton but
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);
else
{
@ -112,7 +112,7 @@ void SplashScreen::mouseMove(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);
else
{
@ -124,7 +124,7 @@ void SplashScreen::mouseEnter(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);
else
{

@ -1 +1 @@
Subproject commit 66bb135fbb8cec3dae31e849d52a5cf652820bb2
Subproject commit 30499d2ddfed030c7ce4c091277813b59854a3b6