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
E
ElvUI
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Hekili
ElvUI
Commits
5a8fdcd3
Verified
Commit
5a8fdcd3
authored
Mar 14, 2019
by
Simpy
🐹
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'development'
# Conflicts: # CHANGELOG.md
parents
f05c861b
c4bee397
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
16 deletions
+6
-16
ElvUI/Core/Toolkit.lua
ElvUI/Core/Toolkit.lua
+2
-3
ElvUI/ElvUI.toc
ElvUI/ElvUI.toc
+1
-1
ElvUI/Layout/Layout.lua
ElvUI/Layout/Layout.lua
+2
-0
ElvUI/Modules/Skins/Blizzard/LFG.lua
ElvUI/Modules/Skins/Blizzard/LFG.lua
+0
-6
ElvUI/Modules/Skins/Skins.lua
ElvUI/Modules/Skins/Skins.lua
+0
-5
ElvUI/Settings/Global.lua
ElvUI/Settings/Global.lua
+1
-1
No files found.
ElvUI/Core/Toolkit.lua
View file @
5a8fdcd3
...
...
@@ -47,10 +47,9 @@ local function customSetBackdrop(frame, giveBorder, bgFile, edgeSize, insetLeft,
frame
.
pixelBorders
.
RIGHT
:
SetWidth
(
edgeSize
)
end
local
function
customBackdropColor
(
frame
,
r
,
g
,
b
,
a
,
skip
)
if
frame
.
pixelBorders
and
skip
~=
'ElvUI'
then
local
function
customBackdropColor
(
frame
,
r
,
g
,
b
,
a
)
if
frame
.
pixelBorders
then
frame
.
pixelBorders
.
CENTER
:
SetVertexColor
(
r
,
g
,
b
,
a
)
frame
:
SetBackdropColor
(
r
,
g
,
b
,
0
,
'ElvUI'
)
end
end
...
...
ElvUI/ElvUI.toc
View file @
5a8fdcd3
## Interface: 80100
## Author: Elv
## Version: 11.0
4
## Version: 11.0
5
## Title: |cfffe7b2cElvUI|r
## Notes: User Interface replacement AddOn for World of Warcraft.
## SavedVariables: ElvDB, ElvPrivateDB
...
...
ElvUI/Layout/Layout.lua
View file @
5a8fdcd3
...
...
@@ -325,6 +325,7 @@ function LO:CreateChatPanels()
lchat
:
Size
(
E
.
db
.
chat
.
panelWidth
,
E
.
db
.
chat
.
panelHeight
)
lchat
:
Point
(
'BOTTOMLEFT'
,
E
.
UIParent
,
4
,
4
)
lchat
:
CreateBackdrop
(
'Transparent'
)
lchat
.
backdrop
.
ignoreBackdropColors
=
true
lchat
.
backdrop
:
SetAllPoints
()
E
:
CreateMover
(
lchat
,
"LeftChatMover"
,
L
[
"Left Chat"
],
nil
,
nil
,
nil
,
nil
,
nil
,
'chat,general'
)
local
LeftChatPanel
=
_G
.
LeftChatPanel
...
...
@@ -384,6 +385,7 @@ function LO:CreateChatPanels()
rchat
:
Size
(
E
.
db
.
chat
.
separateSizes
and
E
.
db
.
chat
.
panelWidthRight
or
E
.
db
.
chat
.
panelWidth
,
E
.
db
.
chat
.
separateSizes
and
E
.
db
.
chat
.
panelHeightRight
or
E
.
db
.
chat
.
panelHeight
)
rchat
:
Point
(
'BOTTOMRIGHT'
,
E
.
UIParent
,
-
4
,
4
)
rchat
:
CreateBackdrop
(
'Transparent'
)
rchat
.
backdrop
.
ignoreBackdropColors
=
true
rchat
.
backdrop
:
SetAllPoints
()
E
:
CreateMover
(
rchat
,
"RightChatMover"
,
L
[
"Right Chat"
],
nil
,
nil
,
nil
,
nil
,
nil
,
'chat,general'
)
local
RightChatPanel
=
_G
.
RightChatPanel
...
...
ElvUI/Modules/Skins/Blizzard/LFG.lua
View file @
5a8fdcd3
...
...
@@ -153,12 +153,6 @@ local function LoadSkin()
end
end
)
hooksecurefunc
(
_G
.
LFGDungeonReadyDialog
,
"SetBackdrop"
,
function
(
self
,
backdrop
)
if
backdrop
.
bgFile
~=
E
.
media
.
blankTex
then
self
:
SetTemplate
(
"Transparent"
)
end
end
)
hooksecurefunc
(
"LFGDungeonReadyStatusIndividual_UpdateIcon"
,
function
(
button
)
local
_
,
role
=
GetLFGProposalMember
(
button
:
GetID
())
...
...
ElvUI/Modules/Skins/Skins.lua
View file @
5a8fdcd3
...
...
@@ -706,11 +706,6 @@ function S:HandleSliderFrame(frame)
frame
:
StripTextures
()
frame
:
CreateBackdrop
()
frame
.
backdrop
:
SetAllPoints
()
hooksecurefunc
(
frame
,
"SetBackdrop"
,
function
(
slider
,
backdrop
)
if
backdrop
~=
nil
then
slider
:
SetBackdrop
(
nil
)
end
end
)
frame
:
SetThumbTexture
(
E
.
Media
.
Textures
.
Melli
)
local
thumb
=
frame
:
GetThumbTexture
()
...
...
ElvUI/Settings/Global.lua
View file @
5a8fdcd3
...
...
@@ -3,7 +3,7 @@ local E, L, V, P, G = unpack(select(2, ...)); --Import: Engine, Locales, Private
--Global Settings
G
.
general
=
{
UIScale
=
0
.
64
,
version
=
11
.
0
4
,
version
=
11
.
0
5
,
eyefinity
=
false
,
smallerWorldMap
=
true
,
smallerWorldMapScale
=
0
.
9
,
...
...
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