Comment 8 for bug 1282743

Revision history for this message
marco murakami (murakami-marco) wrote :

Please try this and let me know if this works. At least for me, it does.

In IndicatorMenubar.vala search for this method:

public void push_back (IndicatorWidget item) {
            if (sorted_items.index (item) >= 0)
                return; // item already added

            //sorted_items.append (item);
            sorted_items.insert (item, item.get_indicator().get_entries().size);

            apply_new_order.begin ();
        }

Change the append for insert.

I can't figure it out why remains the memory leak issue.

Anyone has any idea??