summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-06-07 22:40:46 +0000
committerDana Jansens <danakj@orodu.net>2007-06-07 22:40:46 +0000
commit268c13867de4d2524aba020a27487d3092b10cfe (patch)
treef272c0d75fab9146ec3483c340df8a21635b42ba
parentfe59f32c6d66404313ca4879717f7c9bd7dbcf90 (diff)
bump version
-rw-r--r--configure.ac8
-rw-r--r--openbox/event.c5
2 files changed, 8 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac
index 129e831c..7bf737e3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
AC_PREREQ([2.54])
-AC_INIT([openbox], [3.4.0], [http://bugzilla.icculus.org])
+AC_INIT([openbox], [3.4.1], [http://bugzilla.icculus.org])
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([openbox/openbox.c])
@@ -15,9 +15,9 @@ dnl if MAJOR or MINOR version changes, be sure to change AC_INIT above to match
dnl
OB_MAJOR_VERSION=3
OB_MINOR_VERSION=4
-OB_MICRO_VERSION=13
-OB_INTERFACE_AGE=0
-OB_BINARY_AGE=1
+OB_MICRO_VERSION=14
+OB_INTERFACE_AGE=1
+OB_BINARY_AGE=2
OB_VERSION=$OB_MAJOR_VERSION.$OB_MINOR_VERSION
AC_SUBST(OB_MAJOR_VERSION)
diff --git a/openbox/event.c b/openbox/event.c
index c63f6fea..ed05a58d 100644
--- a/openbox/event.c
+++ b/openbox/event.c
@@ -723,6 +723,7 @@ static void event_handle_root(XEvent *e)
} else if (msgtype == prop_atoms.net_showing_desktop) {
screen_show_desktop(e->xclient.data.l[0] != 0, NULL);
} else if (msgtype == prop_atoms.ob_control) {
+ ob_debug("OB_CONTROL: %d\n", e->xclient.data.l[0]);
if (e->xclient.data.l[0] == 1)
ob_reconfigure();
else if (e->xclient.data.l[0] == 2)
@@ -730,8 +731,10 @@ static void event_handle_root(XEvent *e)
}
break;
case PropertyNotify:
- if (e->xproperty.atom == prop_atoms.net_desktop_names)
+ if (e->xproperty.atom == prop_atoms.net_desktop_names) {
+ ob_debug("UPDATE DESKTOP NAMES\n");
screen_update_desktop_names();
+ }
else if (e->xproperty.atom == prop_atoms.net_desktop_layout)
screen_update_layout();
break;