mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
no-strobe behavior for varispeed blink
This commit is contained in:
parent
a5ac6e097e
commit
adb508b189
1 changed files with 5 additions and 0 deletions
|
|
@ -47,6 +47,7 @@
|
||||||
#include "rgb_macros.h"
|
#include "rgb_macros.h"
|
||||||
#include "shuttle_control.h"
|
#include "shuttle_control.h"
|
||||||
#include "timers.h"
|
#include "timers.h"
|
||||||
|
#include "ui_config.h"
|
||||||
|
|
||||||
#include "pbd/i18n.h"
|
#include "pbd/i18n.h"
|
||||||
|
|
||||||
|
|
@ -252,6 +253,10 @@ ShuttleControl::varispeed_button_scroll_event (GdkEventScroll* ev)
|
||||||
void
|
void
|
||||||
ShuttleControl::do_blink (bool onoff)
|
ShuttleControl::do_blink (bool onoff)
|
||||||
{
|
{
|
||||||
|
if (UIConfiguration::instance().get_no_strobe()) {
|
||||||
|
onoff = true;
|
||||||
|
}
|
||||||
|
|
||||||
if (!shuttle_grabbed && _session && _session->default_play_speed () != 1.0) {
|
if (!shuttle_grabbed && _session && _session->default_play_speed () != 1.0) {
|
||||||
_vari_button.set_active (onoff);
|
_vari_button.set_active (onoff);
|
||||||
if (_session->actual_speed () == 0) {
|
if (_session->actual_speed () == 0) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue