| Summary: | Quanta crash when upload (or enter) is pressed more than once in the upload dialog | ||
|---|---|---|---|
| Product: | [Unmaintained] quanta | Reporter: | Benjamin Bach <benjaoming> |
| Component: | general | Assignee: | András Manţia <amantia> |
| Status: | RESOLVED FIXED | ||
| Severity: | crash | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Mandrake RPMs | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Benjamin Bach
2004-09-05 17:35:57 UTC
Hi, I cannot find a bug without a concrete testcase and a backtrace. Also your Quanta version would be good to know. If it's 3.2.x, I suggest to try 3.3.0. 3.2.x is not maintained anymore and we know that it is a little crashy... Okay, sorry... I just read juring the bug report submission that adding your KDE version would be enough if the regarded program was in the same distro... uh well =) I will update and do a backtrace or maybe just a better discription... if the bug's still dancing... /Benjamin CVS commit by amantia:
Disable Proceed button in the upload dialog once the upload is started. Fixes
various problems like non-responding Quanta after upload and possibly the
bug described in #88892.
BUG: 88892
M +1 -0 projectupload.cpp 1.73.2.1
--- kdewebdev/quanta/project/projectupload.cpp #1.73:1.73.2.1
@@ -348,4 +348,5 @@ void ProjectUpload::startUpload()
uploadInProgress = true;
suspendUpload = false;
+ buttonUpload->setEnabled(false);
KURL u = *baseUrl;
u.setPath(u.protocol() == "file" ? "/" : "");
|