Skip to content

Commit

Permalink
Fix Lua error for non-English locales talent load option
Browse files Browse the repository at this point in the history
  • Loading branch information
Snakybo committed Dec 14, 2022
1 parent d459aff commit 126a0a1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

## [1.10.3] - 2022-12-14

### Fixed

* Fix Lua error for non-English locales when using the talent load option [#155]

## [1.10.2] - 2022-12-13

### Fixed
Expand Down Expand Up @@ -1129,6 +1135,7 @@ The format of this changelog is based on [Keep a Changelog](https://keepachangel
[0.4.0]: https://github.com/Snakybo/Clicked/releases/tag/0.4.0
[0.3.0]: https://github.com/Snakybo/Clicked/releases/tag/0.3.0

[#155]: https://github.com/Snakybo/Clicked/issues/155
[#146]: https://github.com/Snakybo/Clicked/issues/146
[#137]: https://github.com/Snakybo/Clicked/issues/137
[#136]: https://github.com/Snakybo/Clicked/issues/136
Expand Down
2 changes: 1 addition & 1 deletion Clicked/Config/Bindings.lua
Original file line number Diff line number Diff line change
Expand Up @@ -856,7 +856,7 @@ local function DrawTalentSelectOption(container, title, items, data)
widget:SetInputError(not found)
widget:SetValues(items)
else
widget = Addon:GUI_EditBox(data.entries[i], "value")
widget = Addon:GUI_EditBox("OnEnterPressed", data.entries[i], "value")
end

widget:SetRelativeWidth(0.5)
Expand Down

0 comments on commit 126a0a1

Please sign in to comment.