13
0

quick fix for weird colorselection bug where alpha gets set to 0 if it wasnt changed from previous value

git-svn-id: svn://localhost/ardour2/trunk@2083 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Doug McLain 2007-06-29 09:30:10 +00:00
parent eb296b2c95
commit a67dcdc267

View File

@ -145,7 +145,7 @@ ThemeManager::button_press_event (GdkEventButton* ev)
g = (int) floor (color.get_green_p() * 255.0);
b = (int) floor (color.get_blue_p() * 255.0);
rgba = RGBA_TO_UINT(r,g,b,a);
rgba = RGBA_TO_UINT(r,g,b,a>>8);
//cerr << (*iter)[columns.name] << " == " << hex << rgba << endl;
(*iter)[columns.rgba] = rgba;
(*iter)[columns.gdkcolor] = color;