Skip to content
This repository has been archived by the owner on Aug 6, 2019. It is now read-only.

Commit

Permalink
Merge pull request #5 from soif/feature/CustomSearchDefault2Channel
Browse files Browse the repository at this point in the history
3) Custom Search defaults to channel Name
  • Loading branch information
enen92 authored Jul 23, 2017
2 parents 2a062f3 + a60066f commit b0a3760
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion resources/lib/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ def run(channel_name):
if menu_functions[choose] == 'auto':
channel = urllib.quote_plus(get_replaced_names(channel_name))
elif menu_functions[choose] == 'custom':
keyb = xbmc.Keyboard('', 'Enter channel')
#keyb = xbmc.Keyboard('', 'Enter channel')
keyb = xbmc.Keyboard(channel_name, 'Enter channel')
keyb.doModal()
if (keyb.isConfirmed()):
search_parameter = urllib.quote_plus(get_replaced_names(keyb.getText()))
Expand Down

0 comments on commit b0a3760

Please sign in to comment.