Prevent endless read of silent files
[ardour.git] / gtk2_ardour / monitor_selector.cc
index 0a6d731f3e3896e568576c8397f53bb1215963aa..7d34a3a53f1f4393e067d26635f0c70d9a47cbda 100644 (file)
@@ -119,15 +119,15 @@ MonitorSelector::set_state (ARDOUR::BundleChannel c[2], bool s)
                                return;
                        }
 
-                        if (s) {
+                       if (s) {
                                if (!f->connected_to (*j)) {
                                        _io->connect (f, *j, 0);
                                }
-                        } else {
+                       } else {
                                if (f->connected_to (*j)) {
                                        _io->disconnect (f, *j, 0);
                                }
-                        }
+                       }
                }
        }
 }