Skip to content

Commit

Permalink
Merge pull request #158 from MilhouseVH/le10_masked_PIN
Browse files Browse the repository at this point in the history
Mask PIN input
  • Loading branch information
CvH committed Apr 18, 2020
2 parents 06203d4 + 4edfc80 commit a9d6c17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/oe.py
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ def openConfigurationWindow():
PINtry = 4
while PINmatch == False:
if PINtry > 0:
PINlock = xbmcDialog.input(_(32233), type=xbmcgui.INPUT_NUMERIC)
PINlock = xbmcDialog.numeric(0, _(32233), bHiddenInput=True)
if PINlock == '':
break
else:
Expand Down

0 comments on commit a9d6c17

Please sign in to comment.