summaryrefslogtreecommitdiff
path: root/matchbox-wm/matchbox-wm-0.8.2
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-11-09 00:36:47 +0000
committerChris Larson <clarson@kergoth.com>2004-11-09 00:36:47 +0000
commitf96441b9faf769c9ecdd4d338b605ea3d0cc4010 (patch)
treeedb17ec2c4ea13c5acb1c7350957a249a820e28d /matchbox-wm/matchbox-wm-0.8.2
parentb6588aa6851fb220cedc387d21c51513ef8d67f4 (diff)
Disable bk EOLN_NATIVE conversions on all files in packages FILESPATHs, to prevent it screwing up patches.
BKrev: 4190111fA4MuVozAqwE7xOSL9fr-TA
Diffstat (limited to 'matchbox-wm/matchbox-wm-0.8.2')
-rw-r--r--matchbox-wm/matchbox-wm-0.8.2/kbdconfig_keylaunch_simpad.patch12
-rw-r--r--matchbox-wm/matchbox-wm-0.8.2/net-showing-desktop.patch24
2 files changed, 36 insertions, 0 deletions
diff --git a/matchbox-wm/matchbox-wm-0.8.2/kbdconfig_keylaunch_simpad.patch b/matchbox-wm/matchbox-wm-0.8.2/kbdconfig_keylaunch_simpad.patch
index e69de29bb2..8fd1dc3f4b 100644
--- a/matchbox-wm/matchbox-wm-0.8.2/kbdconfig_keylaunch_simpad.patch
+++ b/matchbox-wm/matchbox-wm-0.8.2/kbdconfig_keylaunch_simpad.patch
@@ -0,0 +1,12 @@
+--- data/kbdconfig~ 2004-07-11 00:59:25.000000000 +0200
++++ data/kbdconfig 2004-07-11 00:59:25.000000000 +0200
+@@ -28,7 +28,8 @@
+ <alt>escape=!mbcontrol -mbmenu
+ <alt>f4=close
+
+-f11=fullscreen
++#Please don't do this, it breaks suspending on SimPad
++#f11=fullscreen
+
+ ### super should be windows keys
+
diff --git a/matchbox-wm/matchbox-wm-0.8.2/net-showing-desktop.patch b/matchbox-wm/matchbox-wm-0.8.2/net-showing-desktop.patch
index e69de29bb2..ef0dc09c11 100644
--- a/matchbox-wm/matchbox-wm-0.8.2/net-showing-desktop.patch
+++ b/matchbox-wm/matchbox-wm-0.8.2/net-showing-desktop.patch
@@ -0,0 +1,24 @@
+Index: ewmh.c
+===================================================================
+RCS file: /cvs/apps/matchbox/matchbox-window-manager/src/ewmh.c,v
+retrieving revision 1.4
+retrieving revision 1.5
+diff -u -r1.4 -r1.5
+--- matchbox/src/ewmh.c 22 Apr 2004 09:34:24 -0000 1.4
++++ matchbox/src/ewmh.c 4 Jun 2004 15:48:48 -0000 1.5
+@@ -194,10 +194,11 @@
+ } else if (e->message_type == w->atoms[_NET_SHOW_DESKTOP]
+ && wm_get_desktop(w) ) {
+ dbg("%s() got desktop message\n", __func__);
+- if (e->data.l[0] == 1 && !(w->flags & DESKTOP_RAISED_FLAG))
+- { /* Show the desktop */
+- wm_toggle_desktop(w);
+- } else { /* Hide the desktop */
++ if (e->data.l[0] == 1)
++ { /* Show the desktop, if not shown */
++ if (!(w->flags & DESKTOP_RAISED_FLAG))
++ wm_toggle_desktop(w);
++ } else { /* Hide the desktop, if shown */
+ if (w->flags & DESKTOP_RAISED_FLAG)
+ wm_toggle_desktop(w);
+ }