Re: moving file tabs

2014-05-19 Thread Edward K. Ream
On Sun, May 18, 2014 at 10:23 PM, 'Terry Brown' via leo-editor leo-editor@googlegroups.com wrote: ...the problem here is that I don't understand super(). :-) I never have wanted to use super because I prefer:: aClassName.aFunctionName(self, args...) In fact, the only time I can recall

Re: moving file tabs

2014-05-19 Thread 'Terry Brown' via leo-editor
On Mon, 19 May 2014 07:16:31 -0500 Edward K. Ream edream...@gmail.com wrote: :-) I never have wanted to use super because I prefer:: aClassName.aFunctionName(self, args...) That's what I usually do too :-) -- You received this message because you are subscribed to the Google Groups

Re: moving file tabs

2014-05-18 Thread 'Terry Brown' via leo-editor
On Fri, 16 May 2014 11:53:13 -0400 Jacob Peck gatesph...@gmail.com wrote: This has been fixed as of commit 60d085a68b8a... It involves a dirty hack to force QT to redraw the tabs though. Perhaps someone more versed in PyQt could fix up my code? In general, I think you should not just call

moving file tabs

2014-05-16 Thread Kent Tenney
I have multiple Leo files open as tabs. I seem to recall being able to drag the tabs to reorder them, I am unable to. - am I remembering wrong? - is there a setting involved? * Ubuntu 14.04 current trunk * Thanks, Kent -- You received this message because you are subscribed to the Google

Re: moving file tabs

2014-05-16 Thread Jacob Peck
I remember this too. This was likely broken when I pushed a recent change to enable middle-click-close on file tabs. I'll look into it... --Jake On 5/16/2014 10:58 AM, Kent Tenney wrote: I have multiple Leo files open as tabs. I seem to recall being able to drag the tabs to reorder them, I

Re: moving file tabs

2014-05-16 Thread Jacob Peck
This has been fixed as of commit 60d085a68b8a... It involves a dirty hack to force QT to redraw the tabs though. Perhaps someone more versed in PyQt could fix up my code? Particularly the following bit: https://github.com/leo-editor/leo-editor/blob/master/leo/plugins/qtGui.py#L7155-7163 Hope

Re: moving file tabs

2014-05-16 Thread Kent Tenney
Great service! dirty or no, it works. Thanks, Kent On Fri, May 16, 2014 at 10:53 AM, Jacob Peck gatesph...@gmail.com wrote: This has been fixed as of commit 60d085a68b8a... It involves a dirty hack to force QT to redraw the tabs though. Perhaps someone more versed in PyQt could fix up my