Announcement: PapagayoMOD v1.3.5 (XSheet, Image export, etc)
Moderators: Víctor Paredes, slowtiger
Yes you're right, it is not neccessary to set it in the OnMouseUp. But if I uncomment the
in OnMouseUp (I commented it out before), the drag'n'drop is wrong again. It seems it executes the InsertPhonemeOnCurrentFrame after this command so it gets always self.scrubFrame == -1. Maybe the program executes these two things asynchronously in different systems.
I am talking about the 1.3.5 source version. Of course there could be another solution and I hope you already fixed this.
Code: Select all
self.scrubFrame = -1
I am talking about the 1.3.5 source version. Of course there could be another solution and I hope you already fixed this.
- - - Fazek
PATCHES
I commented the "self.scrubFrame = -1"
(its only use was to expose any errors anyway)
Fixed some bugs in the undo/redo system
Uploaded a patch to v1.3.5.1
(Go to the 1st message of the topic)
please verify if everything is ok under linux.
Thanks
P.S.
These windows/Linux differences are starting to get on my nerves.
(its only use was to expose any errors anyway)
Fixed some bugs in the undo/redo system
Uploaded a patch to v1.3.5.1
(Go to the 1st message of the topic)
please verify if everything is ok under linux.
Thanks
P.S.
These windows/Linux differences are starting to get on my nerves.
Re: PATCHES
Well... I only can say you that you've done/'re doing an INCREDIBLE & FANTASTIC work with this program and that I can't be more grateful!nassosy wrote:P.S.
These windows/Linux differences are starting to get on my nerves.


A notice for Linux users: the link to the 1.3.5.1 source patch points to the compiled win32 files. I hope nassosy will correct it quickly, but until that, if you want to use this for Linux, you can still use the 1.3.5 source. To fix the drag'n'drop bug, add a # character to the beginning of the line 638 of WaveformView.py in the def OnMouseUp... part ( self.scrubFrame= -1).
PS: THAT WAS REALLY FAST! The link fixed! Thank you!
PS: THAT WAS REALLY FAST! The link fixed! Thank you!
Last edited by Fazek on Wed Sep 20, 2006 7:47 am, edited 2 times in total.
- - - Fazek
I made a fix for my window size problem. Maybe I made something illegal and I don't know how it looks like under other plafforms, so please check it. There are two separate problems under wxgtk and I am sure the problem is with wxgtk.
In the __do_layout of LipsyncFrame.py:
1 the vertical size of the whole contents (sizer_2) and
2 the vertical size of the left hand side phoneme list (sizer_2_5).
In some cases if I solve 1. the 2. is still goes out of the bottom of the window. It is strange because sizer2_5 is inside of sizer_2... I made the following solution for both of them:
In the line 481:
And in the line 544:
Sorry I don't know the wx protocol but this works.
In the __do_layout of LipsyncFrame.py:
1 the vertical size of the whole contents (sizer_2) and
2 the vertical size of the left hand side phoneme list (sizer_2_5).
In some cases if I solve 1. the 2. is still goes out of the bottom of the window. It is strange because sizer2_5 is inside of sizer_2... I made the following solution for both of them:
In the line 481:
Code: Select all
sizer_2_5.Add(self.thumbnail_panel, 1, wx.EXPAND, 0)
Code: Select all
sizer_1.SetSizeHints(self.panel_2)
- - - Fazek
Great work!
I've just tried out the version of papagayoMod, and it seems to work very well. I'm just wondering - is it possible to make papagayo remember the screen layout? We work on dual monitors and like to spread the program over two screens to have a better view and work faster.
It would be great if this layout was saved so we didn't have to set it up each time we start the program.
It would be great if this layout was saved so we didn't have to set it up each time we start the program.
Halvseint, animated talkshow on NRK
www.nrk.no/halvseint
www.nrk.no/halvseint
Changes from 1.3.5.1 to 1.3.5.2:
*Remembers the window position and size
go here for the download links:
http://nyian.blogspot.com/
I will post there any advances i make to papagayoMOD
in the foreseeable future.
PS. Sorry for the delay but for some reason i cannot edit the first message in this topic.
*Remembers the window position and size
go here for the download links:
http://nyian.blogspot.com/
I will post there any advances i make to papagayoMOD
in the foreseeable future.
PS. Sorry for the delay but for some reason i cannot edit the first message in this topic.
Last edited by nassosy on Sun May 13, 2007 9:28 pm, edited 1 time in total.