From 4ef26af48a9be7d601bb74aba907fd5516b911c5 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 18 Feb 2017 19:38:37 +0100 Subject: Kludge around broken clipboard on MacOS --- src/gui/GraphBox.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 + Copyright 2007-2017 David Robillard 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(); -- cgit v1.2.1