~ubuntu-branches/ubuntu/karmic/ejecter/karmic

« back to all changes in this revision

Viewing changes to src/ejecter.vala

  • Committer: Bazaar Package Importer
  • Author(s): Devid Antonio Filoni
  • Date: 2009-10-05 15:18:23 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20091005151823-1xerymjvmnvequl6
Tags: 0.3.1-0ubuntu1
* New upstream release (LP: #442468).
* debian/control: remove libdbus-glib-1-dev from Build-Depends field.

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
        this.about = new Ejecter.About();
59
59
        
60
60
        // Status icon
61
 
        this.status_icon = new Gtk.StatusIcon.from_icon_name("media-eject");
 
61
        Gtk.IconTheme theme = Gtk.IconTheme.get_default();
 
62
        theme.prepend_search_path(Config.ICONS_DIR);
 
63
        this.status_icon = new Gtk.StatusIcon.from_icon_name("ejecter");
62
64
        this.status_icon.set_tooltip_text(_("Eject removable media"));
63
65
        this.status_icon.set_visible(false);
64
66
        this.status_icon.activate += this.handle_trayclick;