~lubuntu-software-center-team/lubuntu-software-center/vala-port

« back to all changes in this revision

Viewing changes to src/Widgets/Pages/HomePage.vala

  • Committer: Stephen Smally
  • Date: 2012-03-18 10:38:53 UTC
  • Revision ID: eco.stefi@fastwebnet.it-20120318103853-v7wg1qfuifjkc3gc
Implemented dynamic category view

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
            spacing = 5;
12
12
            border_width = 5;
13
13
            
14
 
            categories_view = new CategoriesView(3);
15
 
            categories_view.halign = Align.CENTER;
16
 
            
17
 
            Label categories_label = new Label("<b>Categories</b>");
18
 
            categories_label.use_markup = true;
19
 
            categories_label.xalign = 0.0f;
20
 
            
21
 
            pack_start(categories_label, false, false, 0);
 
14
            categories_view = new CategoriesView();
 
15
            //categories_view.halign = Align.CENTER;
 
16
            categories_view.hexpand = true;
 
17
            
22
18
            pack_start(categories_view, false, false, 0);
23
19
        }
24
20
    }
25
 
}
 
 
b'\\ No newline at end of file'
 
21
}