Re: quicksearch - Nav tab hard crashes Leo

2015-10-28 Thread lewis
Hi John, Appreciate the quick response. I just tested again and Leo survives pressing enter and a list of hits is presented. If I select a hit Leo crashes. ** isPython3: True Leo 5.1-final, build 20151027155247, Tue Oct 27 15:52:47 CDT 2015 Git repo info: branch = master, commit = 7037cdd07abf

Re: quicksearch - Nav tab hard crashes Leo

2015-10-28 Thread john lunzer
Python3 doesn't have iteritems because they made everything iterators by default so that iteritems is just items. I guess I can just use items and deal with the increased memory footprint for Python2. On Wednesday, October 28, 2015 at 8:52:06 AM UTC-4, lewis wrote: > > Select the "Nav" tab,

quicksearch - Nav tab hard crashes Leo

2015-10-28 Thread lewis
Select the "Nav" tab, enter search text into the window and press enter. Leo crashes completely with this in the console: [snip] ** isPython3: True Leo 5.1-final, build 20151027155247, Tue Oct 27 15:52:47 CDT 2015 Git repo info: branch = master, commit = e4dc0c93de13 Python 3.4.3, PyQt version

Re: quicksearch - Nav tab hard crashes Leo

2015-10-28 Thread john lunzer
Okay, this was caused by moving QApplication from QtGui in PyQt4 to QtWidgets in PyQt5. Newest commit should fix it, though I can't test it myself. Please let me know if this clears things up! On Wednesday, October 28, 2015 at 9:28:38 AM UTC-4, lewis wrote: > > Hi John, > > Appreciate the quick

Re: quicksearch - Nav tab hard crashes Leo

2015-10-28 Thread john lunzer
Okay, I just pushed the fix upstream. Sorry for not testing on Python3! On Wednesday, October 28, 2015 at 8:58:47 AM UTC-4, john lunzer wrote: > > Python3 doesn't have iteritems because they made everything iterators by > default so that iteritems is just items. I guess I can just use items and

Re: quicksearch - Nav tab hard crashes Leo

2015-10-28 Thread 'Terry Brown' via leo-editor
On Wed, 28 Oct 2015 06:54:18 -0700 (PDT) john lunzer wrote: > Okay, this was caused by moving QApplication from QtGui in PyQt4 to > QtWidgets in PyQt5. Newest commit should fix it, though I can't test > it myself. Please let me know if this clears things up! Ha, decided to