corregido bug que evitaba que pictureflow se pudiese configurar como StripOverlapped

corregido el estilo "modern" con m?s zoom
This commit is contained in:
Luis Ángel San Martín
2013-06-18 12:42:07 +02:00
parent b4dbb4f344
commit 2208868f90
3 changed files with 5 additions and 5 deletions

View File

@ -123,13 +123,13 @@ void ComicFlowWidgetSW::updateConfig(QSettings * settings)
{
switch (settings->value(FLOW_TYPE_SW).toInt())
{
case 0:
case CoverFlowLike:
flow->setFlowType(CoverFlowLike);
return;
case 1:
case Strip:
flow->setFlowType(Strip);
return;
case 2:
case StripOverlapped:
flow->setFlowType(StripOverlapped);
return;
}