Browse Source

android: fix protocols dialog

master
ThomasV 11 years ago
parent
commit
8d95b9c980
  1. 5
      gui/android.py

5
gui/android.py

@ -105,10 +105,7 @@ def protocol_name(p):
def protocol_dialog(host, protocol, z):
droid.dialogCreateAlert('Protocol', host)
if z:
protocols = z.keys()
else:
protocols = 'ts'
protocols = filter(lambda x: x in "ts", z.keys())
l = []
current = protocols.index(protocol)
for p in protocols:

Loading…
Cancel
Save