~indicator-multiload/indicator-multiload/trunk

« back to all changes in this revision

Viewing changes to src/colormapper.vala

  • Committer: Michael Hofmann
  • Date: 2013-03-02 23:25:21 UTC
  • Revision ID: mh21@mh21.de-20130302232521-3oxqquoek4lna3yg
Build, life time and gui fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
138
138
    public void add_palette(PGtk.ColorChooser chooser) {
139
139
        // https://bugzilla.gnome.org/show_bug.cgi?id=693995
140
140
        if (Gtk.check_version(3, 8, 0) == null) {
141
 
            chooser.add_palette(Gtk.Orientation.VERTICAL, 0, null);
142
 
            chooser.add_palette(Gtk.Orientation.VERTICAL, 3, tangorgbas);
143
 
            chooser.add_palette(Gtk.Orientation.HORIZONTAL, 9, grayrgbas);
144
 
            chooser.add_palette(Gtk.Orientation.HORIZONTAL, 8, schemergbas(this.color_scheme));
 
141
        //     chooser.add_palette(Gtk.Orientation.VERTICAL, 0, null);
 
142
        //     chooser.add_palette(Gtk.Orientation.VERTICAL, 3, tangorgbas);
 
143
        //     chooser.add_palette(Gtk.Orientation.HORIZONTAL, 9, grayrgbas);
 
144
        //     chooser.add_palette(Gtk.Orientation.HORIZONTAL, 8, schemergbas(this.color_scheme));
145
145
        }
146
146
    }
147
147
}