diff options
| author | Richard Linden <none@none> | 2010-03-09 13:27:26 -0800 |
|---|---|---|
| committer | Richard Linden <none@none> | 2010-03-09 13:27:26 -0800 |
| commit | e5c4438fd7f08c3e469ed2870dd7f840938ec996 (patch) | |
| tree | e23d5ee758740eb6dcdc47eb8c8e2957f0dbf014 /indra/newview/lltoolpie.cpp | |
| parent | 6f5877e3e549fd42d0a973ccb19ade6a1ee2c392 (diff) | |
| parent | d7b35ee623dea35c6a8c9cc8b8c1a9c050eb9def (diff) | |
merge
Diffstat (limited to 'indra/newview/lltoolpie.cpp')
| -rw-r--r-- | indra/newview/lltoolpie.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/newview/lltoolpie.cpp b/indra/newview/lltoolpie.cpp index fb78b6a415..51a31f0725 100644 --- a/indra/newview/lltoolpie.cpp +++ b/indra/newview/lltoolpie.cpp @@ -412,24 +412,24 @@ ECursorType cursor_from_object(LLViewerObject* object) case CLICK_ACTION_SIT: if ((gAgent.getAvatarObject() != NULL) && (!gAgent.getAvatarObject()->isSitting())) // not already sitting? { - cursor = UI_CURSOR_HAND; + cursor = UI_CURSOR_TOOLSIT; } break; case CLICK_ACTION_BUY: - cursor = UI_CURSOR_HAND; + cursor = UI_CURSOR_TOOLBUY; break; case CLICK_ACTION_OPEN: // Open always opens the parent. if (parent && parent->allowOpen()) { - cursor = UI_CURSOR_HAND; + cursor = UI_CURSOR_TOOLOPEN; } break; case CLICK_ACTION_PAY: if ((object && object->flagTakesMoney()) || (parent && parent->flagTakesMoney())) { - cursor = UI_CURSOR_HAND; + cursor = UI_CURSOR_TOOLBUY; } break; case CLICK_ACTION_ZOOM: |
