Skip to content

Commit

Permalink
Merge pull request #1765 from gchamon/fix-fullscreen-display
Browse files Browse the repository at this point in the history
Moving window to correct coordinates before maximizing
  • Loading branch information
Davidy22 authored Sep 13, 2021
2 parents ac45448 + 98e29e2 commit 0d8c726
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions guake/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,7 @@ def set_final_window_rect(cls, settings, window):

if width_percents == 100 and height_percents == 100:
log.debug("MAXIMIZING MAIN WINDOW")
window.move(window_rect.x, window_rect.y)
window.maximize()
elif not FullscreenManager(settings, window).is_fullscreen():
log.debug("RESIZING MAIN WINDOW TO THE FOLLOWING VALUES:")
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
release_summary: >
Move window to correct coordinates before maximizing
features:
- |
Move the window to the correct coordinates, in the correct display, before
attempting to maximize the window.
fixes:
- |
- Guake always appears on mouse display regardless of Guake Preferences #1689
- guake follows mouse focus when have 2 monitors #1761
- Multiple monitors issue with Fedora 31 #1745
- Guake window follows mouse across monitors till it loses focus #1735
- And possibly more

0 comments on commit 0d8c726

Please sign in to comment.