dear user:
we checked some codes, and found that select color of thumb view is not using g_sel_color.
you can find codes from [PDFThumbView onDrawOffScreen] implement in PDFThumbView.m
if(m_sel_pno >= 0 && m_sel_pno >= start && m_sel_pno <= end)
{
RDVPage *vpage = [m_layout vGetPage:m_sel_pno];
float scale = 1.0f/(m_zoom * m_scale_pix);
float left = (float)vpage.x - self.contentOffset.x * m_scale_pix;
float top = (float)vpage.y - self.contentOffset.y * m_scale_pix;
CGRect rect = CGRectMake(scale * left, scale * top, scale * vpage.w, scale * vpage.h);
//CGRect rect = CGRectMake(0, 0, scale * vpage.w, scale * vpage.h);
CGFloat clr[4] = {0, 0, 1, 0.25}; //currently, select color is const value
CGContextSetFillColor(ctx, clr);
CGContextFillRect(ctx, rect);
}
that line:
CGFloat clr[4] = {0, 0, 1, 0.25};
is blue transparency color.