Missed a few instances in the previous cleanup.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35134 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -1254,7 +1254,7 @@ AttributeView::MouseDown(BPoint point)
|
|||||||
offsetPoint.y = point.y - fIconRect.top;
|
offsetPoint.y = point.y - fIconRect.top;
|
||||||
if (IconCache::sIconCache->IconHitTest(offsetPoint, fIconModel, kNormalIcon, B_LARGE_ICON)) {
|
if (IconCache::sIconCache->IconHitTest(offsetPoint, fIconModel, kNormalIcon, B_LARGE_ICON)) {
|
||||||
// Can't drag the trash anywhere..
|
// Can't drag the trash anywhere..
|
||||||
fTrackingState = FSIsTrashDir(&entry) ? open_only_track : icon_track;
|
fTrackingState = fModel->IsTrash() ? open_only_track : icon_track;
|
||||||
|
|
||||||
// Check for possible double click
|
// Check for possible double click
|
||||||
if (abs((int32)(fClickPoint.x - point.x)) < kDragSlop
|
if (abs((int32)(fClickPoint.x - point.x)) < kDragSlop
|
||||||
@@ -2022,7 +2022,7 @@ AttributeView::BuildContextMenu(BMenu *parent)
|
|||||||
|
|
||||||
parent->AddItem(new BMenuItem("Open", new BMessage(kOpenSelection), 'O'));
|
parent->AddItem(new BMenuItem("Open", new BMessage(kOpenSelection), 'O'));
|
||||||
|
|
||||||
if (!FSIsTrashDir(&entry)) {
|
if (!model.IsTrash()) {
|
||||||
parent->AddItem(new BMenuItem("Edit name", new BMessage(kEditItem), 'E'));
|
parent->AddItem(new BMenuItem("Edit name", new BMessage(kEditItem), 'E'));
|
||||||
parent->AddSeparatorItem();
|
parent->AddSeparatorItem();
|
||||||
if (fModel->IsVolume()) {
|
if (fModel->IsVolume()) {
|
||||||
@@ -2037,7 +2037,7 @@ AttributeView::BuildContextMenu(BMenu *parent)
|
|||||||
item->SetEnabled(false);
|
item->SetEnabled(false);
|
||||||
} else
|
} else
|
||||||
parent->AddItem(new BMenuItem("Identify", new BMessage(kIdentifyEntry)));
|
parent->AddItem(new BMenuItem("Identify", new BMessage(kIdentifyEntry)));
|
||||||
} else if (FSIsTrashDir(&entry))
|
} else
|
||||||
parent->AddItem(new BMenuItem("Empty Trash", new BMessage(kEmptyTrash)));
|
parent->AddItem(new BMenuItem("Empty Trash", new BMessage(kEmptyTrash)));
|
||||||
|
|
||||||
BMenuItem *sizeItem = NULL;
|
BMenuItem *sizeItem = NULL;
|
||||||
|
|||||||
Reference in New Issue
Block a user