fixed bug #1841573 - RTL components & instfiles page

WS_EX_LAYOUTRTL can be used for individual controls

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5387 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2007-11-30 09:54:13 +00:00
parent 80da480c7a
commit 668fe450a4
2 changed files with 11 additions and 2 deletions

View file

@ -75,7 +75,7 @@ void NSDFUNC ConvertStyleToRTL(enum nsControlType type, LPDWORD style, LPDWORD e
case NSCTL_TREE:
*style |= TVS_RTLREADING;
*exStyle |= WS_EX_RIGHT;
*exStyle |= WS_EX_RIGHT | WS_EX_LAYOUTRTL;
break;
default: