mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-24 22:27:36 +01:00
push2: correct knob origin translation for drawing
This commit is contained in:
parent
df5bb70616
commit
a5e112a73f
1 changed files with 6 additions and 2 deletions
|
|
@ -111,7 +111,11 @@ Push2Knob::render (Rect const & area, Cairo::RefPtr<Cairo::Context> context) con
|
|||
float value_x = cos (value_angle);
|
||||
float value_y = sin (value_angle);
|
||||
|
||||
context->translate (_position.x, _position.y); //after this, everything is based on the center of the knob
|
||||
/* translate so that all coordinates are based on the center of the
|
||||
* knob (which is also its position()
|
||||
*/
|
||||
Duple origin = item_to_window (Duple (0, 0));
|
||||
context->translate (origin.x, origin.y);
|
||||
context->begin_new_path ();
|
||||
|
||||
float center_radius = 0.48*scale;
|
||||
|
|
@ -134,7 +138,6 @@ Push2Knob::render (Rect const & area, Cairo::RefPtr<Cairo::Context> context) con
|
|||
context->arc (0, 0, progress_radius, start_angle, end_angle);
|
||||
context->stroke ();
|
||||
|
||||
|
||||
double red_start, green_start, blue_start, astart;
|
||||
double red_end, green_end, blue_end, aend;
|
||||
|
||||
|
|
@ -318,6 +321,7 @@ Push2Knob::controllable_changed ()
|
|||
|
||||
case ARDOUR::GainAutomation:
|
||||
case ARDOUR::BusSendLevel:
|
||||
case ARDOUR::TrimAutomation:
|
||||
set_gain_text (_val);
|
||||
break;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue