diff options
author | David Robillard <d@drobilla.net> | 2008-09-29 03:17:06 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-09-29 03:17:06 +0000 |
commit | 8ef6955d43a441a5873abaa27049041dea18f79e (patch) | |
tree | e8f7c61e586939f64336ed67c5a0921702159106 /src/libs/gui/Configuration.cpp | |
parent | 3593abd69807674d9949134f1ad2b7f5a9f69dc2 (diff) | |
download | ingen-8ef6955d43a441a5873abaa27049041dea18f79e.tar.gz ingen-8ef6955d43a441a5873abaa27049041dea18f79e.tar.bz2 ingen-8ef6955d43a441a5873abaa27049041dea18f79e.zip |
* Context extension work.
* Better support for set_port_value on event ports.
* Don't pop audio ports when clicking in event mode.
* Clicking an event port in event mode will 'bang' the event port
(example 'bang' plugin prints when it receives one).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1534 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/gui/Configuration.cpp')
-rw-r--r-- | src/libs/gui/Configuration.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libs/gui/Configuration.cpp b/src/libs/gui/Configuration.cpp index a442b37c..758dc744 100644 --- a/src/libs/gui/Configuration.cpp +++ b/src/libs/gui/Configuration.cpp @@ -36,9 +36,10 @@ using namespace Ingen::Client; Configuration::Configuration() // Colours from the Tango palette with modified V and alpha - : _audio_port_color( 0x244678C0) + : _name_style(HUMAN) + , _audio_port_color( 0x244678C0) , _control_port_color(0x4A8A0EC0) - , _event_port_color( 0x960909C0) + , _event_port_color( 0x960909C0) // , _midi_port_color( 0x960909C0) // , _osc_port_color( 0x5C3566C0) { |