tooltips = Gtk::Tooltips.new
frame2 = Gtk::Frame.new(utf8(_("Configuration"))).add(vb = Gtk::VBox.new)
vb.add(Gtk::HBox.new(false, 3).pack_start(Gtk::Label.new(utf8(_("Theme: "))), false, false, 0).
- pack_start(theme_button = Gtk::Button.new($config['default-theme'] || 'simple'), false, false, 0))
+ pack_start(theme_button = Gtk::Button.new($config['default-theme'] || 'gradient'), false, false, 0))
vb.add(Gtk::HBox.new(false, 3).pack_start(Gtk::Label.new(utf8(_("Sizes of images to generate: "))), false, false, 0).
pack_start(sizes = Gtk::HBox.new, false, false, 0))
vb.add(optimize432 = Gtk::CheckButton.new(utf8(_("Optimize for 3/2 aspect ratio"))).set_active($config['default-optimize32'].to_b))
die _("Missing --destination parameter.")
end
if !$theme
- $theme = 'simple'
+ $theme = 'gradient'
end
select_theme($theme, $limit_sizes, $optimize_for_32, $N_per_row)