Emit reloaded signal in LightOutputNodeTile

This commit is contained in:
Eric Van Albert
2018-10-28 17:19:17 -04:00
parent 46b31910a3
commit 03704ca2f6
+3 -1
View File
@@ -41,8 +41,10 @@ VideoNodeTile {
}
Keys.onPressed: {
if (event.modifiers == Qt.NoModifier) {
if (event.key == Qt.Key_R)
if (event.key == Qt.Key_R) {
videoNode.reload();
reloaded();
}
}
}
}