diff options
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | libindicator/indicator-object.c | 4 |
2 files changed, 9 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 9437510..930b5b3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +libindicator (0.4.90-0ubuntu3) precise; urgency=low + + * libindicator/indicator-object.c + - basically disable the new visibility stuff because it breaks appmenus + + -- Ken VanDine <ken.vandine@canonical.com> Wed, 25 Jan 2012 18:08:31 -0500 + libindicator (0.4.90-0ubuntu2) precise; urgency=low * debian/control diff --git a/libindicator/indicator-object.c b/libindicator/indicator-object.c index 849fb9f..efecfb5 100644 --- a/libindicator/indicator-object.c +++ b/libindicator/indicator-object.c @@ -756,7 +756,7 @@ indicator_object_entry_being_removed (IndicatorObject * io, IndicatorObjectEntry g_return_if_fail(INDICATOR_IS_OBJECT(io)); IndicatorObjectClass * class = INDICATOR_OBJECT_GET_CLASS(io); - entry_get_private (io, entry)->visibility = ENTRY_INVISIBLE; + //entry_get_private (io, entry)->visibility = ENTRY_INVISIBLE; if (class->entry_being_removed != NULL) class->entry_being_removed (io, entry); @@ -768,7 +768,7 @@ indicator_object_entry_was_added (IndicatorObject * io, IndicatorObjectEntry * e g_return_if_fail(INDICATOR_IS_OBJECT(io)); IndicatorObjectClass * class = INDICATOR_OBJECT_GET_CLASS(io); - entry_get_private (io, entry)->visibility = ENTRY_VISIBLE; + //entry_get_private (io, entry)->visibility = ENTRY_VISIBLE; if (class->entry_was_added != NULL) class->entry_was_added (io, entry); |