13
0

no strobe for editor-visible meters

This commit is contained in:
Paul Davis 2023-11-10 10:55:44 -07:00
parent 08af0fe04a
commit 5e087864f6

View File

@ -141,6 +141,7 @@
#include "mixer_ui.h"
#include "mouse_cursors.h"
#include "note_base.h"
#include "opts.h"
#include "plugin_setup_dialog.h"
#include "public_editor.h"
#include "quantize_dialog.h"
@ -6440,7 +6441,7 @@ Editor::super_rapid_screen_update ()
/* METERING / MIXER STRIPS */
/* update track meters, if required */
if (contents().get_mapped() && meters_running) {
if (!ARDOUR_COMMAND_LINE::no_strobe && contents().get_mapped() && meters_running) {
RouteTimeAxisView* rtv;
for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
if ((rtv = dynamic_cast<RouteTimeAxisView*>(*i)) != 0) {
@ -6450,7 +6451,7 @@ Editor::super_rapid_screen_update ()
}
/* and any current mixer strip */
if (current_mixer_strip) {
if (!ARDOUR_COMMAND_LINE::no_strobe && current_mixer_strip) {
current_mixer_strip->fast_update ();
}