From f242fce5fded2e178db75f4c8092bda2b3e89a2f Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Wed, 14 Jul 2010 08:00:21 +0000 Subject: [PATCH] Fix for 0.0 --- src/options_imp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/options_imp.cpp b/src/options_imp.cpp index 9ece8e313..b12e46e63 100644 --- a/src/options_imp.cpp +++ b/src/options_imp.cpp @@ -783,7 +783,7 @@ options_imp::options_imp(QWidget *parent):QDialog(parent){ comboEncryption->setCurrentIndex(Preferences::getEncryptionSetting()); // Ratio limit floatValue = Preferences::getMaxRatio(); - if(floatValue > 0.) { + if(floatValue >= 0.) { // Enable checkMaxRatio->setChecked(true); spinMaxRatio->setEnabled(true);