[Xfce4-commits] <midori:master> Proxy update should be > not >= array update
Christian Dywan
noreply at xfce.org
Thu Feb 23 00:52:02 CET 2012
Updating branch refs/heads/master
to 973e481068aef9807c439530735ce1c58c6a0364 (commit)
from 403d17400b8b7e1d33359f42d171b128854da3e7 (commit)
commit 973e481068aef9807c439530735ce1c58c6a0364
Author: Christian Dywan <christian at twotoasts.de>
Date: Thu Feb 23 00:50:51 2012 +0100
Proxy update should be > not >= array update
katze/katze-arrayaction.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/katze/katze-arrayaction.c b/katze/katze-arrayaction.c
index 14f30ee..e5edad6 100644
--- a/katze/katze-arrayaction.c
+++ b/katze/katze-arrayaction.c
@@ -435,7 +435,7 @@ katze_array_action_menu_item_need_update (KatzeArrayAction* array_action,
g_object_get_data (G_OBJECT (array), "last-update"));
last_proxy_update = GPOINTER_TO_INT (
g_object_get_data (G_OBJECT (proxy), "last-update"));
- if (last_proxy_update >= last_array_update)
+ if (last_proxy_update > last_array_update)
return FALSE;
menu = gtk_menu_item_get_submenu (GTK_MENU_ITEM (proxy));
More information about the Xfce4-commits
mailing list