summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_routes.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-07-01 16:31:21 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-07-01 16:31:21 +0000
commit0fb08e9bc3919135bc12426593cb2acb2ac8d025 (patch)
tree0a75a51a05f557c4d37e493573fbff53d76fc349 /gtk2_ardour/editor_routes.cc
parent67e21fd82ee3a2bf326b652b99484941bbb7efbb (diff)
switch to basic round icon for MIDI input enable in editor track list; use StatefulButton to avoid visual ugliness with midi input button in mixer strip
git-svn-id: svn://localhost/ardour2/branches/3.0@9780 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_routes.cc')
-rw-r--r--gtk2_ardour/editor_routes.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/editor_routes.cc b/gtk2_ardour/editor_routes.cc
index a8fbb58d32..126d44c178 100644
--- a/gtk2_ardour/editor_routes.cc
+++ b/gtk2_ardour/editor_routes.cc
@@ -96,8 +96,8 @@ EditorRoutes::EditorRoutes (Editor* e)
// MIDI Input Active
CellRendererPixbufMulti* input_active_col_renderer = manage (new CellRendererPixbufMulti());
- input_active_col_renderer->set_pixbuf (0, ::get_icon("midi_socket_small"));
- input_active_col_renderer->set_pixbuf (1, ::get_icon("midi_socket_small"));
+ input_active_col_renderer->set_pixbuf (0, ::get_icon("act-disabled"));
+ input_active_col_renderer->set_pixbuf (1, ::get_icon("midi-input-active"));
input_active_col_renderer->signal_changed().connect (sigc::mem_fun (*this, &EditorRoutes::on_input_active_changed));
TreeViewColumn* input_active_column = manage (new TreeViewColumn ("I", *input_active_col_renderer));