Skip to content

Commit

Permalink
fix: select dialogs with lang != english
Browse files Browse the repository at this point in the history
  • Loading branch information
stefansaraev committed May 31, 2015
1 parent d2e7424 commit 585ff76
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
################################################################################

ADDON_NAME=service.openelec.settings
ADDON_VERSION=0.6.6
ADDON_VERSION=0.6.7
DISTRONAME:=OpenELEC

BUILDDIR=build
Expand Down
3 changes: 3 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2015-05-31 v0.6.7
(fix) select dialogs with lang != english

2015-05-29 v0.6.6
(updated) language files from Transifex

Expand Down
2 changes: 1 addition & 1 deletion src/resources/lib/oeWindows.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ def onClick(self, controlID):
items1.append(i1)
items2.append(i2)
select_window = xbmcgui.Dialog()
title = selectedItem.getProperty('menuname').encode('utf-8')
title = selectedItem.getProperty('menuname')
result = select_window.select(title, items1)
if result >= 0:
selectedItem.setProperty('value', items2[result])
Expand Down

0 comments on commit 585ff76

Please sign in to comment.