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
1 change: 1 addition & 0 deletions api/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -551,6 +551,7 @@ function pfUI:LoadConfig()
end

pfUI:UpdateConfig("bars", nil, "keydown", "0")
pfUI:UpdateConfig("bars", nil, "mousedown", "0")
pfUI:UpdateConfig("bars", nil, "altself", "0")
pfUI:UpdateConfig("bars", nil, "rightself", "0")
pfUI:UpdateConfig("bars", nil, "animation", "zoomfade")
Expand Down
1 change: 1 addition & 0 deletions env/translations_deDE.lua
Original file line number Diff line number Diff line change
Expand Up @@ -813,6 +813,7 @@ pfUI_translation["deDE"] = {
["Tracked Reputation"] = nil,
["Tracking Icon Size"] = nil,
["Trigger Actions On Key Down"] = nil,
["Trigger Actions On Mouse Down"] = nil,
["UI-Scale"] = nil,
["Unbuffed"] = nil,
["Unit Frame Border Size"] = nil,
Expand Down
1 change: 1 addition & 0 deletions env/translations_enUS.lua
Original file line number Diff line number Diff line change
Expand Up @@ -813,6 +813,7 @@ pfUI_translation["enUS"] = {
["Tracked Reputation"] = nil,
["Tracking Icon Size"] = nil,
["Trigger Actions On Key Down"] = nil,
["Trigger Actions On Mouse Down"] = nil,
["UI-Scale"] = nil,
["Unbuffed"] = nil,
["Unit Frame Border Size"] = nil,
Expand Down
1 change: 1 addition & 0 deletions env/translations_esES.lua
Original file line number Diff line number Diff line change
Expand Up @@ -813,6 +813,7 @@ pfUI_translation["esES"] = {
["Tracked Reputation"] = "Reputación rastreada",
["Tracking Icon Size"] = "Tamaño del icono de rastreo",
["Trigger Actions On Key Down"] = "Disparar acciones por presionar la tecla abajo",
["Trigger Actions On Mouse Down"] = nil,
["UI-Scale"] = "Escala de IU",
["Unbuffed"] = "Sin beneficios",
["Unit Frame Border Size"] = "Tamaño del borde del marco de unidad",
Expand Down
1 change: 1 addition & 0 deletions env/translations_frFR.lua
Original file line number Diff line number Diff line change
Expand Up @@ -813,6 +813,7 @@ pfUI_translation["frFR"] = {
["Tracked Reputation"] = nil,
["Tracking Icon Size"] = "Taille de l'icône de suivi",
["Trigger Actions On Key Down"] = "Déclencher des actions sur la touche enfoncée",
["Trigger Actions On Mouse Down"] = nil,
["UI-Scale"] = "Echelle de l'interface",
["Unbuffed"] = "Sans Améliorations",
["Unit Frame Border Size"] = "Taille de la bordure des cadres d'unité",
Expand Down
1 change: 1 addition & 0 deletions env/translations_koKR.lua
Original file line number Diff line number Diff line change
Expand Up @@ -813,6 +813,7 @@ pfUI_translation["koKR"] = {
["Tracked Reputation"] = nil,
["Tracking Icon Size"] = nil,
["Trigger Actions On Key Down"] = nil,
["Trigger Actions On Mouse Down"] = nil,
["UI-Scale"] = "UI-크기",
["Unbuffed"] = nil,
["Unit Frame Border Size"] = "유닛프레임 테두리 크기",
Expand Down
1 change: 1 addition & 0 deletions env/translations_ruRU.lua
Original file line number Diff line number Diff line change
Expand Up @@ -813,6 +813,7 @@ pfUI_translation["ruRU"] = {
["Tracked Reputation"] = "Отслеживаемая репутация",
["Tracking Icon Size"] = "Размер иконки отслеживания",
["Trigger Actions On Key Down"] = "Активация действий при нажатии клавиши (а не ее отпускании)",
["Trigger Actions On Mouse Down"] = nil,
["UI-Scale"] = "Масштаб пользовательского интерфейса",
["Unbuffed"] = "Без баффа",
["Unit Frame Border Size"] = "Размер границы окна юнита",
Expand Down
1 change: 1 addition & 0 deletions env/translations_zhCN.lua
Original file line number Diff line number Diff line change
Expand Up @@ -813,6 +813,7 @@ pfUI_translation["zhCN"] = {
["Tracked Reputation"] = "被追踪的声望",
["Tracking Icon Size"] = "追踪图标大小",
["Trigger Actions On Key Down"] = "按下即施法",
["Trigger Actions On Mouse Down"] = nil,
["UI-Scale"] = "UI缩放比例",
["Unbuffed"] = "该Buff缺失者",
["Unit Frame Border Size"] = "头像边框大小",
Expand Down
1 change: 1 addition & 0 deletions env/translations_zhTW.lua
Original file line number Diff line number Diff line change
Expand Up @@ -813,6 +813,7 @@ pfUI_translation["zhTW"] = {
["Tracked Reputation"] = nil,
["Tracking Icon Size"] = "追蹤圖示大小",
["Trigger Actions On Key Down"] = nil,
["Trigger Actions On Mouse Down"] = nil,
["UI-Scale"] = "UI縮放比例",
["Unbuffed"] = "該Buff缺失者",
["Unit Frame Border Size"] = "頭像邊框大小",
Expand Down
4 changes: 2 additions & 2 deletions modules/actionbar.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1142,8 +1142,8 @@ pfUI:RegisterModule("actionbar", "vanilla:tbc", function ()
end
end

-- set keydown option
if C.bars.keydown == "1" then
-- set mousdown option
if C.bars.mousedown == "1" then
f:RegisterForClicks("LeftButtonDown", "RightButtonDown")
else
f:RegisterForClicks("LeftButtonUp", "RightButtonUp")
Expand Down
1 change: 1 addition & 0 deletions modules/gui.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2009,6 +2009,7 @@ pfUI:RegisterModule("gui", "vanilla:tbc", function ()

CreateGUIEntry(T["Actionbar"], T["General"], function()
CreateConfig(U["bars"], T["Trigger Actions On Key Down"], C.bars, "keydown", "checkbox")
CreateConfig(U["bars"], T["Trigger Actions On Mouse Down"], C.bars, "mousedown", "checkbox")
CreateConfig(U["bars"], T["Self Cast: Alt Key"], C.bars, "altself", "checkbox")
CreateConfig(U["bars"], T["Self Cast: Right Click"], C.bars, "rightself", "checkbox")
CreateConfig(U["bars"], T["Button Animation"], C.bars, "animation", "dropdown", pfUI.gui.dropdowns.actionbuttonanimations)
Expand Down