Codegen fixes, DPI scaling, SVG icons

This commit is contained in:
Jack Andersen
2019-05-26 15:29:10 -10:00
parent 9f94db6c82
commit d593500e18
195 changed files with 1720 additions and 192 deletions

View File

@@ -16,10 +16,10 @@ INodeEditor::INodeEditor(QWidget *pParent)
, mCloneState(eNotCloning)
{
// Create gizmo actions
mGizmoActions.append(new QAction(QIcon(":/icons/SelectMode.png"), "Select Objects", this));
mGizmoActions.append(new QAction(QIcon(":/icons/Translate.png"), "Translate", this));
mGizmoActions.append(new QAction(QIcon(":/icons/Rotate.png"), "Rotate", this));
mGizmoActions.append(new QAction(QIcon(":/icons/Scale.png"), "Scale", this));
mGizmoActions.append(new QAction(QIcon(":/icons/SelectMode.svg"), "Select Objects", this));
mGizmoActions.append(new QAction(QIcon(":/icons/Translate.svg"), "Translate", this));
mGizmoActions.append(new QAction(QIcon(":/icons/Rotate.svg"), "Rotate", this));
mGizmoActions.append(new QAction(QIcon(":/icons/Scale.svg"), "Scale", this));
mGizmoActions[0]->setShortcut(QKeySequence("Ctrl+Q"));
mGizmoActions[1]->setShortcut(QKeySequence("Ctrl+W"));