From a67dcdc267bc133cab63e0e6355edbfa5dacb6ab Mon Sep 17 00:00:00 2001 From: Doug McLain Date: Fri, 29 Jun 2007 09:30:10 +0000 Subject: [PATCH] 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 --- gtk2_ardour/theme_manager.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/theme_manager.cc b/gtk2_ardour/theme_manager.cc index ffceb36109..1160016750 100644 --- a/gtk2_ardour/theme_manager.cc +++ b/gtk2_ardour/theme_manager.cc @@ -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;