/+junk/SAPG

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/%2Bjunk/SAPG

« back to all changes in this revision

Viewing changes to src/main.vala

  • Committer: Gustav Hartvigsson
  • Date: 2015-11-11 16:06:59 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20151111160659-dncmze1hq6rrat2o
* Make use of new icons

Show diffs side-by-side

added added

removed removed

Lines of Context:
101
101
    [GtkChild]
102
102
    public Gtk.ToggleButton tgl_btn_show_volume;
103
103
    
104
 
    [GtkChild]
105
 
    public Gtk
106
 
    
107
104
    public AppWinodw (Gtk.Application application) {
108
105
      Object (application: application);
109
 
      var icon_image = new Gtk.Image.from_resource ("/org/gego/sapg/icon.png");
 
106
      var icon_image = new Gtk.Image.from_resource ("/org/gego/sapg/icon_32.png");
110
107
      Gtk.Window.set_default_icon (icon_image.get_pixbuf ());
111
108
    }
112
109
 
115
112
  public class About : Gtk.AboutDialog {
116
113
    public About (Gtk.Window? window) {
117
114
      this.program_name = GLib.Environment.get_prgname ();
118
 
      this.logo = (new Gtk.Image.from_resource ("/org/gego/sapg/icon.png")).get_pixbuf ();
 
115
      this.logo = (new Gtk.Image.from_resource ("/org/gego/sapg/icon_256.png")).get_pixbuf ();
119
116
      this.authors = SAPG.authors;
120
117
 
121
118
      this.set_modal (true);