From 643bc5516c54713e40545935375b2068448ac4f9 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sat, 25 Sep 2010 11:02:40 +0000 Subject: [PATCH] Fix "Temp path" saving --- src/options_imp.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/options_imp.cpp b/src/options_imp.cpp index bfda541b5..ea19c1186 100644 --- a/src/options_imp.cpp +++ b/src/options_imp.cpp @@ -187,6 +187,7 @@ options_imp::options_imp(QWidget *parent):QDialog(parent){ connect(checkShowSplash, SIGNAL(toggled(bool)), this, SLOT(enableApplyButton())); // Downloads tab connect(textSavePath, SIGNAL(textChanged(QString)), this, SLOT(enableApplyButton())); + connect(textTempPath, SIGNAL(textChanged(QString)), this, SLOT(enableApplyButton())); connect(checkAppendLabel, SIGNAL(toggled(bool)), this, SLOT(enableApplyButton())); connect(checkAppendqB, SIGNAL(toggled(bool)), this, SLOT(enableApplyButton())); connect(checkPreallocateAll, SIGNAL(toggled(bool)), this, SLOT(enableApplyButton()));