After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 597721 - Fix overview to show on the correct monitor
Fix overview to show on the correct monitor
Status: RESOLVED FIXED
Product: gnome-shell
Classification: Core
Component: general
unspecified
Other All
: Normal normal
: ---
Assigned To: gnome-shell-maint
gnome-shell-maint
: 597081 (view as bug list)
Depends on:
Blocks:
 
 
Reported: 2009-10-07 19:36 UTC by Owen Taylor
Modified: 2009-11-12 22:50 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Fix overview to show on the correct monitor (2.25 KB, patch)
2009-10-07 19:36 UTC, Owen Taylor
none Details | Review
Fix overview to show on the correct monitor (1.79 KB, patch)
2009-10-07 20:28 UTC, Owen Taylor
committed Details | Review

Description Owen Taylor 2009-10-07 19:36:02 UTC
Some notes:

 - I haven't actually tested on multihead. Rui Matos said that the
   part with changing the tween position worked for him.

 - It's not obvious, but getZoomedInPosition() doesn't need fixing
   because the windows are coming from *screen-relative* not
   *monitor-relative* positions.

 - The sizing of backOver is still wrong with this patch, so it
   will lap over monitors to the right of the primary monitor. It
   doesn't really matter - it will end up as black either way;
   I assume that will be cleaned up once we have 
   Workspaces-per-monitor.

 - We maybe should make backOver not draw at all, since there's
   no point in clearing to black if the stage is black.
Comment 1 Owen Taylor 2009-10-07 19:36:04 UTC
Created attachment 144985 [details] [review]
Fix overview to show on the correct monitor

When tweening the overview in, tween it to appear on the correct
position of the primary monitor, not at (0,0)

When the overview appears only on one monitor, we want the area
outside the overview to match the overview background, so change
the stage background while the overview is up.

Reported by Rui Matos
Comment 2 Dan Winship 2009-10-07 19:52:55 UTC
(In reply to comment #0)
>  - The sizing of backOver is still wrong with this patch, so it
>    will lap over monitors to the right of the primary monitor. It
>    doesn't really matter - it will end up as black either way;
>    I assume that will be cleaned up once we have 
>    Workspaces-per-monitor.
> 
>  - We maybe should make backOver not draw at all, since there's
>    no point in clearing to black if the stage is black.

The intent was that backOver should cover all monitors:

        this._backOver.set_position(0, 0);
        this._backOver.set_size(global.screen_width, global.screen_height);

so changing the stage color shouldn't be needed... ?
Comment 3 Owen Taylor 2009-10-07 20:28:08 UTC
Created attachment 144989 [details] [review]
Fix overview to show on the correct monitor

OK, here's a patch that instead correctly positions backOver;
It's more coherent than my last patch since it doesn't leave
backOver randomly lapping off the right side of the monitor.

(Removing backOver and changing the stage background color would
be a more efficient approach since it avoids clearing the all
the pixels of the screen twice.)
Comment 4 Dan Winship 2009-10-07 21:01:41 UTC
Comment on attachment 144989 [details] [review]
Fix overview to show on the correct monitor

feel free to remove backover if that would be better. i was just explaining what it was *supposed* to be doing.

the positioning could use a comment exaplaining that backover's parent is positioned at primary.x, primary.y
Comment 5 Owen Taylor 2009-10-07 21:23:51 UTC
Added the comment. Not going to fool around with deleting backOver
right now.

Attachment 144989 [details] pushed as a81a168 - Fix overview to show on the correct monitor
Comment 6 Dan Winship 2009-11-12 22:50:26 UTC
*** Bug 597081 has been marked as a duplicate of this bug. ***