diff --git a/.gitignore b/.gitignore index b6e4761..ee85b79 100644 --- a/.gitignore +++ b/.gitignore @@ -6,6 +6,9 @@ __pycache__/ # C extensions *.so +# IDEs +.vscode/ + # Distribution / packaging .Python build/ diff --git a/app b/app index 9c22527..7a52508 160000 --- a/app +++ b/app @@ -1 +1 @@ -Subproject commit 9c2252716ba5d81176e02934fe23a3a9cad2df2c +Subproject commit 7a52508a3becfaebfa9579246b57bd681fb0f1de diff --git a/javascript/openoutpaint-ext.js b/javascript/openoutpaint-ext.js index 174e676..cd4bb66 100644 --- a/javascript/openoutpaint-ext.js +++ b/javascript/openoutpaint-ext.js @@ -16,7 +16,7 @@ async function openoutpaint_get_image_from_gallery() { if (!button) button = buttons[0]; if (!button) - reject(new Error("[openoutpaint] No image selected in the gallery")); + reject(new Error("[openoutpaint] No image available in the gallery")); const canvas = document.createElement("canvas"); const image = document.createElement("img");