diff options
author | David Robillard <d@drobilla.net> | 2006-12-13 18:16:57 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2006-12-13 18:16:57 +0000 |
commit | 26937f092e9e29f01c379e668928a0159073e578 (patch) | |
tree | 4bcf9e65e15dc0dd3717a93ae07caf89c09f317c | |
parent | 7c7cf6b8a98d057fd8e73825383f94715ff7c339 (diff) | |
download | patchage-26937f092e9e29f01c379e668928a0159073e578.tar.gz patchage-26937f092e9e29f01c379e668928a0159073e578.tar.bz2 patchage-26937f092e9e29f01c379e668928a0159073e578.zip |
Dropped port translucency a touch.
git-svn-id: http://svn.drobilla.net/lad/patchage@224 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | src/StateManager.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/StateManager.cpp b/src/StateManager.cpp index f4bab3a..6228a87 100644 --- a/src/StateManager.cpp +++ b/src/StateManager.cpp @@ -236,11 +236,11 @@ int StateManager::get_port_color(PortType type) { if (type == JACK_AUDIO) - return 0x305171FF; + return 0x305171B0; else if (type == JACK_MIDI) - return 0x663939FF; + return 0x663939B0; else if (type == ALSA_MIDI) - return 0x307130FF; + return 0x307130B0; else - return 0xFF0000FF; + return 0xFF0000B0; } |