https://git.reactos.org/?p=reactos.git;a=commitdiff;h=64d32eab27ce87995e3ddd...
commit 64d32eab27ce87995e3ddd0dd487bfe6586eaef1 Author: Mark Jansen mark.jansen@reactos.org AuthorDate: Tue Feb 6 00:02:17 2018 +0100 Commit: Mark Jansen mark.jansen@reactos.org CommitDate: Tue Feb 6 00:08:12 2018 +0100
[RAPPS] Do not resize (hide) the treeview when minimizing. --- base/applications/rapps/gui.cpp | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/base/applications/rapps/gui.cpp b/base/applications/rapps/gui.cpp index 4a3e2794b3..4ef3bd475c 100644 --- a/base/applications/rapps/gui.cpp +++ b/base/applications/rapps/gui.cpp @@ -939,6 +939,8 @@ private:
VOID OnSize(HWND hwnd, WPARAM wParam, LPARAM lParam) { + if (wParam == SIZE_MINIMIZED) + return;
/* Size status bar */ m_StatusBar->SendMessage(WM_SIZE, 0, 0);