diff options
author | richard <none@none> | 2010-01-06 17:53:57 -0800 |
---|---|---|
committer | richard <none@none> | 2010-01-06 17:53:57 -0800 |
commit | ae274182a9902e912af61cf423dbadcbb378a175 (patch) | |
tree | 1f1e1158eaf4840d5e7ec40accb25a1d73885acf /indra/newview | |
parent | e28eac929b8d26d133be5c1953cfdd0b7d0eb9e5 (diff) |
ext-4011 - sped up appearance of inspector affordances
reviewed by Erica
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/lltoolpie.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/newview/lltoolpie.cpp b/indra/newview/lltoolpie.cpp index 9ee848e30f..9d796d7299 100644 --- a/indra/newview/lltoolpie.cpp +++ b/indra/newview/lltoolpie.cpp @@ -735,6 +735,7 @@ BOOL LLToolPie::handleToolTip(S32 local_x, S32 local_y, MASK mask) p.click_callback(boost::bind(showAvatarInspector, hover_object->getID())); p.visible_time_near(6.f); p.visible_time_far(3.f); + p.delay_time(0.35f); p.wrap(false); LLToolTipMgr::instance().show(p); @@ -830,6 +831,7 @@ BOOL LLToolPie::handleToolTip(S32 local_x, S32 local_y, MASK mask) p.click_homepage_callback(boost::bind(VisitHomePage, mHoverPick)); p.visible_time_near(6.f); p.visible_time_far(3.f); + p.delay_time(0.35f); p.wrap(false); LLToolTipMgr::instance().show(p); |