Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit ca877bb

Browse files
authored
Merge pull request #15106 from niteskum/AssociateGraphicAfterGUIDGenerated
Graphics File Associate workflow should get triggered after UUID is generated
2 parents f37493f + d99dbdd commit ca877bb

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/extensions/default/OpenWithExternalApplication/GraphicsFile.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,13 @@ define(function (require, exports, module) {
7272
return;
7373
}
7474

75+
var userUuid = PreferencesManager.getViewState("UUID"),
76+
olderUuid = PreferencesManager.getViewState("OlderUUID");
77+
78+
if(!(userUuid || olderUuid)) {
79+
return;
80+
}
81+
7582
_nodeDomain.exec("checkFileTypesInFolder", {
7683
extensions: _graphicsFileTypes.join(),
7784
folder: ProjectManager.getProjectRoot().fullPath,

0 commit comments

Comments
 (0)