wrong select region on xinerama setup
Status: Alpha
Brought to you by:
enselic
Hi,
when I select a region on the thumbnail, it is wrong (see attached screenshot). Also notice that the aspect ratio of the thumbnail does not seem to match my desktop (2960x1050 pixels), I thought it might be related to the way you calculate the region..
thanks
ps: screenshot was to big, attachment is resized 50%. find original here http://img237.imageshack.us/img237/6990/qtrecordmydesktopselect.png
select region bug
View and moderate all "bugs Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Bugs"
QtGui.QApplication.desktop().screenGeometry() return incorrect value.
In the functions QtThumbSelector.__init__ I replaced the line:
self.pix=QtGui.QPixmap.grabWindow(self.root)
siz=QtGui.QApplication.desktop().screenGeometry()
(self.wwidth, self.wheight)=(siz.width(),siz.height())
on
self.pix=QtGui.QPixmap.grabWindow(self.root)
(self.wwidth, self.wheight)=(self.pix.width(),self.pix.height())
and it solved the problem.
Thanks for taking the time to report a bug! This issue is now very old. If the problem still exists, please file an issue at the new GitHub page: https://github.com/Enselic/recordmydesktop