=== modified file 'debian/changelog' --- a/debian/changelog 2009-02-18 17:58:47 +0000 +++ b/debian/changelog 2009-02-18 21:08:25 +0000 @@ -1,8 +1,15 @@ +notify-osd (0.8-0ubuntu3) UNRELEASED; urgency=low + + [ Alexander Sack ] + * fix LP: #331115 - use POPUP window type for bubbles + + -- Alexander Sack Wed, 18 Feb 2009 21:59:36 +0100 + notify-osd (0.8-0ubuntu2) jaunty; urgency=low [ David Barth ] * Ensure we are installed with the right icon set. * imported code with from the trunk with the new 'notify-osd' name * return proper list of server capabilities * sync bubble timers to avoid a hole at the top (temporary) * remove flicker for bubble appearing/fading under the mouse-pointer === modified file 'src/bubble.c' --- a/src/bubble.c 2009-02-17 15:53:26 +0000 +++ b/src/bubble.c 2009-02-18 20:59:32 +0000 @@ -1720,17 +1720,17 @@ bubble_new (Defaults* defaults) this = g_object_new (BUBBLE_TYPE, NULL); if (!this) return NULL; this->defaults = defaults; priv = GET_PRIVATE (this); - priv->widget = gtk_window_new (GTK_WINDOW_TOPLEVEL); + priv->widget = gtk_window_new (GTK_WINDOW_POPUP); window = priv->widget; if (!window) return NULL; g_object_set_data (G_OBJECT(window), "bubble", (gpointer) &this); gtk_window_set_type_hint (GTK_WINDOW (window), GDK_WINDOW_TYPE_HINT_NOTIFICATION);