Summary: | (patch idea proposed) Both filename and (long) remaining time are chopped in the File Operation Progress notification | ||
---|---|---|---|
Product: | [Unmaintained] plasma4 | Reporter: | mitsarionas <mitsarionas> |
Component: | notifications | Assignee: | Rob Scheepmaker <rob> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | andresbajotierra, codenamed004, me, mikmach, mstu, plasma-bugs, talvik, thomas |
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Compiled Sources | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: | |||
Attachments: | an image showing tranfer speed without remaining time |
Description
mitsarionas
2009-07-07 22:14:21 UTC
I've 4.3 RC1 from the kubuntu ppa packages actually, sorry about the wrong info posted originally *** Bug 196835 has been marked as a duplicate of this bug. *** Bug 194881 is also related to this *** Bug 200257 has been marked as a duplicate of this bug. *** *** Bug 202067 has been marked as a duplicate of this bug. *** *** Bug 194881 has been marked as a duplicate of this bug. *** *** Bug 203642 has been marked as a duplicate of this bug. *** Created attachment 36566 [details]
an image showing tranfer speed without remaining time
a diff of kdebase/workspace/plasma/applets/systemtray/ui/jobwidget.cpp that seem to solve this bug:
188,190c188,189
< if (m_job->eta()) {
< m_eta->setText(i18n("%1 (%2 remaining)", m_job->speed(),
< KGlobal::locale()->prettyFormatDuration(m_job->eta())));
---
> if (m_job->eta()) {
> m_eta->setText(i18n("%1 ", m_job->speed())) ;
the remaining time is shown in two different places, in the title area and next to transfer speed. This patch just doesnt show this info next to the transfer speed
a picture is attached with this post to show the effect of the change.
SVN commit 1019281 by aseigo: use a more compact rep BUG:199346 M +1 -1 jobwidget.cpp WebSVN link: http://websvn.kde.org/?view=rev&revision=1019281 using rev. 1020653 both in kdelibs and kdebase and the transfer speed line is not shown anymore .. *** Bug 209506 has been marked as a duplicate of this bug. *** The bug about the speed and the ETA of the transfer not being shown at all is being tracked at bug 210081. Thanks |