X-Git-Url: https://git.cinelerra-gg.org/git/?p=goodguy%2Fcinelerra.git;a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Fresourcepixmap.C;h=86fb5023d384252047453b4b89918e035dad38dd;hp=4915a023c2db779ed2f020bf4b7aa5b63830b21e;hb=2778975bea06a53d8165a5e37bdacde1ae5f3320;hpb=1402e35df855081cb1e863fc5df4856866594aea diff --git a/cinelerra-5.1/cinelerra/resourcepixmap.C b/cinelerra-5.1/cinelerra/resourcepixmap.C index 4915a023..86fb5023 100644 --- a/cinelerra-5.1/cinelerra/resourcepixmap.C +++ b/cinelerra-5.1/cinelerra/resourcepixmap.C @@ -238,10 +238,11 @@ VFrame *ResourcePixmap::change_title_color(VFrame *title_bg, int color) VFrame *title_bar = new VFrame(tw, th, colormodel); uint8_t cr = (color>>16), cg = (color>>8), cb = (color>>0); uint8_t **bar_rows = title_bar->get_rows(); + const uint8_t gap_grey = 0x4a; if( th > 0 ) { uint8_t *cp = bar_rows[0]; for( int x=0; x 3 ) cp[3] = 0xff; cp += bpp; } @@ -249,7 +250,7 @@ VFrame *ResourcePixmap::change_title_color(VFrame *title_bg, int color) for( int y=1; y 0 ) { - cp[0] = cp[1] = cp[2] = 0; + cp[0] = cp[1] = cp[2] = gap_grey; if( bpp > 3 ) cp[3] = 0xff; cp += bpp; } @@ -259,7 +260,7 @@ VFrame *ResourcePixmap::change_title_color(VFrame *title_bg, int color) cp += bpp; } if( tw > 1 ) { - cp[0] = cp[1] = cp[2] = 0; + cp[0] = cp[1] = cp[2] = gap_grey; if( bpp > 3 ) cp[3] = 0xff; } } @@ -306,8 +307,7 @@ void ResourcePixmap::draw_title(TrackCanvas *canvas, char title[BCTEXTLEN]; edit->get_title(title); - color = color ? ~color & 0xffffff : mwindow->theme->title_color; - canvas->set_color(color); + canvas->set_color(mwindow->theme->title_color); canvas->set_font(mwindow->theme->title_font); // Justify the text on the left boundary of the edit if it is visible.