diff options
author | David Robillard <d@drobilla.net> | 2013-01-12 05:02:02 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2013-01-12 05:02:02 +0000 |
commit | 3608cf1123c28e960892da7b38b4249efdd5e4aa (patch) | |
tree | e8bf6b94ed29db2f9d67b99dcef5186d48783bf8 /src/gui | |
parent | 8264084f6838911f12e5df3b4450ea76542a7f55 (diff) | |
download | machina-3608cf1123c28e960892da7b38b4249efdd5e4aa.tar.gz machina-3608cf1123c28e960892da7b38b4249efdd5e4aa.tar.bz2 machina-3608cf1123c28e960892da7b38b4249efdd5e4aa.zip |
Fix selection dash for circles.
git-svn-id: http://svn.drobilla.net/lad/trunk/machina@4933 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/NodeView.cpp | 9 | ||||
-rw-r--r-- | src/gui/NodeView.hpp | 1 |
2 files changed, 0 insertions, 10 deletions
diff --git a/src/gui/NodeView.cpp b/src/gui/NodeView.cpp index c1eeff0..fc5377e 100644 --- a/src/gui/NodeView.cpp +++ b/src/gui/NodeView.cpp @@ -122,15 +122,6 @@ NodeView::show_label(bool show) } void -NodeView::set_selected(gboolean selected) -{ - Circle::set_selected(selected); - std::cerr << "FIXME: dash" << std::endl; - //if (!selected) - // _node.property_dash() = node_is(URIs::instance().machina_selector) ? selector_dash() : 0; -} - -void NodeView::on_property(Machina::URIInt key, const Raul::Atom& value) { static const uint32_t active_color = 0x408040FF; diff --git a/src/gui/NodeView.hpp b/src/gui/NodeView.hpp index 5359b4b..b0c0da4 100644 --- a/src/gui/NodeView.hpp +++ b/src/gui/NodeView.hpp @@ -52,7 +52,6 @@ private: bool on_double_click(GdkEventButton* ev); void on_property(Machina::URIInt key, const Raul::Atom& value); void on_action_property(Machina::URIInt key, const Raul::Atom& value); - void set_selected(gboolean selected); bool node_is(Raul::Forge& forge, Machina::URIInt key); |