Zhorn Software
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Go down
avatar
Tiesenhausen
Guest

set recurrence too big for screen Empty set recurrence too big for screen

Tue Mar 12, 2024 12:15 am
When I open the set recurrence menu panel, the bottom edge is off screen. Thus, I can't click to save my change. Is this right?

Tiesenhausen
avatar
guest_today
Posts : 104
Join date : 2022-12-29

set recurrence too big for screen Empty Re: set recurrence too big for screen

Tue Mar 12, 2024 7:17 am
I have the same problem , i think is a combination of setting dpi higher than 100    ( 125 ) and a " small " resolution screen setting ( 1280-768 ) .

For the recurrence window i found you can just press " Enter " because even if you change values the " Recur " button stays focused .

In a more general solution i use the " linux " inspired way of moving a window using alt+drag . You hold the alt button and then you can drag a window with the mouse from any part inside it much like the image sticky you can move with the mouse middle button .

I do not like to use the versions you find by googling ( safety .... )  but if you are familiar with AHK ( autohotkey ) scripting here is the program code to create it .

Code:
; alt drag utility

!lButton::

coordmode , mouse
MouseGetPos,Xm,Ym,IDwin,IDcontr


WinGetPos,WinXm,WinYm,WinW,WinH,ahk_id %IDwin%
Loop
{
    GetKeyState,Lmouse,LButton,P
    If Lmouse = U
        break
    MouseGetPos,XMnew,YMnew
    XMnew -= Xm
    YMnew -= Ym
    WinGotoX:=(WinXm + XMnew)
    WinGotoY:= (WinYm + YMnew)
    WinMove,ahk_id %IDwin%,,%WinGotoX%,%WinGotoY%
}
return
Back to top
Permissions in this forum:
You can reply to topics in this forum