After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 496085 - The statusbar can get cleared before the user has a chance to get the message
The statusbar can get cleared before the user has a chance to get the message
Status: RESOLVED FIXED
Product: ekiga
Classification: Applications
Component: general
GIT master
Other All
: Normal normal
: ---
Assigned To: Ekiga maintainers
Ekiga maintainers
ghop[2007-20]
Depends on:
Blocks:
 
 
Reported: 2007-11-12 09:23 UTC by Snark
Modified: 2008-04-03 10:57 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Patch for the bug (963 bytes, patch)
2007-12-17 16:04 UTC, Patrick Hulin
committed Details | Review

Description Snark 2007-11-12 09:23:46 UTC
Here is part of the code to manage the statusbar :

     if (flash_message)
-      g_timeout_add (15000, gm_statusbar_clear_msg_cb,
-                    GINT_TO_POINTER (msg_id));
+    {
+#if GTK_CHECK_VERSION(2, 14, 0)
+      g_timeout_add_seconds (15, gm_statusbar_clear_msg_cb, 
+                      GINT_TO_POINTER (msg_id));
+#else
+      g_timeout_add (15000, gm_statusbar_clear_msg_cb, 
+                      GINT_TO_POINTER (msg_id));
+#endif
+    }

Here we have a bug : we set a timer to clear the flash bar in 15s...
what happens if :
time: we display a message
time+14.999s: we display another, very important message
time+15s: we clear the status bar
?

The user won't get the message!

Solution :
(1) store the result of g_timeout_add ;
(2) when a new message arrives, cancel the timeout if there is one, and set one anew ;
(3) when clearing, clear the stored result too to avoid cancelling a non-existing timeout.

This one's very easy : gnome-love!
Comment 1 Patrick Hulin 2007-12-17 16:04:32 UTC
Created attachment 101129 [details] [review]
Patch for the bug

I think this is what you mean.
Comment 2 Snark 2007-12-17 20:19:11 UTC
It's in! Thanks!
Comment 3 Michael Lester 2007-12-28 16:17:49 UTC
Way to go Snark, these are the kind of gnome-love bugs I like to see. Keep it up.