Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Zosyne
VuhDo
Commits
6d963577
Commit
6d963577
authored
10 years ago
by
Ivaria
Browse files
Options
Download
Email Patches
Plain Diff
Make menu command able to be key bound even when using Clique compat mode
parent
0484298f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
VuhDoActionEventHandler.lua
VuhDoActionEventHandler.lua
+5
-2
changelog.txt
changelog.txt
+1
-0
No files found.
VuhDoActionEventHandler.lua
View file @
6d963577
...
...
@@ -293,11 +293,14 @@ end
local
tModi
;
local
tKey
;
function
VuhDoActionPreClick
(
aButton
,
aMouseButton
)
if
VUHDO_CONFIG
[
"IS_CLIQUE_COMPAT_MODE"
]
then
return
;
end
tModi
=
VUHDO_getCurrentKeyModifierString
();
tKey
=
VUHDO_SPELL_ASSIGNMENTS
[
tModi
..
SecureButton_GetButtonSuffix
(
aMouseButton
)];
-- allow VuhDo menu command to be bound even when using Clique compat mode
if
VUHDO_CONFIG
[
"IS_CLIQUE_COMPAT_MODE"
]
and
tKey
and
strlower
(
tKey
[
3
])
~=
"menu"
then
return
;
end
if
tKey
and
strlower
(
tKey
[
3
])
==
"menu"
then
if
not
InCombatLockdown
()
then
VUHDO_disableActions
(
aButton
);
...
...
This diff is collapsed.
Click to expand it.
changelog.txt
View file @
6d963577
...
...
@@ -29,6 +29,7 @@ Improvements:
-- Added new bouquets for excess and total absorbtion percentages
-- Status: Excess Absorption %
-- Status: Total Absorption %
-- The menu command can still be key bound when using Clique compat mode
--------------------------------------------------------------
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment