mirror of
https://github.com/YACReader/yacreader
synced 2025-07-23 07:24:58 -04:00
a?adida la opci?n de compilaci?n que permite alternar entre el layout cl?sico de
YACReaderLibrary y el nuevo corregido bug en el evento paint de YACReaderTableView mejorado el redimensionamiento de pictureflow
This commit is contained in:
@ -24,6 +24,14 @@ ComicFlowWidgetSW::ComicFlowWidgetSW(QWidget * parent)
|
||||
Pal.setColor(QPalette::Background, Qt::black);
|
||||
setAutoFillBackground(true);
|
||||
setPalette(Pal);
|
||||
|
||||
//config
|
||||
QMatrix m;
|
||||
m.rotate(-90);
|
||||
m.scale(-1,1);
|
||||
QImage image(":/images/setRead.png");
|
||||
QImage imageTransformed = image.transformed(m,Qt::SmoothTransformation);
|
||||
setMarkImage(imageTransformed);
|
||||
}
|
||||
|
||||
QSize ComicFlowWidgetSW::minimumSizeHint() const
|
||||
|
Reference in New Issue
Block a user