File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ let version_id = "7.2.x";
1111
1212/** @summary version date
1313 * @desc Release date in format day/month/year like "19/11/2021" */
14- let version_date = "3 /11/2022";
14+ let version_date = "4 /11/2022";
1515
1616/** @summary version id and date
1717 * @desc Produced by concatenation of {@link version_id} and {@link version_date}
@@ -53935,7 +53935,7 @@ function addDragHandler(_painter, arg) {
5393553935
5393653936 drag_move
5393753937 .on("start", function(evnt) {
53938- if (detectRightButton(evnt.sourceEvent)) return;
53938+ if (detectRightButton(evnt.sourceEvent) || drag_rect ) return;
5393953939
5394053940 closeMenu(); // close menu
5394153941
@@ -75985,8 +75985,8 @@ class HierarchyPainter extends BasePainter {
7598575985 * @private */
7598675986 dropItem(itemname, divid, opt) {
7598775987
75988- if (opt && typeof opt === 'function') { call_back = opt; opt = ""; }
75989- if (opt===undefined) opt = "";
75988+ if (( opt === undefined) || ( typeof opt === 'function'))
75989+ opt = "";
7599075990
7599175991 let drop_complete = (drop_painter, is_main_painter) => {
7599275992 if (!is_main_painter && (typeof drop_painter?.setItemName == 'function'))
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ let version_id = "7.2.x";
55
66/** @summary version date
77 * @desc Release date in format day/month/year like "19/11/2021" */
8- let version_date = "3 /11/2022" ;
8+ let version_date = "4 /11/2022" ;
99
1010/** @summary version id and date
1111 * @desc Produced by concatenation of {@link version_id} and {@link version_date}
You can’t perform that action at this time.
0 commit comments