removed current cover indicator from 'flow'

enabled volume search in comic vine dialog
This commit is contained in:
Luis Ángel San Martín
2013-10-06 18:13:27 +02:00
parent e8a97230f5
commit b88715e26e
6 changed files with 176 additions and 30 deletions

View File

@ -934,17 +934,8 @@ void PictureFlowSoftwareRenderer::render()
renderSlides();
if(state->slideImages.size()>0)
{
int x = buffer.width()/2;
int size = buffer.width() * 0.021;
int size = buffer.width() * 0.015;
int start = buffer.width() * 0.010;
for(int j = start; j<size;j++)
{
buffer.setPixel(QPoint(x,j),QColor(255,255,255).rgb()-state->backgroundColor);
for(int i = 0; i<size-j;i++){
buffer.setPixel(QPoint(x-i,j),QColor(255,255,255).rgb()-state->backgroundColor);
buffer.setPixel(QPoint(x+i,j),QColor(255,255,255).rgb()-state->backgroundColor);
}
}
QPainter painter(&buffer);
painter.setPen(QColor(255,255,255).rgb()-state->backgroundColor);