summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_dialog.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2008-03-14 20:18:05 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2008-03-14 20:18:05 +0000
commit11af3f8fdf1daff7a2eda1ce4b2c4926229e4bc0 (patch)
tree52cdd0e01775fbcb2b515749d7f4d3cd8baf4d4f /gtk2_ardour/export_dialog.cc
parentfb6565456e2070f088b2387923d78934ac8ab957 (diff)
enable icon-start-from-.ardour-file to work on OS X; properly install apple event handlers; change plugin add logic to avoid asking for stream counts before they would be configured; fix up new session dialog to not use manage(), and thus not throw away widgets when their page is hidden (by removal) in the tabbed browser
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3144 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/export_dialog.cc')
-rw-r--r--gtk2_ardour/export_dialog.cc9
1 files changed, 1 insertions, 8 deletions
diff --git a/gtk2_ardour/export_dialog.cc b/gtk2_ardour/export_dialog.cc
index 84dd7cacc1..5fe5a56205 100644
--- a/gtk2_ardour/export_dialog.cc
+++ b/gtk2_ardour/export_dialog.cc
@@ -127,7 +127,7 @@ ExportDialog::ExportDialog(PublicEditor& e)
set_title (title.get_string());
set_wmclass (X_("ardour_export"), "Ardour");
set_name ("ExportWindow");
- set_events (get_events()|Gdk::KEY_PRESS_MASK|Gdk::KEY_RELEASE_MASK);
+ add_events (Gdk::KEY_PRESS_MASK|Gdk::KEY_RELEASE_MASK);
spec.running = false;
@@ -388,13 +388,6 @@ ExportDialog::~ExportDialog()
{
}
-bool
-ExportDialog::on_event (GdkEvent* ev)
-{
- cerr << "ED event type " << ev->type << endl;
- return false;
-}
-
void
ExportDialog::do_not_allow_track_and_master_selection()
{