[Xfce4-commits] [apps/xfce4-notifyd] 01/01: panel-plugin: Fix amount of notifications being shown in the log

noreply at xfce.org noreply at xfce.org
Tue Dec 5 23:09:07 CET 2017


This is an automated email from the git hooks/post-receive script.

o   c   h   o   s   i       p   u   s   h   e   d       a       c   o   m   m   i   t       t   o       b   r   a   n   c   h       m   a   s   t   e   r   
   in repository apps/xfce4-notifyd.

commit 3bc845e8eb123cbd99edc8bc7878f879f7c9765b
Author: Simon Steinbeiss <simon.steinbeiss at elfenbeinturm.at>
Date:   Tue Dec 5 23:08:35 2017 +0100

    panel-plugin: Fix amount of notifications being shown in the log
---
 panel-plugin/notification-plugin-log.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/panel-plugin/notification-plugin-log.c b/panel-plugin/notification-plugin-log.c
index 27875e3..ceab6f9 100644
--- a/panel-plugin/notification-plugin-log.c
+++ b/panel-plugin/notification-plugin-log.c
@@ -169,7 +169,7 @@ notification_plugin_menu_populate (NotificationPlugin *notification_plugin)
       no_notifications = TRUE;
 
     /* Notifications are only shown until LOG_DISPLAY_LIMIT is hit */
-    for (i = numberof_groups; i >= log_length; i--) {
+    for (i = numberof_groups; i > log_length; i--) {
       GtkWidget *grid;
       GtkWidget *summary, *body, *app_icon, *expire_timeout;
       const gchar *group = groups[i];

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Xfce4-commits mailing list