summaryrefslogtreecommitdiffstats
path: root/src/StateManager.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2006-12-13 18:16:57 +0000
committerDavid Robillard <d@drobilla.net>2006-12-13 18:16:57 +0000
commit26937f092e9e29f01c379e668928a0159073e578 (patch)
tree4bcf9e65e15dc0dd3717a93ae07caf89c09f317c /src/StateManager.cpp
parent7c7cf6b8a98d057fd8e73825383f94715ff7c339 (diff)
downloadpatchage-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
Diffstat (limited to 'src/StateManager.cpp')
-rw-r--r--src/StateManager.cpp8
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;
}