Summary: | digikam scan for new images progress bar starts at 100% | ||
---|---|---|---|
Product: | [Applications] digikam | Reporter: | Roman Fietze <kde> |
Component: | Database-Scan | Assignee: | Digikam Developers <digikam-bugs-null> |
Status: | RESOLVED FIXED | ||
Severity: | wishlist | CC: | caulier.gilles |
Priority: | NOR | ||
Version: | 0.10.0 | ||
Target Milestone: | --- | ||
Platform: | Compiled Sources | ||
OS: | Unspecified | ||
Latest Commit: | Version Fixed In: | 0.10.0 | |
Sentry Crash Report: |
Description
Roman Fietze
2009-01-01 17:44:17 UTC
SVN commit 904217 by cgilles: reset progress bar when dialog is created. Roman : this patch must be fine, but like i have only fast computers here, i'm not sure if all will be fine for you. BUG: 179298 M +3 -1 dprogressdlg.cpp M +1 -1 dprogressdlg.h WebSVN link: http://websvn.kde.org/?view=rev&revision=904217 (In reply to comment #1) > SVN commit 904217 by cgilles ... Thanks for that pointer. > i'm not sure if all will be fine for you Not really. So I took the time and checked the sources. Instead of adding reset() to DProgressDlg CTOR, changing ScanController::createProgressDialog would probably a better solution. But because I'm new to digikam source code, I cannot know if that would have any side effects. At least it seems to work here. Index: digikam/libs/dialogs/dprogressdlg.cpp =================================================================== --- digikam/libs/dialogs/dprogressdlg.cpp (revision 904225) +++ digikam/libs/dialogs/dprogressdlg.cpp (working copy) @@ -128,8 +128,6 @@ connect(this, SIGNAL(cancelClicked()), this, SLOT(slotCancel())); - - reset(); } DProgressDlg::~DProgressDlg() Index: digikam/digikam/scancontroller.cpp =================================================================== --- digikam/digikam/scancontroller.cpp (revision 904225) +++ digikam/digikam/scancontroller.cpp (working copy) @@ -268,7 +268,7 @@ "are registered in a database.") ); d->progressDialog->setMaximum(1); - d->progressDialog->setValue(1); + d->progressDialog->setValue(0); connect(this, SIGNAL(incrementProgressDialog(int)), d->progressDialog, SLOT(incrementMaximum(int))); SVN commit 904295 by cgilles: set progress bar to zero at startup when scancontroller start to work. Marcel, Andi, do not forget "endl" at end of kDebug and kDwarning else sometimes, kdelibs can crash CCMAIL: digikam-devel@kde.org CCBUG: 179298 M +37 -37 scancontroller.cpp M +2 -3 scancontroller.h WebSVN link: http://websvn.kde.org/?view=rev&revision=904295 |