mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
Disable excessive colour debugging print statements.
git-svn-id: svn://localhost/ardour2/trunk@2030 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
66722dd874
commit
6e87232556
1 changed files with 2 additions and 2 deletions
|
|
@ -144,7 +144,7 @@ ThemeManager::button_press_event (GdkEventButton* ev)
|
|||
b = (int) floor (color.get_blue_p() * 255.0);
|
||||
|
||||
rgba = RGBA_TO_UINT(r,g,b,a);
|
||||
cerr << (*iter)[columns.name] << " == " << hex << rgba << endl;
|
||||
//cerr << (*iter)[columns.name] << " == " << hex << rgba << endl;
|
||||
(*iter)[columns.rgba] = rgba;
|
||||
(*iter)[columns.gdkcolor] = color;
|
||||
|
||||
|
|
@ -202,7 +202,7 @@ ThemeManager::setup_theme ()
|
|||
Gdk::Color col;
|
||||
uint32_t rgba = (*i)->get();
|
||||
UINT_TO_RGBA (rgba, &r, &g, &b, &a);
|
||||
cerr << (*i)->name() << " == " << hex << rgba << ": " << hex << r << " " << hex << g << " " << hex << b << endl;
|
||||
//cerr << (*i)->name() << " == " << hex << rgba << ": " << hex << r << " " << hex << g << " " << hex << b << endl;
|
||||
col.set_rgb_p (r / 255.0, g / 255.0, b / 255.0);
|
||||
|
||||
row[columns.name] = (*i)->name();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue