~cybre/debby/debby

« back to all changes in this revision

Viewing changes to src/Window.vala

  • Committer: Stefan Ric
  • Date: 2014-08-24 01:51:39 UTC
  • Revision ID: cybre@uwotm8-20140824015139-e053mdy72fauqbpj
Fixing some local file path you've set and deleting your build directory ;)

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
        uninstall.set_justify (Gtk.Justification.CENTER);
59
59
        box.pack_start (uninstall, false, false, 0);
60
60
// picture
61
 
        string image_debian_package = "/home/maccabbi/Dropbox/vala/debby_yad/src/images/elementary_package.svg";
 
61
        string image_debian_package = "/usr/share/debby/images/elementary_package.svg";
62
62
        var background_image = new Gtk.Image ();
63
63
        background_image.set_from_file (image_debian_package);
64
64
        box.pack_start (background_image, false, false, 0);
205
205
 
206
206
 
207
207
 
208