summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2014-05-28 22:20:28 +0200
committerRobin Gareus <robin@gareus.org>2014-05-28 22:23:42 +0200
commitf226ed086b086a2efe0c2f17354e31c01da80dac (patch)
treed16e0fd28d4b013180136f389f762a0cc6b1c51b /gtk2_ardour
parent317a6c7f99798b2c050faf15e5baffc052e087c7 (diff)
update fade icons
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/editor.cc32
-rw-r--r--gtk2_ardour/icons/fadein-constant-power.pngbin962 -> 769 bytes
-rw-r--r--gtk2_ardour/icons/fadein-fast-cut.pngbin893 -> 720 bytes
-rw-r--r--gtk2_ardour/icons/fadein-linear.pngbin959 -> 802 bytes
-rw-r--r--gtk2_ardour/icons/fadein-slow-cut.pngbin988 -> 778 bytes
-rw-r--r--gtk2_ardour/icons/fadein-symmetric.pngbin0 -> 741 bytes
-rw-r--r--gtk2_ardour/icons/fadeout-constant-power.pngbin1012 -> 754 bytes
-rw-r--r--gtk2_ardour/icons/fadeout-fast-cut.pngbin1684 -> 712 bytes
-rw-r--r--gtk2_ardour/icons/fadeout-linear.pngbin1599 -> 790 bytes
-rw-r--r--gtk2_ardour/icons/fadeout-slow-cut.pngbin1607 -> 787 bytes
-rw-r--r--gtk2_ardour/icons/fadeout-symmetric.pngbin0 -> 716 bytes
11 files changed, 16 insertions, 16 deletions
diff --git a/gtk2_ardour/editor.cc b/gtk2_ardour/editor.cc
index 94ac70a5cc..29445e65e7 100644
--- a/gtk2_ardour/editor.cc
+++ b/gtk2_ardour/editor.cc
@@ -5485,28 +5485,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
--- a/gtk2_ardour/icons/fadein-constant-power.png
+++ b/gtk2_ardour/icons/fadein-constant-power.png
Binary files differ
diff --git a/gtk2_ardour/icons/fadein-fast-cut.png b/gtk2_ardour/icons/fadein-fast-cut.png
index 3565ee26b3..0ddf5883b0 100644
--- a/gtk2_ardour/icons/fadein-fast-cut.png
+++ b/gtk2_ardour/icons/fadein-fast-cut.png
Binary files differ
diff --git a/gtk2_ardour/icons/fadein-linear.png b/gtk2_ardour/icons/fadein-linear.png
index 7b8980aca7..87dbf6cc56 100644
--- a/gtk2_ardour/icons/fadein-linear.png
+++ b/gtk2_ardour/icons/fadein-linear.png
Binary files differ
diff --git a/gtk2_ardour/icons/fadein-slow-cut.png b/gtk2_ardour/icons/fadein-slow-cut.png
index 8080e3a9bb..c67dc384ac 100644
--- a/gtk2_ardour/icons/fadein-slow-cut.png
+++ b/gtk2_ardour/icons/fadein-slow-cut.png
Binary files differ
diff --git a/gtk2_ardour/icons/fadein-symmetric.png b/gtk2_ardour/icons/fadein-symmetric.png
new file mode 100644
index 0000000000..eff3b695da
--- /dev/null
+++ b/gtk2_ardour/icons/fadein-symmetric.png
Binary files differ
diff --git a/gtk2_ardour/icons/fadeout-constant-power.png b/gtk2_ardour/icons/fadeout-constant-power.png
index 359f37096c..786ec85391 100644
--- a/gtk2_ardour/icons/fadeout-constant-power.png
+++ b/gtk2_ardour/icons/fadeout-constant-power.png
Binary files differ
diff --git a/gtk2_ardour/icons/fadeout-fast-cut.png b/gtk2_ardour/icons/fadeout-fast-cut.png
index 39d00c0916..f0d2b693ec 100644
--- a/gtk2_ardour/icons/fadeout-fast-cut.png
+++ b/gtk2_ardour/icons/fadeout-fast-cut.png
Binary files differ
diff --git a/gtk2_ardour/icons/fadeout-linear.png b/gtk2_ardour/icons/fadeout-linear.png
index a9fb6a345f..71fea91a55 100644
--- a/gtk2_ardour/icons/fadeout-linear.png
+++ b/gtk2_ardour/icons/fadeout-linear.png
Binary files differ
diff --git a/gtk2_ardour/icons/fadeout-slow-cut.png b/gtk2_ardour/icons/fadeout-slow-cut.png
index b740ad2c22..45c3bb5579 100644
--- a/gtk2_ardour/icons/fadeout-slow-cut.png
+++ b/gtk2_ardour/icons/fadeout-slow-cut.png
Binary files differ
diff --git a/gtk2_ardour/icons/fadeout-symmetric.png b/gtk2_ardour/icons/fadeout-symmetric.png
new file mode 100644
index 0000000000..c3ccc142bf
--- /dev/null
+++ b/gtk2_ardour/icons/fadeout-symmetric.png
Binary files differ