Re: [PyQt] QLineEdit vs. menu keyboard shortcuts

2011-06-30 Thread Nathan Weston
On 6/29/2011 6:16 PM, Baz Walter wrote: On 29/06/11 18:57, Nathan Weston wrote: On 6/29/2011 1:32 PM, Baz Walter wrote: going back to your earlier example of dragging in the line-edit to change its value: all you need to do is clearFocus() when the drag starts and setFocus() when the drag

Re: [PyQt] QLineEdit vs. menu keyboard shortcuts

2011-06-30 Thread Nathan Weston
On 6/30/2011 10:44 AM, Nathan Weston wrote: On 6/29/2011 6:16 PM, Baz Walter wrote: On 29/06/11 18:57, Nathan Weston wrote: On 6/29/2011 1:32 PM, Baz Walter wrote: going back to your earlier example of dragging in the line-edit to change its value: all you need to do is clearFocus() when the

Re: [PyQt] safely closing QThread when application exits.

2011-06-30 Thread Nathan Weston
It looks like you're relying on the _del_ method of your worker thread to shut it down. I'm not sure if that's a good idea -- Python doesn't provide very strong guarantees about when objects will be destroyed. You might try shutting down your worker (and waiting on it) from the main thread

Re: [PyQt] Where may I get older Windows builds?

2011-06-30 Thread Vladimir Rutsky
Hello! On Thu, Jun 23, 2011 at 1:10 PM, Alexey Eromenko al4...@gmail.com wrote: Hi All, Where may I get older Windows builds of pyQt 4.7.x ? The new 4.8.x has regression in SVG rendering, which I can't hunt down yet. -- -Alexey Eromenko Technologov

Re: [PyQt] QLineEdit vs. menu keyboard shortcuts

2011-06-30 Thread Baz Walter
On 30/06/11 16:56, Nathan Weston wrote: On 6/30/2011 10:44 AM, Nathan Weston wrote: On 6/29/2011 6:16 PM, Baz Walter wrote: I updated to the latest Qt/PyQt and it's working now. My original application is working correctly as well. glad you got it working. one final thought: rather

Re: [PyQt] QLineEdit vs. menu keyboard shortcuts

2011-06-30 Thread Yaşar Arabacı
Wow, I can't describe epicness of this :) Didn't know such thing existed :) 2011/7/1 Baz Walter baz...@ftml.net On 30/06/11 16:56, Nathan Weston wrote: On 6/30/2011 10:44 AM, Nathan Weston wrote: On 6/29/2011 6:16 PM, Baz Walter wrote: I updated to the latest Qt/PyQt and it's working now.