Disabled the Transformation and Perspective transformers for the time being.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31807 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
8d6b4788b9
commit
5c0e62f05a
@ -375,6 +375,11 @@ TransformerListView::SetMenu(BMenu* menu)
|
||||
uint32 type;
|
||||
BString name;
|
||||
while (TransformerFactory::NextType(&cookie, &type, &name)) {
|
||||
// TODO: Disable the "Transformation" and "Perspective" transformers
|
||||
// since they are not very useful or even implemented at all.
|
||||
if (name == "Transformation" || name == "Perspective")
|
||||
continue;
|
||||
// End of TODO.
|
||||
BMessage* message = new BMessage(MSG_ADD_TRANSFORMER);
|
||||
message->AddInt32("type", type);
|
||||
addMenu->AddItem(new BMenuItem(name.String(), message));
|
||||
|
Loading…
Reference in New Issue
Block a user