From f185c02f4c737d10700cf7a721ba21b5beed60da Mon Sep 17 00:00:00 2001 From: Nariman Jelveh Date: Sun, 16 Jun 2024 19:00:53 -0700 Subject: [PATCH] Update UIContextMenu.js --- src/UI/UIContextMenu.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/UI/UIContextMenu.js b/src/UI/UIContextMenu.js index 7f3d798a..c37d3937 100644 --- a/src/UI/UIContextMenu.js +++ b/src/UI/UIContextMenu.js @@ -141,7 +141,7 @@ function UIContextMenu(options){ if ( options?.delay === false) { $(contextMenu).show(0); } else if(options?.delay === true || options?.delay === 1 || options?.delay === undefined) { - $(contextMenu).fadeIn(80).show(0); + $(contextMenu).fadeIn(50).show(0); } else { $(contextMenu).fadeIn(options?.delay).show(0); }