fixed left/right keys selecting kart/track

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/branches/irrlicht@3554 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
auria
2009-05-30 19:02:53 +00:00
parent dc84e15685
commit 4601dfcc8a

View File

@@ -969,6 +969,9 @@ bool RibbonGridWidget::rightPressed()
updateLabel();
propagateSelection();
}
if(m_rows[0].m_ribbon_type == RIBBON_TOOLBAR) return false;
return true;
}
// -----------------------------------------------------------------------------
@@ -982,6 +985,9 @@ bool RibbonGridWidget::leftPressed()
updateLabel();
propagateSelection();
}
if(m_rows[0].m_ribbon_type == RIBBON_TOOLBAR) return false;
return true;
}
// -----------------------------------------------------------------------------