Various fixes to remove unnecessary warnings.

This commit is contained in:
Adam Treat
2023-05-25 11:13:02 -04:00
committed by AT
parent 0403a122ca
commit 98201540a2
4 changed files with 4 additions and 18 deletions

View File

@@ -632,11 +632,8 @@ Window {
onLinkActivated: function (link) {
if (!link.startsWith("context://"))
return;
console.log("link " + link);
return
var integer = parseInt(link.split("://")[1]);
console.log("context is" + referencesContext[integer - 1]);
referenceContextDialog.text = referencesContext[integer - 1];
referenceContextDialog.open();
}