summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_region_list.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2007-08-30 20:25:47 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2007-08-30 20:25:47 +0000
commit6c2728f9815bcdbf1cbd702f271344e295ddb074 (patch)
treea4eb8f84e4b2b1430f1a3aa62be4e4dcefd27cee /gtk2_ardour/editor_region_list.cc
parentcc455e0d0a270bb20db85f750c7df07a96bb352e (diff)
more upgrades to the import dialog
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2358 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_region_list.cc')
-rw-r--r--gtk2_ardour/editor_region_list.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/editor_region_list.cc b/gtk2_ardour/editor_region_list.cc
index 11ffb544fc..87c006c339 100644
--- a/gtk2_ardour/editor_region_list.cc
+++ b/gtk2_ardour/editor_region_list.cc
@@ -620,8 +620,8 @@ Editor::region_list_display_drag_data_received (const RefPtr<Gdk::DragContext>&
vector<ustring> paths;
if (convert_drop_to_paths (paths, context, x, y, data, info, time) == 0) {
- nframes_t pos = 0;
- do_embed (paths, false, ImportAsRegion, 0, pos);
+ nframes64_t pos = 0;
+ do_embed (paths, Editing::ImportThingPerFile, ImportAsRegion, 0, pos);
context->drag_finish (true, false, time);
}
}