diff options
author | Aron Griffis <agriffis@gentoo.org> | 2003-10-27 14:11:51 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2003-10-27 14:11:51 +0000 |
commit | b76228dc24e2f56333e3381f5dd8856f78f30fa9 (patch) | |
tree | 44b93ea318dc936c1d7d28d9e6f7827fb7594263 /x11-wm/sawfish/files | |
parent | Include shading patch submitted by David Reid in bug 31660 (diff) | |
download | gentoo-2-b76228dc24e2f56333e3381f5dd8856f78f30fa9.tar.gz gentoo-2-b76228dc24e2f56333e3381f5dd8856f78f30fa9.tar.bz2 gentoo-2-b76228dc24e2f56333e3381f5dd8856f78f30fa9.zip |
Include shading patch submitted by David Reid in bug 31660
Diffstat (limited to 'x11-wm/sawfish/files')
-rw-r--r-- | x11-wm/sawfish/files/digest-sawfish-1.3-r2 | 1 | ||||
-rw-r--r-- | x11-wm/sawfish/files/sawfish-1.3-shading.patch | 28 |
2 files changed, 29 insertions, 0 deletions
diff --git a/x11-wm/sawfish/files/digest-sawfish-1.3-r2 b/x11-wm/sawfish/files/digest-sawfish-1.3-r2 new file mode 100644 index 000000000000..329b7f1c34ed --- /dev/null +++ b/x11-wm/sawfish/files/digest-sawfish-1.3-r2 @@ -0,0 +1 @@ +MD5 9e5ce5e76c60acecdb1889c1f173295a sawfish-1.3.tar.gz 1582279 diff --git a/x11-wm/sawfish/files/sawfish-1.3-shading.patch b/x11-wm/sawfish/files/sawfish-1.3-shading.patch new file mode 100644 index 000000000000..43ac247f7903 --- /dev/null +++ b/x11-wm/sawfish/files/sawfish-1.3-shading.patch @@ -0,0 +1,28 @@ +diff -r -u -x '*.jlc' -x .cvsignore sawfish-1.3_orig/lisp/sawfish/wm/frames.jl sawfish-1.3/lisp/sawfish/wm/frames.jl +--- sawfish-1.3_orig/lisp/sawfish/wm/frames.jl 2002-10-20 01:07:50.000000000 -0700 ++++ sawfish-1.3/lisp/sawfish/wm/frames.jl 2003-10-20 12:46:41.000000000 -0700 +@@ -155,8 +155,11 @@ + (icon . shaped-transient) + (dock . icon) + (utility . transient) ++ (shaded-utility . shaded-transient) + (toolbar . utility) ++ (shaded-toolbar . shaded-utility) + (menu . utility) ++ (shaded-menu . shaded-utility) + (splash . unframed)) + "Frame type fallbacks.") + +diff -r -u -x '*.jlc' -x .cvsignore sawfish-1.3_orig/lisp/sawfish/wm/state/shading.jl sawfish-1.3/lisp/sawfish/wm/state/shading.jl +--- sawfish-1.3_orig/lisp/sawfish/wm/state/shading.jl 2003-10-20 04:27:06.000000000 -0700 ++++ sawfish-1.3/lisp/sawfish/wm/state/shading.jl 2003-10-20 04:26:28.000000000 -0700 +@@ -83,6 +83,9 @@ + (case type + ((default shaped) 'shaded) + ((transient shaped-transient) 'shaded-transient) ++ ((utility shaped-utility) 'shaded-utility) ++ ((menu shaped-menu) 'shaded-menu) ++ ((toolbar shaped-toolbar) 'shaded-toolbar) + (t type)) + type)) + |