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
=== modified file 'src/StelMainView.cpp'
--- src/StelMainView.cpp 2015-02-15 16:07:48 +0000
+++ src/StelMainView.cpp 2015-02-15 17:29:21 +0000
@@ -480,7 +480,8 @@
480480
481 if (fullscreen)481 if (fullscreen)
482 {482 {
483 move(screenGeom.x(), screenGeom.y());483 // The "+1" below is to work around Linux/Gnome problem with mouse focus.
484 move(screenGeom.x()+1, screenGeom.y()+1);
484 // The fullscreen window appears on screen where is the majority of485 // The fullscreen window appears on screen where is the majority of
485 // the normal window. Therefore we crop the normal window to the486 // the normal window. Therefore we crop the normal window to the
486 // screen area to ensure that the majority is not on another screen.487 // screen area to ensure that the majority is not on another screen.