Skip to content

Commit

Permalink
fix #2122: Keyboard input blocked after UI reload in combat when Allo…
Browse files Browse the repository at this point in the history
…w Config In Combat enabled.
  • Loading branch information
ascott18 committed Nov 19, 2023
1 parent 86bee2f commit e84f59d
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v10.2.1
* Fix #2122 - Keyboard input blocked after UI reload in combat when Allow Config In Combat enabled.

## v10.2.0
* Version bumps for all WoW versions.
* Fixed classic client detection.
Expand Down
2 changes: 2 additions & 0 deletions Components/Core/Suggester/Suggester.lua
Original file line number Diff line number Diff line change
Expand Up @@ -400,6 +400,8 @@ do -- KeyManger
local KeyManager = CreateFrame("Frame", nil, UIParent)
KeyManager:SetFrameStrata("FULLSCREEN")
KeyManager:EnableKeyboard(true)
-- Start with propagation enabled in case the user reloads during combat
KeyManager:SetPropagateKeyboardInput(true)
KeyManager:Show()
function KeyManager:HandlePress(key)
if key == "UP" then
Expand Down
3 changes: 3 additions & 0 deletions Options/CHANGELOG.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ if not TMW then return end
TMW.CHANGELOG_LASTVER="7.4.0"

TMW.CHANGELOG = [==[
## v10.2.1
* Fix #2122 - Keyboard input blocked after UI reload in combat when Allow Config In Combat enabled.
## v10.2.0
* Version bumps for all WoW versions.
* Fixed classic client detection.
Expand Down
2 changes: 1 addition & 1 deletion TellMeWhen-Classic.toc
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
## X-WoWI-ID: 10855
## X-Wago-ID: ZQ6aZqKW

## Version: 10.2.0
## Version: 10.2.1
## Author: Cybeloras of Aerie Peak
## IconTexture: Interface\Addons\TellMeWhen\Textures\LDB Icon
## AddonCompartmentFunc: TellMeWhen_OnAddonCompartmentClick
Expand Down
2 changes: 1 addition & 1 deletion TellMeWhen-Wrath.toc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
## X-WoWI-ID: 10855
## X-Wago-ID: ZQ6aZqKW

## Version: 10.2.0
## Version: 10.2.1
## Author: Cybeloras of Aerie Peak
## IconTexture: Interface\Addons\TellMeWhen\Textures\LDB Icon
## AddonCompartmentFunc: TellMeWhen_OnAddonCompartmentClick
Expand Down
2 changes: 1 addition & 1 deletion TellMeWhen.toc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
## X-WoWI-ID: 10855
## X-Wago-ID: ZQ6aZqKW

## Version: 10.2.0
## Version: 10.2.1
## Author: Cybeloras of Aerie Peak
## IconTexture: Interface\Addons\TellMeWhen\Textures\LDB Icon
## AddonCompartmentFunc: TellMeWhen_OnAddonCompartmentClick
Expand Down

0 comments on commit e84f59d

Please sign in to comment.