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
P
ProjectAzilroka
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
15
Issues
15
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Azilroka
ProjectAzilroka
Commits
f13975c0
Commit
f13975c0
authored
Oct 15, 2020
by
Simpy
🐹
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SharedMediaWidgets from ElvUI
parent
f17ad209
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
7 deletions
+7
-7
Libs/AceGUI-3.0-SharedMediaWidgets/BackgroundWidget.lua
Libs/AceGUI-3.0-SharedMediaWidgets/BackgroundWidget.lua
+1
-1
Libs/AceGUI-3.0-SharedMediaWidgets/BorderWidget.lua
Libs/AceGUI-3.0-SharedMediaWidgets/BorderWidget.lua
+1
-1
Libs/AceGUI-3.0-SharedMediaWidgets/FontWidget.lua
Libs/AceGUI-3.0-SharedMediaWidgets/FontWidget.lua
+1
-1
Libs/AceGUI-3.0-SharedMediaWidgets/SoundWidget.lua
Libs/AceGUI-3.0-SharedMediaWidgets/SoundWidget.lua
+1
-1
Libs/AceGUI-3.0-SharedMediaWidgets/StatusbarWidget.lua
Libs/AceGUI-3.0-SharedMediaWidgets/StatusbarWidget.lua
+1
-1
Libs/AceGUI-3.0-SharedMediaWidgets/prototypes.lua
Libs/AceGUI-3.0-SharedMediaWidgets/prototypes.lua
+2
-2
No files found.
Libs/AceGUI-3.0-SharedMediaWidgets/BackgroundWidget.lua
View file @
f13975c0
...
...
@@ -8,7 +8,7 @@ local AGSMW = LibStub("AceGUISharedMediaWidgets-1.0")
do
local
widgetType
=
"LSM30_Background"
local
widgetVersion
=
1
1
local
widgetVersion
=
1
2
local
contentFrameCache
=
{}
local
function
ReturnSelf
(
self
)
...
...
Libs/AceGUI-3.0-SharedMediaWidgets/BorderWidget.lua
View file @
f13975c0
...
...
@@ -8,7 +8,7 @@ local AGSMW = LibStub("AceGUISharedMediaWidgets-1.0")
do
local
widgetType
=
"LSM30_Border"
local
widgetVersion
=
1
1
local
widgetVersion
=
1
2
local
contentFrameCache
=
{}
local
function
ReturnSelf
(
self
)
...
...
Libs/AceGUI-3.0-SharedMediaWidgets/FontWidget.lua
View file @
f13975c0
...
...
@@ -8,7 +8,7 @@ local AGSMW = LibStub("AceGUISharedMediaWidgets-1.0")
do
local
widgetType
=
"LSM30_Font"
local
widgetVersion
=
1
1
local
widgetVersion
=
1
2
local
contentFrameCache
=
{}
local
function
ReturnSelf
(
self
)
...
...
Libs/AceGUI-3.0-SharedMediaWidgets/SoundWidget.lua
View file @
f13975c0
...
...
@@ -8,7 +8,7 @@ local AGSMW = LibStub("AceGUISharedMediaWidgets-1.0")
do
local
widgetType
=
"LSM30_Sound"
local
widgetVersion
=
1
1
local
widgetVersion
=
1
2
local
contentFrameCache
=
{}
local
function
ReturnSelf
(
self
)
...
...
Libs/AceGUI-3.0-SharedMediaWidgets/StatusbarWidget.lua
View file @
f13975c0
...
...
@@ -8,7 +8,7 @@ local AGSMW = LibStub("AceGUISharedMediaWidgets-1.0")
do
local
widgetType
=
"LSM30_Statusbar"
local
widgetVersion
=
1
1
local
widgetVersion
=
1
2
local
contentFrameCache
=
{}
local
function
ReturnSelf
(
self
)
...
...
Libs/AceGUI-3.0-SharedMediaWidgets/prototypes.lua
View file @
f13975c0
...
...
@@ -205,7 +205,7 @@ do
if
next
(
DropDownCache
)
then
frame
=
table.remove
(
DropDownCache
)
else
frame
=
CreateFrame
(
"Frame"
,
nil
,
UIParent
)
frame
=
CreateFrame
(
"Frame"
,
nil
,
UIParent
,
"BackdropTemplate"
)
frame
:
SetClampedToScreen
(
true
)
frame
:
SetWidth
(
188
)
frame
:
SetBackdrop
(
frameBackdrop
)
...
...
@@ -235,7 +235,7 @@ do
frame
.
ClearFrames
=
ClearFrames
frame
.
contentRepo
=
{}
-- store all our frames in here so we can get rid of them later
local
slider
=
CreateFrame
(
"Slider"
,
nil
,
scrollframe
)
local
slider
=
CreateFrame
(
"Slider"
,
nil
,
scrollframe
,
"BackdropTemplate"
)
slider
:
SetOrientation
(
"VERTICAL"
)
slider
:
SetPoint
(
"TOPRIGHT"
,
frame
,
"TOPRIGHT"
,
-
14
,
-
10
)
slider
:
SetPoint
(
"BOTTOMRIGHT"
,
frame
,
"BOTTOMRIGHT"
,
-
14
,
10
)
...
...
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