diff --git a/src/kits/tracker/FSUtils.cpp b/src/kits/tracker/FSUtils.cpp index b2701e4afa..995b13ee43 100644 --- a/src/kits/tracker/FSUtils.cpp +++ b/src/kits/tracker/FSUtils.cpp @@ -591,7 +591,8 @@ InitCopy(uint32 moveMode, BObjectList *srcList, thread_id thread, case kMoveSelectionTo: { if (gStatusWindow) - gStatusWindow->CreateStatusItem(thread, kCopyState); + gStatusWindow->CreateStatusItem(thread, + moveMode == kMoveSelectionTo ? kMoveState : kCopyState); int32 totalItems = 0; off_t totalSize = 0; @@ -616,9 +617,7 @@ InitCopy(uint32 moveMode, BObjectList *srcList, thread_id thread, // this will be fast, only put up status if lots of items // moved, links created if (gStatusWindow) { - gStatusWindow->CreateStatusItem(thread, - moveMode == kMoveSelectionTo - ? kMoveState : kCreateLinkState); + gStatusWindow->CreateStatusItem(thread, kCreateLinkState); gStatusWindow->InitStatusItem(thread, numItems, numItems, destRef); }