I am working with Ubuntu Quickly, and I ran the quickly design
command, then deleted the menubar. But when I run, i get this error:
AttributeError: UiFactory instance has no attribute 'helpMenu'
I tried commenting out sections, but a simple search of the source code doesn't show helpMenu.
And google search for "Quickly" gives you a LOT of false positives ...
The problem comes from the modified base Window class that quickly has in _lib/Window.py:
The builder no longer has a menu. It's in a try/except block so should fail nicely but doesn't because it won't handle attribute errors. Modify the Window.py file so that line 63 reads:
Now it should work and does for me. I submitted a bug report to launchpad: https://bugs.launchpad.net/quickly/+bug/1051686