From c52230a5fe150ac1232a490ebd075387135f4adb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Mon, 11 Feb 2013 11:56:43 +0100 Subject: [PATCH] Corregido bug que causaba que las marcas de c?mic le?do no se dibujasen adecuadamente. --- CHANGELOG.txt | 5 ++++- YACReaderLibrary/library_window.cpp | 3 +-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 893747cf..d54620d8 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -8,4 +8,7 @@ A Añadido widget para la information label Añadido nuevo estilo visual a goToFlow Añadidos filtros para controlar el brillo, el contraste y el valor gamma -Añadidas notificaciones de portada y última página \ No newline at end of file +Añadidas notificaciones de portada y última página +InformationLabel se muestra ahora en la esquina superiror derecha. +InformationLabel se muestra en 3 tamaños diferentes en función de la resolución +Corregido bug que causaba que las marcas de cómic leído no se dibujasen adecuadamente. \ No newline at end of file diff --git a/YACReaderLibrary/library_window.cpp b/YACReaderLibrary/library_window.cpp index d0c20a45..9e85892f 100644 --- a/YACReaderLibrary/library_window.cpp +++ b/YACReaderLibrary/library_window.cpp @@ -82,8 +82,7 @@ void LibraryWindow::doLayout() m.rotate(-90); m.scale(-1,1); QImage image(":/images/setRead.png"); - image.transformed(m,Qt::SmoothTransformation); - comicFlow->setMarkImage(image); + comicFlow->setMarkImage(image.transformed(m,Qt::SmoothTransformation)); int heightDesktopResolution = QApplication::desktop()->screenGeometry().height(); int height,width; height = heightDesktopResolution*0.39;