summaryrefslogtreecommitdiff
path: root/gtk2_ardour/route_ui.cc
diff options
context:
space:
mode:
authorNil Geisweiller <ngeiswei@gmail.com>2016-12-21 22:57:39 +0200
committerRobin Gareus <robin@gareus.org>2016-12-21 23:09:40 +0100
commit4c66e36b91df4e49effef77ad01c905ccedff730 (patch)
tree6ee2d4eadef3592979447d32ad94ba6e8914c7a2 /gtk2_ardour/route_ui.cc
parent91321272b59779546c7ca426b1c8ee94fc4f1740 (diff)
Fix indentation 8 whitespaces to tab
Diffstat (limited to 'gtk2_ardour/route_ui.cc')
-rw-r--r--gtk2_ardour/route_ui.cc18
1 files changed, 9 insertions, 9 deletions
diff --git a/gtk2_ardour/route_ui.cc b/gtk2_ardour/route_ui.cc
index f93dbd165e..47ac4a11ec 100644
--- a/gtk2_ardour/route_ui.cc
+++ b/gtk2_ardour/route_ui.cc
@@ -1199,28 +1199,28 @@ RouteUI::update_solo_display ()
solo_isolated_check->set_active (yn);
}
- set_button_names ();
+ set_button_names ();
- if (solo_isolated_led) {
- if (_route->solo_isolate_control()->solo_isolated()) {
+ if (solo_isolated_led) {
+ if (_route->solo_isolate_control()->solo_isolated()) {
solo_isolated_led->set_active_state (Gtkmm2ext::ExplicitActive);
} else {
solo_isolated_led->unset_active_state ();
}
- }
+ }
- if (solo_safe_led) {
- if (_route->solo_safe_control()->solo_safe()) {
+ if (solo_safe_led) {
+ if (_route->solo_safe_control()->solo_safe()) {
solo_safe_led->set_active_state (Gtkmm2ext::ExplicitActive);
} else {
solo_safe_led->unset_active_state ();
}
- }
+ }
solo_button->set_active_state (solo_active_state (_route));
- /* some changes to solo status can affect mute display, so catch up
- */
+ /* some changes to solo status can affect mute display, so catch up
+ */
update_mute_display ();
}