Revision | 29480 (tree) |
---|---|
Time | 2022-11-21 00:24:22 |
Author | ![]() |
In sparseCheckoutMode, the repo tree control wouldn't resize with the dialog when changing size of the window (but it was correctly sized when starting the dialog). Attach anchor to bottom right to make resize work
@@ -6,6 +6,9 @@ | ||
6 | 6 | if not all revisions were shown. (Stefan) |
7 | 7 | - BUG: context menu items in Win11 did show up but |
8 | 8 | didn't invoke the command. (Stefan |
9 | +- BUG: the repository tree control in the Checkout "Choose | |
10 | + items" dialog didn't resize properly when resizing | |
11 | + the window. (Daniel Sahlberg) | |
9 | 12 | |
10 | 13 | Version 1.14.5 |
11 | 14 | - BUG: 1.14.4 was wrongly linked against svn 1.14.1 |
@@ -1,6 +1,6 @@ | ||
1 | 1 | // TortoiseSVN - a Windows shell extension for easy version control |
2 | 2 | |
3 | -// Copyright (C) 2003-2021 - TortoiseSVN | |
3 | +// Copyright (C) 2003-2022 - TortoiseSVN | |
4 | 4 | |
5 | 5 | // This program is free software; you can redistribute it and/or |
6 | 6 | // modify it under the terms of the GNU General Public License |
@@ -463,7 +463,7 @@ | ||
463 | 463 | UnionRect(&rc, &rcBar, &rcTree); |
464 | 464 | ScreenToClient(&rc); |
465 | 465 | m_repoTree.MoveWindow(&rc, FALSE); |
466 | - AddAnchor(IDC_REPOTREE, TOP_LEFT, BOTTOM_LEFT); | |
466 | + AddAnchor(IDC_REPOTREE, TOP_LEFT, BOTTOM_RIGHT); | |
467 | 467 | } |
468 | 468 | SetPromptParentWindow(m_hWnd); |
469 | 469 | InterlockedExchange(&m_bThreadRunning, TRUE); |