mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-04 20:00:27 +02:00
win32: updated the popup menu creation flag by using TPM_LAYOUTRTL for RtL mode. #25330
git-svn-id: trunk@43510 -
This commit is contained in:
parent
d6a3637128
commit
0a62d8b17e
@ -1502,9 +1502,9 @@ var
|
||||
const
|
||||
lAlignment: array[TPopupAlignment, Boolean] of DWORD = (
|
||||
{ left-to-rght } { right-to-left }
|
||||
{ paLeft } (TPM_LEFTALIGN, TPM_RIGHTALIGN),
|
||||
{ paRight } (TPM_RIGHTALIGN, TPM_LEFTALIGN),
|
||||
{ paCenter } (TPM_CENTERALIGN, TPM_CENTERALIGN)
|
||||
{ paLeft } (TPM_LEFTALIGN, TPM_RIGHTALIGN or TPM_LAYOUTRTL),
|
||||
{ paRight } (TPM_RIGHTALIGN, TPM_LEFTALIGN or TPM_LAYOUTRTL),
|
||||
{ paCenter } (TPM_CENTERALIGN, TPM_CENTERALIGN or TPM_LAYOUTRTL)
|
||||
);
|
||||
lTrackButtons: array[TTrackButton] of DWORD = (
|
||||
{ tbRightButton } TPM_RIGHTBUTTON,
|
||||
|
Loading…
Reference in New Issue
Block a user