summaryrefslogtreecommitdiff
path: root/libs/surfaces/tranzport/wheel_modes.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/surfaces/tranzport/wheel_modes.cc')
-rw-r--r--libs/surfaces/tranzport/wheel_modes.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/libs/surfaces/tranzport/wheel_modes.cc b/libs/surfaces/tranzport/wheel_modes.cc
index 565a68de20..6880218ff0 100644
--- a/libs/surfaces/tranzport/wheel_modes.cc
+++ b/libs/surfaces/tranzport/wheel_modes.cc
@@ -102,7 +102,7 @@ TranzportControlProtocol::show_wheel_mode ()
if(session->transport_speed() != 0) {
show_mini_meter();
} else {
-
+
switch (wheel_mode) {
case WheelTimeline:
text = "Time";
@@ -114,25 +114,25 @@ TranzportControlProtocol::show_wheel_mode ()
text = "Shtl";
break;
}
-
+
switch (wheel_shift_mode) {
case WheelShiftGain:
text += ":Gain";
break;
-
+
case WheelShiftPan:
text += ":Pan ";
break;
-
+
case WheelShiftMaster:
text += ":Mstr";
break;
-
+
case WheelShiftMarker:
text += ":Mrkr";
break;
}
-
+
print (1, 0, text.c_str());
}
}