diff options
author | bobzel <zzzman@gmail.com> | 2023-06-14 09:35:35 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2023-06-14 09:35:35 -0400 |
commit | ee88a9edb0c68cf99d8aee3ca8a001e5e53a30c2 (patch) | |
tree | 0b1d25a4ae71f8c8a59f7bcfde288ebb033573cc /src/client/util/DragManager.ts | |
parent | bf16eca7a84adfdf1c5970e7e4793568ee70325d (diff) |
fixed double clicking font icons when deafultDoubleClick is ignore but they have a double click script. fixed coloring of z order button
Diffstat (limited to 'src/client/util/DragManager.ts')
-rw-r--r-- | src/client/util/DragManager.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/util/DragManager.ts b/src/client/util/DragManager.ts index 668de5408..87833d322 100644 --- a/src/client/util/DragManager.ts +++ b/src/client/util/DragManager.ts @@ -614,8 +614,8 @@ ScriptingGlobals.add(function toggleRaiseOnDrag(forAllDocs: boolean, readOnly?: ? 'transparent' : DragManager.GetRaiseWhenDragged() ? Colors.MEDIUM_BLUE_ALT - : Colors.PINK; - return DragManager.GetRaiseWhenDragged() ? Colors.PINK : 'transparent'; + : Colors.LIGHT_BLUE; + return DragManager.GetRaiseWhenDragged() ? Colors.MEDIUM_BLUE_ALT : 'transparent'; } if (!forAllDocs) SelectionManager.Views().map(dv => (dv.rootDoc.raiseWhenDragged ? (dv.rootDoc.raiseWhenDragged = undefined) : dv.rootDoc.raiseWhenDragged === false ? (dv.rootDoc.raiseWhenDragged = true) : (dv.rootDoc.raiseWhenDragged = false))); else DragManager.SetRaiseWhenDragged(!DragManager.GetRaiseWhenDragged()); |