From 53f3f3933aeac90a08f6266368d3e22202baa83a Mon Sep 17 00:00:00 2001 From: Sven Strickroth Date: Sat, 12 Jan 2013 20:20:18 +0100 Subject: [PATCH] Fixed issue #1536: Committing via log causes hidden progress dialog Signed-off-by: Sven Strickroth --- src/Changelog.txt | 1 + src/TortoiseProc/ProgressDlg.cpp | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Changelog.txt b/src/Changelog.txt index 6a9d319ca..7b14d5ccf 100644 --- a/src/Changelog.txt +++ b/src/Changelog.txt @@ -41,6 +41,7 @@ Released: unreleased * Fixed issue #1555: Commit dialog fails to warn submodule dirty state * Fixed issue #1556: Narrower treeview when launching Settings Dialog with default page Remote * Fixed issue #1383: Pageant is not always auto-loaded if using sync remote update (some without keys) + * Fixed issue #1536: Committing via log causes hidden progress dialog = Release 1.7.15.0 = Released: 2012-11-20 diff --git a/src/TortoiseProc/ProgressDlg.cpp b/src/TortoiseProc/ProgressDlg.cpp index 953d8fa82..5eb5d386c 100644 --- a/src/TortoiseProc/ProgressDlg.cpp +++ b/src/TortoiseProc/ProgressDlg.cpp @@ -1,6 +1,6 @@ // TortoiseGit - a Windows shell extension for easy version control -// Copyright (C) 2008-2012 - TortoiseGit +// Copyright (C) 2008-2013 - TortoiseGit // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License @@ -147,6 +147,9 @@ BOOL CProgressDlg::OnInitDialog() GetWindowText(sWindowTitle); CAppUtils::SetWindowTitle(m_hWnd, g_Git.m_CurrentDir, sWindowTitle); + // Make sure this dialog is shown in foreground (see issue #1536) + SetForegroundWindow(); + return TRUE; } -- 2.11.4.GIT