Commit c67ca879 authored by Ivaria's avatar Ivaria
Browse files

-- Anchor VuhDo Options frame to top of the screen

--  Note: Still working on a real fix to the frame moving bug in 8.2
parent 8d0d0d04
## Interface: 80200
## Title: VuhDo ['vu:du:]
## Author: Iza@Gilneas, humfras, Ivaria@Hyjal
## Version: 3.103
## Version: 3.104
## Notes: Raid Frames providing click-heal functionality, buff and debuff control, main tank management and much more
## SavedVariablesPerCharacter: VUHDO_CONFIG, VUHDO_PANEL_SETUP, VUHDO_SPELL_ASSIGNMENTS, VUHDO_HOSTILE_SPELL_ASSIGNMENTS, VUHDO_MM_SETTINGS, VUHDO_PLAYER_TARGETS, VUHDO_MAINTANK_NAMES, VUHDO_BUFF_SETTINGS, VUHDO_POWER_TYPE_COLORS, VUHDO_SPELLS_KEYBOARD, VUHDO_SPELL_CONFIG, VUHDO_BUFF_ORDER, VUHDO_SPEC_LAYOUTS, VUHDO_GROUP_SIZE, VUHDO_RAID, VUHDO_INDICATOR_CONFIG
## SavedVariables: VUHDO_DEFAULT_LAYOUT, VUHDO_DEFAULT_PROFILE, VUHDO_PROFILES, VUHDO_MANUAL_ROLES, VUHDO_SPELL_LAYOUTS, VUHDO_USER_CLASS_COLORS, VUHDO_DEBUFF_BLACKLIST, VUHDO_BOUQUETS, VUHDO_COMBAT_LOG_TRACE, VUHDO_GLOBAL_CONFIG, VUHDO_DEBUG
......
......@@ -17,6 +17,8 @@ VUHDO_IS_CONFIG = false;
--
function VUHDO_tabbedFrameOnMouseDown(aPanel)
-- 8.2 introduced a bug that renders VuhDo Options useless when the main frame is moved
-- disable moving the options frame for now
--aPanel:StartMoving();
end
......@@ -24,6 +26,8 @@ end
--
function VUHDO_tabbedFrameOnMouseUp(aPanel)
-- 8.2 introduced a bug that renders VuhDo Options useless when the main frame is moved
-- disable moving the options frame for now
--aPanel:StopMovingOrSizing();
end
......
......@@ -251,6 +251,11 @@
<OnMouseDown>VUHDO_tabbedFrameOnMouseDown(self)</OnMouseDown>
<OnMouseUp>VUHDO_tabbedFrameOnMouseUp(self)</OnMouseUp>
<OnShow>
-- 8.2 introduced a bug that renders VuhDo Options useless when the main frame is moved
-- force the frame position to center top of the screen for now
self:ClearAllPoints();
self:SetPoint("TOP", "UIParent", "TOP", 0, -15);
self:SetScale(VUHDO_OPTIONS_SETTINGS.scale);
VuhDoNewOptionsScaleSlider:Show();
VuhDoNewOptionsPanelBarsTexturePanelTextureSliderSlider:SetMinMaxValues(1, #VUHDO_STATUS_BARS);
......
## Interface: 80200
## Title: VuhDo ['vu:du:] - Options
## Author: Iza@Gilneas, humfras, Ivaria@Hyjal
## Version: 3.103
## Version: 3.104
## Notes: VuhDo Options
## SavedVariables: VUHDO_OPTIONS_SETTINGS
## SavedVariablesPerCharacter: VUHDO_GLOBAL_ICONS, VUHDO_GI_SCAN_IDX
......
Version 3.104
Known issues:
-- BfA stat squish cleanup still a work in progress
-- AOE Advice spell equations need complete overhaul
-- Some text providers need changes to better display small numbers
-- Debuff tooltips are currently bugged when using ElvUI
-- Deselect 'VuhDo Options > Panels > Tooltips > Tooltips > Debuffs'
-- VuhDo Options frame cannot be moved due to a bug introduced in 8.2
Bugfixes:
-- Anchor VuhDo Options frame to top of the screen
-- Note: Still working on a real fix to the frame moving bug in 8.2
Improvements:
--------------------------------------------------------------
Version 3.103
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment