1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-27 05:10:36 +00:00

Fix a bug when maximizing, for example, mplayer.

PR:	48215
Submitted by:	Joe Kelsey <joek@zircon.staff.flyingcroc.net>
Obtained from:	http://bugzilla.gnome.org/show_bug.cgi?id=98315
This commit is contained in:
Joe Marcus Clarke 2003-02-13 19:17:23 +00:00
parent 0c172c26c3
commit a7a6be0aaf
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=75469
2 changed files with 12 additions and 1 deletions

View File

@ -7,7 +7,7 @@
PORTNAME= sawfish2
PORTVERSION= 1.2
PORTREVISION= 3
PORTREVISION= 4
PORTEPOCH= 2
CATEGORIES= x11-wm
MASTER_SITES= ${MASTER_SITE_GNOME}

View File

@ -0,0 +1,11 @@
--- lisp/sawfish/wm/windows.jl.orig Thu Feb 13 12:54:55 2003
+++ lisp/sawfish/wm/windows.jl Thu Feb 13 12:55:33 2003
@@ -320,7 +320,7 @@
(t x))))
(define (adjust-position-for-gravity/y w grav y #!key inverse)
- (let* ((tl-off (window-frame-offset w))
+ (let* ((tl-off (cdr (window-frame-offset w)))
(br-off (- (cdr (window-frame-dimensions w))
(cdr (window-dimensions w))))
(sign (if inverse -1 +1)))