This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Requires AutoHotkey v2.0 | |
| #SingleInstance Force | |
| ; --- GUI Setup --- | |
| MyGui := Gui("", "ScreenshotHelper") | |
| MyGui.SetFont("s10", "Segoe UI") | |
| ; Basic controls + layout | |
| btnW := 100 | |
| btnH := 24 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Fixes this issue: https://github.com/neutralinojs/neutralinojs/issues/1488 | |
| */ | |
| /** | |
| * This adds window dragging functionality, as the Neutralino dragging fails on Windows 11. | |
| * See issue: https://github.com/neutralinojs/neutralinojs/issues/1488 | |
| */ | |
| const dragArea = document.getElementById("app"); | |
| let isDragging = false; |