Skip to content
This repository was archived by the owner on Jan 21, 2024. It is now read-only.

Commit 772b9a7

Browse files
committed
update ace3 libs
1 parent 25ca459 commit 772b9a7

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

Libs/AceConfig-3.0/AceConfigDialog-3.0/AceConfigDialog-3.0.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
--- AceConfigDialog-3.0 generates AceGUI-3.0 based windows based on option tables.
22
-- @class file
33
-- @name AceConfigDialog-3.0
4-
-- @release $Id: AceConfigDialog-3.0.lua 1248 2021-02-05 14:27:49Z funkehdude $
4+
-- @release $Id: AceConfigDialog-3.0.lua 1255 2021-11-14 09:14:15Z nevcairiel $
55

66
local LibStub = LibStub
77
local gui = LibStub("AceGUI-3.0")
88
local reg = LibStub("AceConfigRegistry-3.0")
99

10-
local MAJOR, MINOR = "AceConfigDialog-3.0", 81
10+
local MAJOR, MINOR = "AceConfigDialog-3.0", 82
1111
local AceConfigDialog, oldminor = LibStub:NewLibrary(MAJOR, MINOR)
1212

1313
if not AceConfigDialog then return end
@@ -1368,7 +1368,7 @@ local function FeedOptions(appName, options,container,rootframe,path,group,inlin
13681368
elseif width == "half" then
13691369
check:SetWidth(width_multiplier / 2)
13701370
elseif (type(width) == "number") then
1371-
control:SetWidth(width_multiplier * width)
1371+
check:SetWidth(width_multiplier * width)
13721372
elseif width == "full" then
13731373
check.width = "fill"
13741374
else

Libs/AceGUI-3.0/widgets/AceGUIWidget-DropDown.lua

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
--[[ $Id: AceGUIWidget-DropDown.lua 1239 2020-09-20 10:22:02Z nevcairiel $ ]]--
1+
--[[ $Id: AceGUIWidget-DropDown.lua 1257 2022-01-10 16:25:37Z nevcairiel $ ]]--
22
local AceGUI = LibStub("AceGUI-3.0")
33

44
-- Lua APIs
@@ -351,7 +351,7 @@ end
351351

352352
do
353353
local widgetType = "Dropdown"
354-
local widgetVersion = 35
354+
local widgetVersion = 36
355355

356356
--[[ Static data ]]--
357357

@@ -376,7 +376,6 @@ do
376376

377377
local function Dropdown_TogglePullout(this)
378378
local self = this.obj
379-
PlaySound(856) -- SOUNDKIT.IG_MAINMENU_OPTION_CHECKBOX_ON
380379
if self.open then
381380
self.open = nil
382381
self.pullout:Close()

Neuron.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -728,4 +728,4 @@ function Neuron:SetSerializedAndCompressedProfile(input)
728728
else
729729
Neuron:Print(L["Data import Failed."].." "..L["Aborting."])
730730
end
731-
end
731+
end

0 commit comments

Comments
 (0)