| Summary: | tag sometimes does not accept drop of photo(s), or reports wrong tag name to drop to | ||
|---|---|---|---|
| Product: | [Applications] digikam | Reporter: | Wilbert Berendsen <wbsoft> |
| Component: | Tags-Engine | Assignee: | Digikam Developers <digikam-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | 0.7.0 | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | 7.6.0 | |
| Sentry Crash Report: | |||
|
Description
Wilbert Berendsen
2004-08-26 13:13:32 UTC
I could add that sometimes folding and unfolding some tags help to work around the problem. CVS commit by jahrens: fixed... Can you test it Wilbert? CCMAIL: 88121-done@bugs.kde.org M +2 -1 albumfolderview.cpp 1.28 --- kdeextragear-3/digikam/digikam/albumfolderview.cpp #1.27:1.28 @@ -1177,5 +1177,6 @@ void AlbumFolderView::contentsDragMoveEv // Do not allow an album to be dropped on it's child AlbumFolderItem *folderItem = dynamic_cast<AlbumFolderItem*>(dragItem_); - if (!folderItem || folderItem->album()->isAncestorOf(newDropTarget->album())) + if ((!TagItemsDrag::canDecode(event) && !AlbumItemsDrag::canDecode(event)) && + (!folderItem || folderItem->album()->isAncestorOf(newDropTarget->album()))) { event->ignore(); It seems to be fixed, thanks! |