View Issue Details

IDProjectCategoryView StatusLast Update
0006619ardourbugspublic2020-04-19 20:17
Reporterpedro42 Assigned Toovenwerks  
PrioritynormalSeverityminorReproducibilityalways
Status closedResolutionfixed 
Product Version4.X git (version in description) 
Summary0006619: MCU LCD strip displays incorrect value when fader is touched
DescriptionWhen fader is only touched, LCD shows incorrect value in dB. When fader is moved, the showed value is correct.

Patch attached, works 100% for me.
TagsMackie control

Activities

2015-10-03 21:44

 

touchfader.patch (770 bytes)   
commit 28dc03755e61d8395f50dd0e47130a1f4698b536
Author: Petr Vejsada <pv@propsychology.cz>
Date:   Sat Oct 3 23:30:05 2015 +0200

    Correct wrong value on LCD strip when fader is touched

diff --git a/libs/surfaces/mackie/strip.cc b/libs/surfaces/mackie/strip.cc
index 365972e..898980c 100644
--- a/libs/surfaces/mackie/strip.cc
+++ b/libs/surfaces/mackie/strip.cc
@@ -524,7 +524,7 @@ Strip::fader_touch_event (Button&, ButtonState bs)
 			_fader->start_touch (_surface->mcp().transport_frame());
 			
 			if (ac) {
-				queue_parameter_display ((AutomationType) ac->parameter().type(), ac->internal_to_interface (ac->get_value()));
+				queue_parameter_display ((AutomationType) ac->parameter().type(), (ac->get_value()));
 				queue_display_reset (2000);
 			}
 		}
touchfader.patch (770 bytes)   

ovenwerks

2015-10-12 06:27

reporter   ~0017452

Patch applied, Thank you. Commit 79113144e

system

2020-04-19 20:17

developer   ~0023540

Issue has been closed automatically, by Trigger Close Plugin.
Feel free to re-open with additional information if you think the issue is not resolved.

Issue History

Date Modified Username Field Change
2015-10-03 21:44 pedro42 New Issue
2015-10-03 21:44 pedro42 File Added: touchfader.patch
2015-10-03 22:01 pedro42 Tag Attached: Mackie control
2015-10-12 06:27 ovenwerks Note Added: 0017452
2015-10-12 06:27 ovenwerks Status new => resolved
2015-10-12 06:27 ovenwerks Resolution open => fixed
2015-10-12 06:27 ovenwerks Assigned To => ovenwerks
2020-04-19 20:17 system Note Added: 0023540
2020-04-19 20:17 system Status resolved => closed