desktop/lxpanel: Updated for version 0.8.0.

Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
This commit is contained in:
Matteo Bernardini 2014-12-07 19:19:13 +01:00 committed by Willy Sudiarto Raharjo
parent 450ecf29e1
commit 1dc2929489
3 changed files with 4 additions and 32 deletions

View File

@ -24,7 +24,7 @@
# Modified by Matteo Bernardini <ponce@slackbuilds.org>
PRGNAM=lxpanel
VERSION=${VERSION:-0.7.0}
VERSION=${VERSION:-0.8.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
@ -72,9 +72,6 @@ find -L . \
\( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \
-exec chmod 644 {} \;
# apply patches from upstream
for i in $CWD/patches/* ; do patch -p1 < $i ; done
sh autogen.sh || true
CFLAGS="$SLKCFLAGS" \

View File

@ -1,8 +1,8 @@
PRGNAM="lxpanel"
VERSION="0.7.0"
VERSION="0.8.0"
HOMEPAGE="http://wiki.lxde.org/en/LXPanel"
DOWNLOAD="http://downloads.sf.net/lxde/lxpanel-0.7.0.tar.xz"
MD5SUM="39698de2c5eda2837607762c9f522cd0"
DOWNLOAD="http://downloads.sf.net/lxde/lxpanel-0.8.0.tar.xz"
MD5SUM="aa5bc73f4fe1d8006248a1f45f0a8a21"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="lxmenu-data libfm"

View File

@ -1,25 +0,0 @@
From d4943c80cded6325284be8b58003fe63dd6e8255 Mon Sep 17 00:00:00 2001
From: Raimar <no@email.de>
Date: Thu, 21 Aug 2014 23:21:28 +0200
Subject: [PATCH] fix crash after click on empty part of panel
---
src/panel.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/panel.c b/src/panel.c
index 6b2ede6..87903d8 100644
--- a/src/panel.c
+++ b/src/panel.c
@@ -233,7 +233,7 @@ static gboolean lxpanel_button_press(GtkWidget *widget, GdkEventButton *event)
gtk_menu_popup(popup, NULL, NULL, NULL, NULL, event->button, event->time);
return TRUE;
}
- return GTK_WIDGET_CLASS(lxpanel_parent_class)->button_press_event(widget, event);
+ return FALSE;
}
static void lxpanel_class_init(PanelToplevelClass *klass)
--
1.7.10.4