Confirm multi-open (Add-In)

I see the same error with 1.1b and 13.14.1.

13.13 seems to be ok, from a quick check.

1 Like

Which line is the error on? (I'm assuming line 43 may not be correct for version 1.1b of the script.)

It's line 37:

doubleClickData.call = false;

from this segment:

// Called when a file or folder is double-clicked
function OnDoubleClick(doubleClickData) {
	if (doubleClickData.mouse != "none") { // ensure we react only when *not* triggered by mouse (such as middle double-click)
		doubleClickData.call = false;
		return false;
	}

	return handleOnDoubleClick(doubleClickData); // from docs: "If you return True, the double-click will be cancelled and the file will not be opened. If you return False the double-click will be allowed to continue (this is the default)."
}

No errors with Directory Opus 13.14 Build 9215 x64.

Fixed in 13.14.3.

2 Likes