summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authordrd <drd@ableton.com>2017-02-15 15:41:53 +0100
committerdrd <drd@ableton.com>2017-02-16 10:21:31 +0100
commite29b2efa89ccfab0c631dae771b8c0e5b9616839 (patch)
treef1d4e14d69568e86c3c5aa29885d106c5afba944 /src
parentfa6bb9afe8fcf2b0b8348495b9c4e1d6425136f0 (diff)
downloadingen-e29b2efa89ccfab0c631dae771b8c0e5b9616839.tar.gz
ingen-e29b2efa89ccfab0c631dae771b8c0e5b9616839.tar.bz2
ingen-e29b2efa89ccfab0c631dae771b8c0e5b9616839.zip
Kludge around broken clipboard notifications on MacOS
Diffstat (limited to 'src')
-rw-r--r--src/gui/GraphBox.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gui/GraphBox.cpp b/src/gui/GraphBox.cpp
index 4aa3589f..f48cffa7 100644
--- a/src/gui/GraphBox.cpp
+++ b/src/gui/GraphBox.cpp
@@ -1,6 +1,6 @@
/*
This file is part of Ingen.
- Copyright 2007-2016 David Robillard <http://drobilla.net/>
+ Copyright 2007-2017 David Robillard <http://drobilla.net/>
Ingen is free software: you can redistribute it and/or modify it under the
terms of the GNU Affero General Public License as published by the Free
@@ -180,6 +180,10 @@ GraphBox::GraphBox(BaseObjectType* cobject,
clipboard->signal_owner_change().connect(
sigc::mem_fun(this, &GraphBox::event_clipboard_changed));
+#ifdef __APPLE__
+ _menu_paste->set_sensitive(true);
+#endif
+
_status_label = Gtk::manage(new Gtk::Label("STATUS"));
_status_bar->pack_start(*_status_label, false, true, 0);
_status_label->show();