リビジョン | 29088 (tree) |
---|---|
日時 | 2021-02-16 01:52:18 |
作者 | stefankueng |
when starting a new log dialog, pass the project properties path
@@ -1,4 +1,9 @@ | ||
1 | -Version 1.14.1 | |
1 | +Version 1.14.2 | |
2 | +- BUG: when starting a log dialog from an existing | |
3 | + log dialog, the project properties were | |
4 | + not read anymore. (Stefan) | |
5 | + | |
6 | +Version 1.14.1 | |
2 | 7 | - BUG: TortoiseMerge crashed if configured to |
3 | 8 | not use Ribbons. (Stefan) |
4 | 9 | - BUG: Bugtraq links in log dialog didn't |
@@ -7958,7 +7958,12 @@ | ||
7958 | 7958 | sCmd.Format(L"/command:log /path:\"%s\" /pegrev:%ld", |
7959 | 7959 | (LPCTSTR)pCmi->fileUrl, logrev); |
7960 | 7960 | } |
7961 | - | |
7961 | + if (m_hasWC) | |
7962 | + { | |
7963 | + CString sTmp; | |
7964 | + sTmp.Format(L" /propspath:\"%s\"", m_path.GetWinPath()); | |
7965 | + sCmd += sTmp; | |
7966 | + } | |
7962 | 7967 | if (bMergeLog) |
7963 | 7968 | sCmd += L" /merge"; |
7964 | 7969 | CAppUtils::RunTortoiseProc(sCmd); |