Options dialog: Add default case to FlowType switch case to prevent undefined behaviour (just in case)

This commit is contained in:
Felix Kauselmann 2018-05-26 12:11:30 +02:00
parent 1ccb40624c
commit f7e2547531

View File

@ -275,6 +275,8 @@ void YACReaderOptionsDialog::restoreOptions(QSettings * settings)
case 5:
flowType = Custom;
break;
default:
flowType = CoverFlowLike;
}