| Summary: | dolphin freezes when cutting many files in icon view | ||
|---|---|---|---|
| Product: | [Applications] dolphin | Reporter: | e3k <erik.dobak> |
| Component: | general | Assignee: | Peter Penz <peter.penz19> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | cfeck, erik.dobak, toddrme2178 |
| Priority: | NOR | ||
| Version First Reported In: | 16.12.2 | ||
| Target Milestone: | --- | ||
| Platform: | Gentoo Packages | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
e3k
2010-11-25 16:24:09 UTC
Thanks for the report. I cannot reproduce the issue locally here and my current guess is that it might be a graphics driver issue, because the "grey icon effect" is applied to each cut icon. Does the situation change if you start Dolphin like this: dolphin -graphicssystem raster ? no i have still the same issue with dolphin -graphicssystem raster > the "grey icon effect" is applied to each cut icon
The effect should only be applied on visible items, otherwise I would consider this a bug.
Regarding the delay, could Klipper be an issue? Try quitting Klipper and check if you can reproduce.
did quit klipper. still an issue. did read this in /dolphin/src/dolphinview.cpp:
void DolphinView::cutSelectedItems()
{
QMimeData* mimeData = selectionMimeData();
KonqMimeData::addIsCutSelection(mimeData, true);
QApplication::clipboard()->setMimeData(mimeData);
}
void DolphinView::copySelectedItems()
{
QMimeData* mimeData = selectionMimeData();
QApplication::clipboard()->setMimeData(mimeData);
}
the difference between copy and paste was the KonqMimeData::addIsCutSelection(mimeData, true); line.
so i tried the same in Konqueror and quess what happened.
same issue in kde-base/konqueror-4.4.5
did open a konqueror bug: https://bugs.kde.org/show_bug.cgi?id=257950 after upgrading to 4.5.4 the issue is gone. |