mirror of
https://github.com/FellippeHeitor/InForm.git
synced 2025-01-15 03:49:56 +00:00
Simplifies checking for SelectionRectangle
Avoids having the editor lose focus inadvertently.
This commit is contained in:
parent
baa40dc3d2
commit
4391f4b15c
1 changed files with 2 additions and 2 deletions
|
@ -191,8 +191,8 @@ SUB __UI_BeforeUpdateDisplay
|
||||||
SendData b$, "MENUPANELACTIVE"
|
SendData b$, "MENUPANELACTIVE"
|
||||||
END IF
|
END IF
|
||||||
|
|
||||||
IF prevSelectionRectangle <> (__UI_SelectionRectangle OR __UI_CtrlIsDown OR __UI_ShiftIsDown) THEN
|
IF prevSelectionRectangle <> (__UI_SelectionRectangle) THEN
|
||||||
prevSelectionRectangle = (__UI_SelectionRectangle OR __UI_CtrlIsDown OR __UI_ShiftIsDown)
|
prevSelectionRectangle = (__UI_SelectionRectangle)
|
||||||
b$ = MKI$(prevSelectionRectangle)
|
b$ = MKI$(prevSelectionRectangle)
|
||||||
SendData b$, "SELECTIONRECTANGLE"
|
SendData b$, "SELECTIONRECTANGLE"
|
||||||
END IF
|
END IF
|
||||||
|
|
Loading…
Reference in a new issue