~kazade/wingpanel/lucid-build

« back to all changes in this revision

Viewing changes to wingpanel-panel.vala

  • Committer: Seif Lotfy
  • Date: 2010-12-22 15:31:51 UTC
  • Revision ID: seif@lotfy.com-20101222153151-m137v9x2s12yvia3
skipĀ appmenus

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
        var indicators_list = model.get_indicators ();
36
36
 
37
37
        foreach (Indicator.Object o in indicators_list)
38
 
            {
39
 
                var name = model.get_indicator_name (o);
40
 
                if (name != "libappmenu.so") {
41
 
                    load_indicator(o);
42
 
                }
43
 
            }
 
38
        {
 
39
             load_indicator(o);
 
40
        }
44
41
 
45
42
        menubar.expose_event.connect (draw_background);
46
43