mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-17 04:06:26 +01:00
trigger_ui: reverse the probability display logic (again)
This commit is contained in:
parent
e609c9f417
commit
414f3611ee
1 changed files with 2 additions and 2 deletions
|
|
@ -443,8 +443,8 @@ TriggerUI::trigger_changed (PropertyChange pc)
|
||||||
if (pc.contains (Properties::follow_action_probability)) {
|
if (pc.contains (Properties::follow_action_probability)) {
|
||||||
int pval = trigger()->follow_action_probability();
|
int pval = trigger()->follow_action_probability();
|
||||||
_follow_probability_adjustment.set_value (pval);
|
_follow_probability_adjustment.set_value (pval);
|
||||||
_left_probability_label.set_text (string_compose(_("%1%% Left"), pval));
|
_left_probability_label.set_text (string_compose(_("%1%% Left"), 100-pval));
|
||||||
_right_probability_label.set_text (string_compose(_("%1%% Right"), 100-pval));
|
_right_probability_label.set_text (string_compose(_("%1%% Right"), pval));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (trigger()->use_follow()) {
|
if (trigger()->use_follow()) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue