diff --git a/gtk2_ardour/editor.cc b/gtk2_ardour/editor.cc index 4bca98b53f..9fc1586f19 100644 --- a/gtk2_ardour/editor.cc +++ b/gtk2_ardour/editor.cc @@ -5591,28 +5591,28 @@ void Editor::setup_fade_images () { _fade_in_images[FadeLinear] = new Gtk::Image (get_icon_path (X_("fadein-linear"))); - _fade_in_images[FadeSymmetric] = new Gtk::Image (get_icon_path (X_("fadein-short-cut"))); - _fade_in_images[FadeFast] = new Gtk::Image (get_icon_path (X_("fadein-slow-cut"))); - _fade_in_images[FadeSlow] = new Gtk::Image (get_icon_path (X_("fadein-fast-cut"))); - _fade_in_images[FadeConstantPower] = new Gtk::Image (get_icon_path (X_("fadein-long-cut"))); + _fade_in_images[FadeSymmetric] = new Gtk::Image (get_icon_path (X_("fadein-symmetric"))); + _fade_in_images[FadeFast] = new Gtk::Image (get_icon_path (X_("fadein-fast-cut"))); + _fade_in_images[FadeSlow] = new Gtk::Image (get_icon_path (X_("fadein-slow-cut"))); + _fade_in_images[FadeConstantPower] = new Gtk::Image (get_icon_path (X_("fadein-constant-power"))); _fade_out_images[FadeLinear] = new Gtk::Image (get_icon_path (X_("fadeout-linear"))); - _fade_out_images[FadeSymmetric] = new Gtk::Image (get_icon_path (X_("fadeout-short-cut"))); - _fade_out_images[FadeFast] = new Gtk::Image (get_icon_path (X_("fadeout-slow-cut"))); - _fade_out_images[FadeSlow] = new Gtk::Image (get_icon_path (X_("fadeout-fast-cut"))); - _fade_out_images[FadeConstantPower] = new Gtk::Image (get_icon_path (X_("fadeout-long-cut"))); + _fade_out_images[FadeSymmetric] = new Gtk::Image (get_icon_path (X_("fadeout-symmetric"))); + _fade_out_images[FadeFast] = new Gtk::Image (get_icon_path (X_("fadeout-fast-cut"))); + _fade_out_images[FadeSlow] = new Gtk::Image (get_icon_path (X_("fadeout-slow-cut"))); + _fade_out_images[FadeConstantPower] = new Gtk::Image (get_icon_path (X_("fadeout-constant-power"))); _xfade_in_images[FadeLinear] = new Gtk::Image (get_icon_path (X_("fadein-linear"))); - _xfade_in_images[FadeSymmetric] = new Gtk::Image (get_icon_path (X_("fadein-short-cut"))); - _xfade_in_images[FadeFast] = new Gtk::Image (get_icon_path (X_("fadein-slow-cut"))); - _xfade_in_images[FadeSlow] = new Gtk::Image (get_icon_path (X_("fadein-fast-cut"))); - _xfade_in_images[FadeConstantPower] = new Gtk::Image (get_icon_path (X_("fadein-long-cut"))); + _xfade_in_images[FadeSymmetric] = new Gtk::Image (get_icon_path (X_("fadein-symmetric"))); + _xfade_in_images[FadeFast] = new Gtk::Image (get_icon_path (X_("fadein-fast-cut"))); + _xfade_in_images[FadeSlow] = new Gtk::Image (get_icon_path (X_("fadein-slow-cut"))); + _xfade_in_images[FadeConstantPower] = new Gtk::Image (get_icon_path (X_("fadein-constant-power"))); _xfade_out_images[FadeLinear] = new Gtk::Image (get_icon_path (X_("fadeout-linear"))); - _xfade_out_images[FadeSymmetric] = new Gtk::Image (get_icon_path (X_("fadeout-short-cut"))); - _xfade_out_images[FadeFast] = new Gtk::Image (get_icon_path (X_("fadeout-slow-cut"))); - _xfade_out_images[FadeSlow] = new Gtk::Image (get_icon_path (X_("fadeout-fast-cut"))); - _xfade_out_images[FadeConstantPower] = new Gtk::Image (get_icon_path (X_("fadeout-long-cut"))); + _xfade_out_images[FadeSymmetric] = new Gtk::Image (get_icon_path (X_("fadeout-symmetric"))); + _xfade_out_images[FadeFast] = new Gtk::Image (get_icon_path (X_("fadeout-fast-cut"))); + _xfade_out_images[FadeSlow] = new Gtk::Image (get_icon_path (X_("fadeout-slow-cut"))); + _xfade_out_images[FadeConstantPower] = new Gtk::Image (get_icon_path (X_("fadeout-constant-power"))); } diff --git a/gtk2_ardour/icons/fadein-constant-power.png b/gtk2_ardour/icons/fadein-constant-power.png index 13a0a05b7b..3278c434a2 100644 Binary files a/gtk2_ardour/icons/fadein-constant-power.png and b/gtk2_ardour/icons/fadein-constant-power.png differ diff --git a/gtk2_ardour/icons/fadein-fast-cut.png b/gtk2_ardour/icons/fadein-fast-cut.png index 3565ee26b3..0ddf5883b0 100644 Binary files a/gtk2_ardour/icons/fadein-fast-cut.png and b/gtk2_ardour/icons/fadein-fast-cut.png differ diff --git a/gtk2_ardour/icons/fadein-linear.png b/gtk2_ardour/icons/fadein-linear.png index 7b8980aca7..87dbf6cc56 100644 Binary files a/gtk2_ardour/icons/fadein-linear.png and b/gtk2_ardour/icons/fadein-linear.png differ diff --git a/gtk2_ardour/icons/fadein-slow-cut.png b/gtk2_ardour/icons/fadein-slow-cut.png index 8080e3a9bb..c67dc384ac 100644 Binary files a/gtk2_ardour/icons/fadein-slow-cut.png and b/gtk2_ardour/icons/fadein-slow-cut.png differ diff --git a/gtk2_ardour/icons/fadein-symmetric.png b/gtk2_ardour/icons/fadein-symmetric.png new file mode 100644 index 0000000000..eff3b695da Binary files /dev/null and b/gtk2_ardour/icons/fadein-symmetric.png differ diff --git a/gtk2_ardour/icons/fadeout-constant-power.png b/gtk2_ardour/icons/fadeout-constant-power.png index 359f37096c..786ec85391 100644 Binary files a/gtk2_ardour/icons/fadeout-constant-power.png and b/gtk2_ardour/icons/fadeout-constant-power.png differ diff --git a/gtk2_ardour/icons/fadeout-fast-cut.png b/gtk2_ardour/icons/fadeout-fast-cut.png index 39d00c0916..f0d2b693ec 100644 Binary files a/gtk2_ardour/icons/fadeout-fast-cut.png and b/gtk2_ardour/icons/fadeout-fast-cut.png differ diff --git a/gtk2_ardour/icons/fadeout-linear.png b/gtk2_ardour/icons/fadeout-linear.png index a9fb6a345f..71fea91a55 100644 Binary files a/gtk2_ardour/icons/fadeout-linear.png and b/gtk2_ardour/icons/fadeout-linear.png differ diff --git a/gtk2_ardour/icons/fadeout-slow-cut.png b/gtk2_ardour/icons/fadeout-slow-cut.png index b740ad2c22..45c3bb5579 100644 Binary files a/gtk2_ardour/icons/fadeout-slow-cut.png and b/gtk2_ardour/icons/fadeout-slow-cut.png differ diff --git a/gtk2_ardour/icons/fadeout-symmetric.png b/gtk2_ardour/icons/fadeout-symmetric.png new file mode 100644 index 0000000000..c3ccc142bf Binary files /dev/null and b/gtk2_ardour/icons/fadeout-symmetric.png differ