diff --git a/CHANGELOG.md b/CHANGELOG.md index d849afed..513a8641 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,12 @@ The format of this changelog is based on [Keep a Changelog](https://keepachangel * The MINOR component is used whenever a version has backwards-compatible profile changes. This also indicates that the user can not switch back to a previous MINOR version without using a backup. * The PATCH component is used for versions that do not contain profile format changes. Users can freely switch between PATCH versions without risk of data loss. +## [Unreleased] + +### Fixed + +* Fix unit select and unit menu bindings not working + ## [1.16.0] - 2024-08-29 ### Added diff --git a/Clicked/Core/Utils.lua b/Clicked/Core/Utils.lua index 27f65dcc..ba1f3c14 100644 --- a/Clicked/Core/Utils.lua +++ b/Clicked/Core/Utils.lua @@ -458,6 +458,10 @@ function Addon:GetBindingValue(binding) return binding.action.macroValue end + if binding.actionType == Clicked.ActionType.UNIT_SELECT or Clicked.ActionType.UNIT_MENU then + return binding.actionType + end + return nil end