nodes: implemented short name

Nodes can provide "short" names for use in the node graph, distinct from their
full names shown everywhere else.
This commit is contained in:
itsmattkc
2020-04-29 14:33:57 +10:00
parent ff1a470aa0
commit 999e841bc7
11 changed files with 45 additions and 1 deletions
+5
View File
@@ -59,6 +59,11 @@ QString MatrixGenerator::Name() const
return tr("Orthographic Matrix");
}
QString MatrixGenerator::ShortName() const
{
return tr("Ortho");
}
QString MatrixGenerator::id() const
{
return QStringLiteral("org.olivevideoeditor.Olive.transform");