summaryrefslogtreecommitdiff
path: root/gtk2_ardour/sfdb_ui.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-12-08 00:28:45 +0100
committerRobin Gareus <robin@gareus.org>2015-12-08 00:29:19 +0100
commitf50a87e408ac2fd1c9fc010da798ea8d153e7e31 (patch)
treec756d265fe5f4971f42cf3be1f433a31cd7d3906 /gtk2_ardour/sfdb_ui.h
parent5f7ae1294ed4f622365bc6293f0a1465a404a5c9 (diff)
a shot in the dark to work-around windows file-import limit.
When importing to new tracks, newly created tracks are selected Editor::track_selection_changed() -> SoundFileOmega::reset() -> SoundFileOmega::reset_options() -> check_info() fails -> Glib::signal_idle() error message. it is unclear why check_info would fail in this case since it worked in the first place.. best guess: a concurrency issue opening the file.
Diffstat (limited to 'gtk2_ardour/sfdb_ui.h')
-rw-r--r--gtk2_ardour/sfdb_ui.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk2_ardour/sfdb_ui.h b/gtk2_ardour/sfdb_ui.h
index 3c4f088258..fcdce2a140 100644
--- a/gtk2_ardour/sfdb_ui.h
+++ b/gtk2_ardour/sfdb_ui.h
@@ -321,6 +321,9 @@ class SoundFileOmega : public SoundFileBrowser
void where_combo_changed ();
void do_something (int action);
+
+ bool _import_active;
+ bool _reset_post_import;
};
#endif // __ardour_sfdb_ui_h__