Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Squeenix.lua
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ local timeobj = LibStub:GetLibrary("LibDataBroker-1.1"):NewDataObject("BlizzCloc
else
if not IsAddOnLoaded("Blizzard_TimeManager") then LoadAddOn("Blizzard_TimeManager") end
if TimeManagerClockButton.alarmFiring then
PlaySound("igMainMenuQuit")
PlaySound(SOUNDKIT.IG_MAINMENU_QUIT)
TimeManager_TurnOffAlarm()
else TimeManager_Toggle() end
end
Expand Down
2 changes: 1 addition & 1 deletion Squeenix.toc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Interface: 70000
## Interface: 70300

## Title: Squeenix
## Notes: Square Minimap and more
Expand Down
2 changes: 1 addition & 1 deletion tekKonfig/tekKonfigCheckbox.lua
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ local function ShowTooltip(self)
GameTooltip:SetText(self.tiptext, nil, nil, nil, nil, true)
end
end
local function OnClick(self) PlaySound(self:GetChecked() and "igMainMenuOptionCheckBoxOn" or "igMainMenuOptionCheckBoxOff") end
local function OnClick(self) PlaySound(self:GetChecked() and SOUNDKIT.IG_MAINMENU_OPTION_CHECKBOX_ON or SOUNDKIT.IG_MAINMENU_OPTION_CHECKBOX_OFF) end


-- Creates a checkbox.
Expand Down
2 changes: 1 addition & 1 deletion tekKonfig/tekKonfigDropdown.lua
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ local function ShowTooltip2(self) ShowTooltip(self.container) end

local function OnClick(self)
ToggleDropDownMenu(nil, nil, self:GetParent())
PlaySound("igMainMenuOptionCheckBoxOn")
PlaySound(SOUNDKIT.IG_MAINMENU_OPTION_CHECKBOX_ON)
end

local function OnHide() CloseDropDownMenus() end
Expand Down