Handle null tooltips in the input plugin view

This commit is contained in:
Alexander Golec 2016-07-05 23:43:06 -04:00
parent 80555dfbda
commit 46480cd384

View file

@ -215,7 +215,10 @@ class Input(QDialog, Ui_InputDialog):
def set_opts(self): def set_opts(self):
for key, val in self.opts.items(): for key, val in self.opts.items():
param, tooltip, widget, ptype = val param, tooltip, widget, ptype = val
tooltip = tooltip.decode() if tooltip:
tooltip = tooltip.decode()
else:
tooltip = ""
if ptype == M64TYPE_BOOL: if ptype == M64TYPE_BOOL:
if param: if param:
widget.setChecked(param) widget.setChecked(param)