We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80555df commit 46480cdCopy full SHA for 46480cd
src/m64py/frontend/input.py
@@ -215,7 +215,10 @@ def get_opts(self):
215
def set_opts(self):
216
for key, val in self.opts.items():
217
param, tooltip, widget, ptype = val
218
- tooltip = tooltip.decode()
+ if tooltip:
219
+ tooltip = tooltip.decode()
220
+ else:
221
+ tooltip = ""
222
if ptype == M64TYPE_BOOL:
223
if param:
224
widget.setChecked(param)
0 commit comments