~pimvullers/beat-box/fix-983560

« back to all changes in this revision

Viewing changes to src/Widgets/SideTreeView.vala

  • Committer: sgringwe at gmail
  • Date: 2012-04-18 20:42:05 UTC
  • Revision ID: sgringwe@gmail.com-20120418204205-v1qcna51y2cbt9r9
*Abstracted ViewWrapper for different view types to spread out view-specific code
*Re-fixed libnotify closing/updating
*Put welcome screen in proper views rather than LW
*Fixed device add/removal

Show diffs side-by-side

added added

removed removed

Lines of Context:
97
97
                deviceMenu.show_all();
98
98
                
99
99
                podcastMenu = new Gtk.Menu();
100
 
                podcastAdd = new Gtk.MenuItem.with_label(_("Add Podcast"));
 
100
                podcastAdd = new Gtk.MenuItem.with_label(_("Add RSS Feed"));
101
101
                podcastRefresh = new Gtk.MenuItem.with_label(_("Download new Episodes"));
102
102
                podcastMenu.append(podcastAdd);
103
103
                podcastMenu.append(podcastRefresh);
271
271
                        return network_store_iter;
272
272
                }*/
273
273
                else if(hint == ViewWrapper.Hint.STATION && parent == network_iter) {
274
 
                        var radio_icon = Icons.RADIO.render (IconSize.MENU, null);
275
 
                        network_radio_iter = addItem(parent, o, w, radio_icon, name, null);
 
274
                        var station_icon = Icons.STATION.render (IconSize.MENU, null);
 
275
                        network_radio_iter = addItem(parent, o, w, station_icon, name, null);
276
276
                        return network_radio_iter;
277
277
                }
278
278
                else if(hint == ViewWrapper.Hint.SIMILAR && parent == playlists_iter) {