diff options
| author | Andreas Müller <schnitzeltony@googlemail.com> | 2013-06-18 13:46:22 +0200 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2013-06-20 12:28:00 +0200 |
| commit | 96f7caf0608cc1d407f8d9ec1732e7290ab8e5ea (patch) | |
| tree | a44797eaa23a99b39ab4fa7e2b3129a96fad8814 /meta-xfce/recipes-xfce/xfwm4 | |
| parent | 8c47ded66321e1592c0ed5c4be459bf376738697 (diff) | |
| download | meta-openembedded-96f7caf0608cc1d407f8d9ec1732e7290ab8e5ea.tar.gz | |
xfwm4: don't turn into unusablity after setting system time backwards
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
Diffstat (limited to 'meta-xfce/recipes-xfce/xfwm4')
| -rw-r--r-- | meta-xfce/recipes-xfce/xfwm4/files/0001-don-t-block-display-events-when-time-is-set-backward.patch | 33 | ||||
| -rw-r--r-- | meta-xfce/recipes-xfce/xfwm4/xfwm4_4.10.1.bb | 1 |
2 files changed, 34 insertions, 0 deletions
diff --git a/meta-xfce/recipes-xfce/xfwm4/files/0001-don-t-block-display-events-when-time-is-set-backward.patch b/meta-xfce/recipes-xfce/xfwm4/files/0001-don-t-block-display-events-when-time-is-set-backward.patch new file mode 100644 index 0000000000..08fd76bb29 --- /dev/null +++ b/meta-xfce/recipes-xfce/xfwm4/files/0001-don-t-block-display-events-when-time-is-set-backward.patch | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | From e87977696f03b0c9f72884f8e3e3ec3248dfd80a Mon Sep 17 00:00:00 2001 | ||
| 2 | From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com> | ||
| 3 | Date: Tue, 18 Jun 2013 12:46:42 +0200 | ||
| 4 | Subject: [PATCH] don't block display events when time is set backwards | ||
| 5 | MIME-Version: 1.0 | ||
| 6 | Content-Type: text/plain; charset=UTF-8 | ||
| 7 | Content-Transfer-Encoding: 8bit | ||
| 8 | |||
| 9 | Upstream-Status: Submitted [1] | ||
| 10 | |||
| 11 | [1] https://bugzilla.xfce.org/show_bug.cgi?id=10184 | ||
| 12 | |||
| 13 | Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> | ||
| 14 | --- | ||
| 15 | src/display.c | 2 +- | ||
| 16 | 1 files changed, 1 insertions(+), 1 deletions(-) | ||
| 17 | |||
| 18 | diff --git a/src/display.c b/src/display.c | ||
| 19 | index 00318d5..651bc7a 100644 | ||
| 20 | --- a/src/display.c | ||
| 21 | +++ b/src/display.c | ||
| 22 | @@ -733,7 +733,7 @@ myDisplayUpdateCurrentTime (DisplayInfo *display, XEvent *ev) | ||
| 23 | break; | ||
| 24 | } | ||
| 25 | |||
| 26 | - if ((timestamp != (guint32) CurrentTime) && TIMESTAMP_IS_BEFORE(display->current_time, timestamp)) | ||
| 27 | + if ((timestamp != (guint32) CurrentTime) /*&& TIMESTAMP_IS_BEFORE(display->current_time, timestamp)*/) | ||
| 28 | { | ||
| 29 | display->current_time = timestamp; | ||
| 30 | } | ||
| 31 | -- | ||
| 32 | 1.7.6.5 | ||
| 33 | |||
diff --git a/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.10.1.bb b/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.10.1.bb index 687339b26d..86ac20edbc 100644 --- a/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.10.1.bb +++ b/meta-xfce/recipes-xfce/xfwm4/xfwm4_4.10.1.bb | |||
| @@ -8,6 +8,7 @@ inherit xfce update-alternatives | |||
| 8 | 8 | ||
| 9 | SRC_URI[md5sum] = "10de50c79ed944cbb9c87741062c2a76" | 9 | SRC_URI[md5sum] = "10de50c79ed944cbb9c87741062c2a76" |
| 10 | SRC_URI[sha256sum] = "380c44fba6eb779e34be0fe94f3726cfa131803014d6073c45aec8a1257fa740" | 10 | SRC_URI[sha256sum] = "380c44fba6eb779e34be0fe94f3726cfa131803014d6073c45aec8a1257fa740" |
| 11 | SRC_URI += "file://0001-don-t-block-display-events-when-time-is-set-backward.patch" | ||
| 11 | 12 | ||
| 12 | python populate_packages_prepend () { | 13 | python populate_packages_prepend () { |
| 13 | themedir = d.expand('${datadir}/themes') | 14 | themedir = d.expand('${datadir}/themes') |
