Closed GoogleCodeExporter closed 8 years ago
I forgot to mention I am using Mac OS 10.5.1
Original comment by mgillogly@gmail.com
on 6 Dec 2007 at 3:39
After playing around with the source code I figured out the issue with dual
monitors.
There is a QSCIFilterWindow object named overlayWindow in the QSNocturneController.h
file. I was able to make dual displays work by creating a second object that I
named
overlayWindow2 and everywhere in project code where overlayWindow was used, I
did the
same thing to overlayWindow2. Also, instead of using [NSScreen mainScreen] when
selecting the frame for the overlayWindow I used [[NSScreen screens]
objectAtIndex:0]
where 0 is the primary monitor and 1 is the secondary monitor. This is a very
dirty
approach to fixing this, but I figured this could same you some time and point
you in
the right direction on how to fix this issue in a more efficient way. I also
found a
bug with the show desktop background option. It only worked on one monitor as
well.
I found a workaround using a similar manner of duplicating code...
Original comment by mgillogly@gmail.com
on 6 Dec 2007 at 6:31
Attachments:
Invert Hue has the same issue. It looks like the only thing that works on dual
monitors is the basic inversion (on Leopard, at least, I have 10.5.4 currently).
Invert Hue, Hide Desktop, and Tint Colors all don't work. Strangely, Monochrome
does
work across multiple monitors.
Original comment by papercr...@gmail.com
on 13 Aug 2008 at 10:06
I've created a patch that should support hue inversion for any number of
monitors. It
may also fix Spaces, but I haven't checked that. This does not fix "Use Tint" or
"Hide Desktop" (yet).
Original comment by papercr...@gmail.com
on 14 Aug 2008 at 3:03
Attachments:
There is another issue with my patch. If you remove (or probably add) a
monitor, the
inversion gets set double....somehow....
Original comment by papercr...@gmail.com
on 14 Aug 2008 at 3:05
The monitor remove/add bug is fixed in this version of the patch (r2).
Original comment by papercr...@gmail.com
on 14 Aug 2008 at 4:56
Attachments:
Here's a last version of my patch (for tonight at least ;-) which fixes Invert
Hue,
Hide Desktop, and Tint Colors for multiple displays. Tint Colors and Hide
Desktop
both work for Spaces as well. Hide Desktop and Invert Hue work fine when adding
or
removing displays.
Known Issues:
* Invert Hue does *not* work for Spaces
* Tint Colors gets removed when adding or removing displays (I suspect this is
the
same as the iTunes issue #2)
Original comment by papercr...@gmail.com
on 14 Aug 2008 at 6:27
Attachments:
I figured out the one line that was giving me a warning. This patch fixes that
warning.
Original comment by papercr...@gmail.com
on 14 Aug 2008 at 5:03
Attachments:
Tint Color, Hide Desktop, and Invert Hue all work on multiple monitors now.
Hide Desktop and Invert Hue now work when switching Spaces or when adding or
removing
monitors.
Tint Colors does *not* work yet when adding/removing monitors or when switching
spaces.
Original comment by papercr...@gmail.com
on 15 Aug 2008 at 8:42
Marking as Fixed. Will use Issue #2 for remaining Tint problems.
Original comment by papercr...@gmail.com
on 15 Aug 2008 at 8:44
Original issue reported on code.google.com by
mgillogly@gmail.com
on 6 Dec 2007 at 3:38