Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUnderground78 <underground78@users.sourceforge.net>2011-12-19 02:07:11 +0400
committerUnderground78 <underground78@users.sourceforge.net>2011-12-19 02:07:11 +0400
commitbd75b1e508745ff77c0a2a6a3faf86201e26b7b3 (patch)
tree86a1be840cadca030d09aa426c9577b9f16b77f6 /src/thirdparty/ui
parentd0edb3a7c08ba5cba514fd1b8a4a5892e3bac8f7 (diff)
Improve Hebrew translation: the UI is now correctly displayed with a right-to-left layout. Patch by Superb.
This commit fixes ticket #1899. git-svn-id: https://mpc-hc.svn.sourceforge.net/svnroot/mpc-hc/trunk@3900 10f7b99b-c216-0410-bff0-8a66a9350fd8
Diffstat (limited to 'src/thirdparty/ui')
-rw-r--r--src/thirdparty/ui/TreePropSheet/TreePropSheet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thirdparty/ui/TreePropSheet/TreePropSheet.cpp b/src/thirdparty/ui/TreePropSheet/TreePropSheet.cpp
index 866e0e423..b19e3a4aa 100644
--- a/src/thirdparty/ui/TreePropSheet/TreePropSheet.cpp
+++ b/src/thirdparty/ui/TreePropSheet/TreePropSheet.cpp
@@ -266,8 +266,8 @@ void CTreePropSheet::MoveChildWindows(int nDx, int nDy)
{
CRect rect;
pWnd->GetWindowRect(rect);
- rect.OffsetRect(nDx, nDy);
ScreenToClient(rect);
+ rect.OffsetRect(nDx, nDy);
pWnd->MoveWindow(rect);
pWnd = pWnd->GetNextWindow();