diff --git a/YACReaderLibrary/comic_flow_widget.cpp b/YACReaderLibrary/comic_flow_widget.cpp
index 10823e90..2a2263c6 100644
--- a/YACReaderLibrary/comic_flow_widget.cpp
+++ b/YACReaderLibrary/comic_flow_widget.cpp
@@ -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;
 	}
diff --git a/common/yacreader_flow_gl.cpp b/common/yacreader_flow_gl.cpp
index 87e3378b..840836ae 100644
--- a/common/yacreader_flow_gl.cpp
+++ b/common/yacreader_flow_gl.cpp
@@ -32,7 +32,7 @@ struct Preset defaultYACReaderFlowConfig = {
 
 	0.f,    //CF_X the X Position of the Coverflow 
 	0.f,    //CF_Y the Y Position of the Coverflow
-	-12.f,  //CF_Z the Z Position of the Coverflow
+	-8.f,  //CF_Z the Z Position of the Coverflow
 
 	15.f,   //CF_RX the X Rotation of the Coverflow
 	0.f,    //CF_RY the Y Rotation of the Coverflow
diff --git a/custom_widgets/yacreader_options_dialog.cpp b/custom_widgets/yacreader_options_dialog.cpp
index 3858ecff..00db7b55 100644
--- a/custom_widgets/yacreader_options_dialog.cpp
+++ b/custom_widgets/yacreader_options_dialog.cpp
@@ -33,7 +33,7 @@ YACReaderOptionsDialog::YACReaderOptionsDialog(QWidget * parent)
 	//sw CONNECTIONS
 	connect(sw->radio1,SIGNAL(toggled(bool)),this,SLOT(setClassicConfigSW()));
 	connect(sw->radio2,SIGNAL(toggled(bool)),this,SLOT(setStripeConfigSW()));
-	connect(sw->radio3,SIGNAL(togg+led(bool)),this,SLOT(setOverlappedStripeConfigSW()));
+	connect(sw->radio3,SIGNAL(toggled(bool)),this,SLOT(setOverlappedStripeConfigSW()));
 
 	//gl CONNECTIONS
 	connect(gl->radioClassic,SIGNAL(toggled(bool)),this,SLOT(setClassicConfig()));