From fbed17746dd83b360ec7dd78a609b49c459d0607 Mon Sep 17 00:00:00 2001 From: Tee Date: Wed, 22 Nov 2023 12:08:54 +0100 Subject: [PATCH] audition fix --- src/host/AUDT.jsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/host/AUDT.jsx b/src/host/AUDT.jsx index ae92438..14e2e31 100644 --- a/src/host/AUDT.jsx +++ b/src/host/AUDT.jsx @@ -12,13 +12,13 @@ function state(){ x = "CD Layout"; break; default: - x = "Nothing"; + x = "No file."; } return x; }catch(e){ - return "Nothing"; + return ""; } } @@ -30,11 +30,11 @@ function details(){ if(app.activeDocument && app.activeDocument.displayName){ return app.activeDocument.displayName; }else{ - return "No file."; + return ""; } }catch(e){ - return "No file."; + return ""; } }