Merge lp:~sojkam1-fel/stellarium/screen-number into lp:stellarium

Proposed by Michal Sojka
Status: Merged
Merged at revision: 7418
Proposed branch: lp:~sojkam1-fel/stellarium/screen-number
Merge into: lp:stellarium
Diff against target: 13 lines (+2/-1)
1 file modified
src/StelMainView.cpp (+2/-1)
To merge this branch: bzr merge lp:~sojkam1-fel/stellarium/screen-number
Reviewer Review Type Date Requested Status
Stellarium Pending
Review via email: mp+249777@code.launchpad.net

Description of the change

I have found one more problem with the screen_number patch. This fixes it.

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/StelMainView.cpp'
2--- src/StelMainView.cpp 2015-02-15 16:07:48 +0000
3+++ src/StelMainView.cpp 2015-02-15 17:29:21 +0000
4@@ -480,7 +480,8 @@
5
6 if (fullscreen)
7 {
8- move(screenGeom.x(), screenGeom.y());
9+ // The "+1" below is to work around Linux/Gnome problem with mouse focus.
10+ move(screenGeom.x()+1, screenGeom.y()+1);
11 // The fullscreen window appears on screen where is the majority of
12 // the normal window. Therefore we crop the normal window to the
13 // screen area to ensure that the majority is not on another screen.