summaryrefslogtreecommitdiff
path: root/indra/llcommon/llclickaction.h
diff options
context:
space:
mode:
authorangela <angela@lindenlab.com>2009-11-19 15:02:05 +0800
committerangela <angela@lindenlab.com>2009-11-19 15:02:05 +0800
commitb6ad65c04edc6e79637bf8ac9daf40b3654d80a6 (patch)
treee299265bc9fb33ca937ed3445703f83a28b1b877 /indra/llcommon/llclickaction.h
parent6e5f529a7adb53fa021986aed6e6b1b229cc0efd (diff)
EXT-2094 Add click-to-zoom as a one-click settable option for objects
Diffstat (limited to 'indra/llcommon/llclickaction.h')
-rw-r--r--indra/llcommon/llclickaction.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/indra/llcommon/llclickaction.h b/indra/llcommon/llclickaction.h
index 29c4df8df2..d4ffbf8634 100644
--- a/indra/llcommon/llclickaction.h
+++ b/indra/llcommon/llclickaction.h
@@ -33,16 +33,15 @@
#ifndef LL_LLCLICKACTION_H
#define LL_LLCLICKACTION_H
-
+// DO NOT CHANGE THE SEQUENCE OF THIS LIST!!
const U8 CLICK_ACTION_NONE = 0;
const U8 CLICK_ACTION_TOUCH = 0;
const U8 CLICK_ACTION_SIT = 1;
const U8 CLICK_ACTION_BUY = 2;
const U8 CLICK_ACTION_PAY = 3;
const U8 CLICK_ACTION_OPEN = 4;
-const U8 CLICK_ACTION_ZOOM = 5;
-const U8 CLICK_ACTION_PLAY = 6;
-const U8 CLICK_ACTION_OPEN_MEDIA = 7;
-
-
+const U8 CLICK_ACTION_PLAY = 5;
+const U8 CLICK_ACTION_OPEN_MEDIA = 6;
+const U8 CLICK_ACTION_ZOOM = 7;
+// DO NOT CHANGE THE SEQUENCE OF THIS LIST!!
#endif