From: Guillaume Cottenceau Date: Sat, 2 Nov 2013 20:10:13 +0000 (+0100) Subject: make "gradient" the default theme X-Git-Url: http://git.zarb.org/?p=booh;a=commitdiff_plain;h=0bf4c978a63d0645608eea8458860514a1ce4a0f make "gradient" the default theme --- diff --git a/bin/booh b/bin/booh index 2188d30..15408ef 100644 --- a/bin/booh +++ b/bin/booh @@ -3311,7 +3311,7 @@ def new_album 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)) diff --git a/bin/booh-backend b/bin/booh-backend index f161ee8..785630c 100644 --- a/bin/booh-backend +++ b/bin/booh-backend @@ -315,7 +315,7 @@ warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.") % die _("Missing --destination parameter.") end if !$theme - $theme = 'simple' + $theme = 'gradient' end select_theme($theme, $limit_sizes, $optimize_for_32, $N_per_row)