mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-30 08:53:08 +01:00
fix timeline type usage on macOS
This commit is contained in:
parent
a7535ae8aa
commit
52d41fa4e1
1 changed files with 3 additions and 3 deletions
|
|
@ -390,9 +390,9 @@ Editor::track_canvas_drag_data_received (const RefPtr<Gdk::DragContext>& context
|
|||
}
|
||||
|
||||
bool
|
||||
Editor::idle_drop_paths (vector<string> paths, timepos_t sample, double ypos, bool copy)
|
||||
Editor::idle_drop_paths (vector<string> paths, timepos_t pos, double ypos, bool copy)
|
||||
{
|
||||
drop_paths_part_two (paths, sample, ypos, copy);
|
||||
drop_paths_part_two (paths, pos, ypos, copy);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
@ -482,7 +482,7 @@ Editor::drop_paths (const RefPtr<Gdk::DragContext>& context,
|
|||
the main event loop with GTK/Quartz. Since import/embed wants
|
||||
to push up a progress dialog, defer all this till we go idle.
|
||||
*/
|
||||
Glib::signal_idle().connect (sigc::bind (sigc::mem_fun (*this, &Editor::idle_drop_paths), paths, when.sample, cy, copy));
|
||||
Glib::signal_idle().connect (sigc::bind (sigc::mem_fun (*this, &Editor::idle_drop_paths), paths, when, cy, copy));
|
||||
#else
|
||||
drop_paths_part_two (paths, when, cy, copy);
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue