Fellow Daslight-Fans with too small jump-windows

,
With regards to the described challenge (and still using DL 5.0.4.2) I found a work-around at least for MS Windows machines.
If you want to install AutoHotkey 2.0 from here (
https://www.autohotkey.com/)* you may also want to try out following script which nicely maximizes the jump-window (or being more precise, maximizing every window in the front) only in the vertical direction after using STRG+SHIFT+y (or any other key after replacing the "y"):
## snip ##
; Requires AutoHotkey v2.0
; Hotkey: STRG + SHIFT + y
^+y::
{
MonitorGet A_Index, &L, &T, &R, &B
MonitorGetWorkArea A_Index, &WL, &WT, &WR, &WB
hwnd := WinExist("A")
WinGetPos &Xpos, &Ypos, &W, &H, hwnd
WinMove Xpos, WT, W, WB - WT
}
## snap ##
Just build a txt-file, copy the script into it, rename it to *.ahk, double-click it (or put it in the autostart-sequence) and you can vertically maximize every window in the front.
Maybe that is helpful for the one or the other - if not, just ignore my post.
Ole
* After uploading the current version to
www.virustotal.com for checking I also received three generic warnings, but since no actual thread was detected, I thought it was worth taking the risk...
Hallo DL-Fans,
falls es noch weitere User von 5.0.4.2 und drumherum geben sollte, die mit dem kleinen "Jump-to"-Fenster nicht zurechtkommen und nicht jedes Mal das Ding mühevoll per Maus maximieren wollen, AutoHotkey 2 bietet da auf Windows-Maschinen Abhilfe (
https://www.autohotkey.com/):
- AHK 2.0 installieren (ich habe beim Test auf
www.virustotal.com auch drei generische Warnungen gesehen, bin das Risiko der Installation aber eingegangen),
- ein txt-File erstellen,
- das Script oben hineinkopieren,
- das File in *.ahk umbenennen,
- doppelklicken (oder in den Windows Autostart-Bereich bewegen),
dann könnt ihr per STRG-SHIFT+y - oder nach Änderung mit fast jeder anderen Taste anstatt y - das jeweils vorne liegende Fenster nach oben und unten automatisch auf Monitorgröße maximieren, wobei die Breite unangetastet bleibt - funktioniert demzufolge auch mit dem Jump-to-Fenster von Daslight.
Ole