map markers, search, export\import like retail, some bug fixes (#21)

* fix middle button on click map

* fix pvp buttons

* map markers search dev tools and fixes

* fixes and loc

* loc

* fix

* typo

* typo

* fix
This commit is contained in:
fxpw(Toxa)
2023-01-07 12:46:08 +03:00
committed by GitHub
parent 8826ee51bf
commit f097d91fb1
16 changed files with 4507 additions and 296 deletions
+31
View File
@@ -120,6 +120,37 @@ E.Options.args.maps = {
min = -200, max = 200, step = 1
}
}
},
spacer2 = {
order = 6,
type = "description",
name = "\n"
},
mapMarkersGroup = {
order = 7,
type = "group",
name = L["Map Markers"],
guiInline = true,
disabled = function() return not WM.Initialized end,
args = {
enable = {
order = 1,
type = "toggle",
name = L["Enable"],
desc = L["Map Markers on map"],
get = function(info) return E.db.general.mapMarkers[info[#info]] end,
set = function(info, value) E.db.general.mapMarkers[info[#info]] = value E:StaticPopup_Show("PRIVATE_RL") end
},
showRaidMarkers = {
order = 2,
type = "toggle",
name = L["Reseive Raid Markers from raid"],
desc = L["Reseive Raid Markers from raid"],
get = function(info) return E.db.general.mapMarkers[info[#info]] end,
set = function(info, value) E.db.general.mapMarkers[info[#info]] = value E:StaticPopup_Show("PRIVATE_RL") end,
disabled = function() return not E.db.general.mapMarkers.enable end,
},
}
}
}
},