mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 00:34:59 +01:00
change frames_per_pixel to samples_per_pixel
This commit is contained in:
parent
e5a3747686
commit
b05968fb4e
43 changed files with 172 additions and 174 deletions
|
|
@ -437,16 +437,16 @@ AutomationTimeAxisView::set_height (uint32_t h)
|
|||
}
|
||||
|
||||
void
|
||||
AutomationTimeAxisView::set_frames_per_pixel (double fpp)
|
||||
AutomationTimeAxisView::set_samples_per_pixel (double fpp)
|
||||
{
|
||||
TimeAxisView::set_frames_per_pixel (fpp);
|
||||
TimeAxisView::set_samples_per_pixel (fpp);
|
||||
|
||||
if (_line) {
|
||||
_line->reset ();
|
||||
}
|
||||
|
||||
if (_view) {
|
||||
_view->set_frames_per_pixel (fpp);
|
||||
_view->set_samples_per_pixel (fpp);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue