From 0b65c0266643068b2a341a87d8415f26166c4dfb Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sat, 25 Sep 2010 11:05:02 +0000 Subject: [PATCH] BUGFIX: Fix possible issue with temporary download path persistence --- Changelog | 1 + src/options_imp.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/Changelog b/Changelog index e72556895..95bea1d71 100644 --- a/Changelog +++ b/Changelog @@ -6,6 +6,7 @@ - BUGFIX: Maximum download limit is now 10MB/s - BUGFIX: Fix 'download in scan dir' persistence - BUGFIX: Add .torrent extension only when missing (torrent creator) + - BUGFIX: Fix possible issue with temporary download path persistence * Tue Aug 24 2010 - Christophe Dumez - v2.4.0 - FEATURE: Added actions to "Move to top/bottom" of priority queue 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()));