(e)
| 26459 | } |
| 26460 | |
| 26461 | function checkPreview(e){ |
| 26462 | if (isConfigOpen) return false; |
| 26463 | let selStr; |
| 26464 | try { |
| 26465 | selStr = !selectionClientRect && selectionStr; |
| 26466 | }catch(e){} |
| 26467 | if (selStr && selStr != "\n") return false; |
| 26468 | let keyActive=(prefs.floatBar.globalkeys.type == "hold" && checkGlobalKeydown(e)) || |
| 26469 | (prefs.floatBar.globalkeys.type == "press" && globalFuncEnabled); |
| 26470 | return prefs.floatBar.globalkeys.invertInitShow?!keyActive:keyActive; |
| 26471 | } |
| 26472 | |
| 26473 | var untilMoveTimer, moveHandler, uniqueImgWinInitX, uniqueImgWinInitY; |
| 26474 | function waitUntilMove(target, callback) { |
no test coverage detected