X-Git-Url: https://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Fresourcepixmap.C;h=79a4e94374d1c53ff03d22f0b4f00ed388c2699e;hb=9a7a880b549aed850fd3c29abb152d69a94e23f8;hp=0da77299438ab769f192132e0ac216392d5ed37f;hpb=3d7a882d0808f456957f823454bd84ff8317a51a;p=goodguy%2Fcinelerra.git diff --git a/cinelerra-5.1/cinelerra/resourcepixmap.C b/cinelerra-5.1/cinelerra/resourcepixmap.C index 0da77299..79a4e943 100644 --- a/cinelerra-5.1/cinelerra/resourcepixmap.C +++ b/cinelerra-5.1/cinelerra/resourcepixmap.C @@ -270,13 +270,15 @@ VFrame *ResourcePixmap::change_picon_alpha(VFrame *picon_frame, int alpha) { uint8_t **picon_rows = picon_frame->get_rows(); int w = picon_frame->get_w(), h = picon_frame->get_h(); + int color_model = picon_frame->get_color_model(); + int bpp = BC_CModels::calculate_pixelsize(color_model); VFrame *frame = new VFrame(w, h, BC_RGBA8888); uint8_t **rows = frame->get_rows(); for( int y=0; ydraw_3segmenth(x, 0, w, total_x, total_w, title_bar, this); if( title_bar != title_bg ) delete title_bar; -// if( total_x > -BC_INFINITY ) { - char title[BCTEXTLEN]; - edit->get_title(title); - canvas->set_color(mwindow->theme->title_color); - canvas->set_font(mwindow->theme->title_font); + char title[BCTEXTLEN]; + edit->get_title(title); + 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. // Otherwise justify it on the left side of the screen. - int text_x = total_x + left_margin; - text_x = MAX(left_margin, text_x); + int text_x = total_x + left_margin; + text_x = MAX(left_margin, text_x); //printf("ResourcePixmap::draw_title 1 %d\n", text_x); - canvas->draw_text(text_x, - canvas->get_text_ascent(mwindow->theme->title_font) + 2, - title, strlen(title), this); -// } + canvas->draw_text(text_x, // 2, + canvas->get_text_ascent(mwindow->theme->title_font) + 2, + title, strlen(title), this); }