summaryrefslogtreecommitdiffstats
path: root/src/StateManager.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-12-18 04:47:41 +0000
committerDavid Robillard <d@drobilla.net>2011-12-18 04:47:41 +0000
commitd7b5956f76f337eb7e2e2434cc20f707e905e861 (patch)
tree16ff8a48779aa45edd335ebcb32415f2c5c63b7b /src/StateManager.cpp
parent5590928168f6466a919b05b89ab06ec897e6405f (diff)
downloadpatchage-d7b5956f76f337eb7e2e2434cc20f707e905e861.tar.gz
patchage-d7b5956f76f337eb7e2e2434cc20f707e905e861.tar.bz2
patchage-d7b5956f76f337eb7e2e2434cc20f707e905e861.zip
Use opaque port colours.
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@3886 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/StateManager.cpp')
-rw-r--r--src/StateManager.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/StateManager.cpp b/src/StateManager.cpp
index e8f1fdd..2f6a971 100644
--- a/src/StateManager.cpp
+++ b/src/StateManager.cpp
@@ -259,11 +259,11 @@ StateManager::get_port_color(PortType type)
// Darkest tango palette colour, with S -= 6, V -= 6, w/ transparency
if (type == JACK_AUDIO)
- return 0x244678C0;
+ return 0x244678FF;
else if (type == JACK_MIDI)
- return 0x960909C0;
+ return 0x960909FF;
else if (type == ALSA_MIDI)
- return 0x4A8A0EC0;
+ return 0x4A8A0EFF;
else
return 0xFF0000FF;
}