From 93503a84514444fb094924bcc9bfac35e4eaf8fb Mon Sep 17 00:00:00 2001 From: auria Date: Sat, 1 Jan 2011 23:49:46 +0000 Subject: [PATCH] Better handle filler ribbon items git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@7212 178a84e3-b1eb-0310-8ba1-8eac791a3b58 --- src/guiengine/skin.cpp | 3 +++ src/states_screens/challenges.cpp | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/guiengine/skin.cpp b/src/guiengine/skin.cpp index e59251e50..3285358c2 100644 --- a/src/guiengine/skin.cpp +++ b/src/guiengine/skin.cpp @@ -813,6 +813,9 @@ void Skin::drawRibbonChild(const core::rect< s32 > &rect, Widget* widget, const { if (use_glow) { + // don't mark filler items as focused + if (widget->m_properties[PROP_ID] == RibbonWidget::NO_ITEM_ID) return; + int grow = 45; static float glow_effect = 0; diff --git a/src/states_screens/challenges.cpp b/src/states_screens/challenges.cpp index 80b2f3416..e60c91bc0 100644 --- a/src/states_screens/challenges.cpp +++ b/src/states_screens/challenges.cpp @@ -128,7 +128,7 @@ void ChallengesScreen::eventCallback(GUIEngine::Widget* widget, const std::strin { unlock_manager->playLockSound(); } - else if (!selection.empty()) + else if (!selection.empty() && selection != RibbonWidget::NO_ITEM_ID) { //FIXME: simplify and centralize race start sequence!!