Re: multiscreen fix

2011-03-02 Thread Aaron J. Seigo
On Tuesday, March 1, 2011, Yuen Hoe Lim wrote: > - start with external screen at 1440x900 > - Add an empty horizontal panel, add some widgets, click the "maximize" > button > - change screen to 1280x800 > - Observe that a portion to the right of the panel gets cut off due to > smaller resolution t

Re: multiscreen fix

2011-03-01 Thread Yuen Hoe Lim
Sorry been quiet on this, lots of stuff on me now. I tested things out a little and I'm having some trouble reproducing some of the symptoms described by the bug. Specifically I can do the following: - start with external screen at 1440x900 - Add an empty horizontal panel, add some widgets, click

Re: multiscreen fix

2011-02-18 Thread Jeffery MacEachern
On Thu, Feb 17, 2011 at 14:19, Aaron J. Seigo wrote: > On Thursday, February 17, 2011, John Layt wrote: >> and panels and plugging/unplugging that I should really find/open bug > > s,open,fix,g ;) > > seriously, the main reason why kicker got as good with multiscreen (not to > mention multiple pan

Re: multiscreen fix

2011-02-17 Thread Aaron J. Seigo
On Thursday, February 17, 2011, John Layt wrote: > and panels and plugging/unplugging that I should really find/open bug s,open,fix,g ;) seriously, the main reason why kicker got as good with multiscreen (not to mention multiple panels on the same screen) as it did is because i used a 2 screen

Re: multiscreen fix

2011-02-17 Thread John Layt
On Thursday 17 February 2011 20:03:28 Jeffery MacEachern wrote: > On Thu, Feb 17, 2011 at 09:02, Yuen Hoe Lim wrote: > > I have multiscreen now :) Will give this a go over the weekend if no > > one's free. > > If you need further testing, I'll be game, providing I have my dev > environment (re)se

Re: multiscreen fix

2011-02-17 Thread Jeffery MacEachern
On Thu, Feb 17, 2011 at 09:02, Yuen Hoe Lim wrote: > I have multiscreen now :) Will give this a go over the weekend if no one's > free. If you need further testing, I'll be game, providing I have my dev environment (re)set up by then. This affects me a lot. Thanks! - Jeffery MacEachern > >

Re: multiscreen fix

2011-02-17 Thread Aaron J. Seigo
On Thursday, February 17, 2011, todd rme wrote: > Would this also fix https://bugs.kde.org/show_bug.cgi?id=248080 ? no, that's an entirely different issue. and likely something in kephal. -- Aaron J. Seigo humru othro a kohnu se GPG Fingerprint: 8B8B 2209 0C6F 7C47 B1EA EE75 D6B7 2EB1 A7F1 DB43

Re: multiscreen fix

2011-02-17 Thread Yuen Hoe Lim
I have multiscreen now :) Will give this a go over the weekend if no one's free. Jason "moofang" Lim Yuen Hoe http://yuenhoe.co.cc/ On Wed, Feb 16, 2011 at 3:36 AM, Aaron J. Seigo wrote: > hi all... > > it is currently impossible for me to even try to fix this multiscreen issue > which h

multiscreen fix

2011-02-15 Thread Aaron J. Seigo
hi all... it is currently impossible for me to even try to fix this multiscreen issue which has re-surfaced in 4.6.0: https://bugs.kde.org/show_bug.cgi?id=209962 all of my monitors are packed in boxes or otherwise gone in preparation of my impending move. it would be great if someone

Re: [PATCH] Multiscreen fix!

2009-02-01 Thread Alessandro Diaferia
2009/2/1 Guillaume Pothier > 2009/2/1 Alessandro Diaferia : > > I deeply checked and Kephal actually returns correct screen info (2 > > screens, > > the first (0, 0, 1280, 1024), the second(1280, 0, 1680, 1050)). > Moreover > > adjustSize() uses Plasma::View::screen() > > in order to resize

Re: [PATCH] Multiscreen fix!

2009-02-01 Thread Guillaume Pothier
2009/2/1 Alessandro Diaferia : > I deeply checked and Kephal actually returns correct screen info (2 > screens, > the first (0, 0, 1280, 1024), the second(1280, 0, 1680, 1050)). Moreover > adjustSize() uses Plasma::View::screen() > in order to resize the view, and before delaying adjustSize,

Re: [PATCH] Multiscreen fix!

2009-02-01 Thread Alessandro Diaferia
2009/2/1 Guillaume Pothier > Hi Alessandro, sorry I didn't reply earlier, Hi Guillaume, np :) > I was offline this week. > I think your fix is not in the ideal place. I think that what happens > is that you are using a driver that is not xrandr1.2-aware (please > tell me if I'm wrong), ho

Re: [PATCH] Multiscreen fix!

2009-02-01 Thread Guillaume Pothier
Hi Alessandro, sorry I didn't reply earlier, I was offline this week. I think your fix is not in the ideal place. I think that what happens is that you are using a driver that is not xrandr1.2-aware (please tell me if I'm wrong), and therefore Kephal falls back to QDesktopWidget for screen manageme

Re: [PATCH] Multiscreen fix!

2009-01-31 Thread Alessandro Diaferia
2009/1/31 Aaron J. Seigo > On Friday 30 January 2009, Marco Martin wrote: > > to me seems correct, it's a bit tricky the fact that privateinit was > > enqueued before so by enqueuing adjustsize we are sure that it will be > > executed after, but i don't see other ways to achieve that, so just p

Re: [PATCH] Multiscreen fix!

2009-01-31 Thread Aaron J. Seigo
On Friday 30 January 2009, Marco Martin wrote: > to me seems correct, it's a bit tricky the fact that privateinit was > enqueued before so by enqueuing adjustsize we are sure that it will be > executed after, but i don't see other ways to achieve that, so just put a > comment about that and i thi

Re: [PATCH] Multiscreen fix!

2009-01-30 Thread Marco Martin
On Friday 30 January 2009, Alessandro Diaferia wrote: > As you can see from the sources Plasma::View uses > QTimer::singleShot(0, this, SLOT(privateInit())) in the ctor but > DesktopView calls adjustSize() in the ctor with no delay.. > This causes the fact that adjustSize() uses invalid information

[PATCH] Multiscreen fix!

2009-01-30 Thread Alessandro Diaferia
As you can see from the sources Plasma::View uses QTimer::singleShot(0, this, SLOT(privateInit())) in the ctor but DesktopView calls adjustSize() in the ctor with no delay.. This causes the fact that adjustSize() uses invalid information about the current screen to setup its size and makes my secon