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
Luna Nova
VuhDo
Commits
839cb3c8
Commit
839cb3c8
authored
6 years ago
by
Ivaria
Browse files
Options
Download
Email Patches
Plain Diff
Fixed assignment of remapped spells when dragging from spell book
parent
e77ee95c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
VuhDoOptions/VuhDoLookAndFeel.lua
VuhDoOptions/VuhDoLookAndFeel.lua
+5
-1
changelog.txt
changelog.txt
+1
-0
No files found.
VuhDoOptions/VuhDoLookAndFeel.lua
View file @
839cb3c8
...
...
@@ -1120,12 +1120,16 @@ end
--
function
VUHDO_lnfEditboxReceivedDrag
(
anEditBox
)
local
tName
=
nil
;
local
tType
,
tId
,
tId2
=
GetCursorInfo
();
local
tType
,
tId
,
tId2
,
tId3
=
GetCursorInfo
();
if
"item"
==
tType
then
tName
=
GetItemInfo
(
tId
)
;
elseif
"spell"
==
tType
then
tName
=
GetSpellBookItemName
(
tId
,
tId2
);
if
not
tName
then
tName
=
GetSpellInfo
(
tId3
);
end
elseif
"macro"
==
tType
then
tName
=
GetMacroInfo
(
tId
);
end
...
...
This diff is collapsed.
Click to expand it.
changelog.txt
View file @
839cb3c8
...
...
@@ -13,6 +13,7 @@ Bugfixes:
-- Fixed vertical health bar display for units w/o a power bar
-- Fixed mana bar display after specialization activation
-- Fixed apostrophe issue for Priest 'Shadow Mend' in French language
-- Fixed assignment of remapped spells when dragging from spell book
Improvements:
...
...
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