From 5814ef89450e3bc57b8249dd7f6f59bb0b2d0cb2 Mon Sep 17 00:00:00 2001 From: Sven Strickroth Date: Tue, 28 Aug 2012 15:06:24 +0200 Subject: [PATCH] Fixed issue #1369: Create Tag Dialog should not auto fill tag name textbox Signed-off-by: Sven Strickroth --- src/TortoiseProc/CreateBranchTagDlg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TortoiseProc/CreateBranchTagDlg.cpp b/src/TortoiseProc/CreateBranchTagDlg.cpp index a89cc2d7f..cb988d834 100644 --- a/src/TortoiseProc/CreateBranchTagDlg.cpp +++ b/src/TortoiseProc/CreateBranchTagDlg.cpp @@ -194,7 +194,7 @@ void CCreateBranchTagDlg::OnBnClickedOk() void CCreateBranchTagDlg::OnCbnSelchangeComboboxexBranch() { - if(this->m_ChooseVersioinBranch.GetString().Left(8)==_T("remotes/")) + if (this->m_ChooseVersioinBranch.GetString().Left(8)==_T("remotes/") && !m_bIsTag) { bool isDefault = false; this->UpdateData(); -- 2.11.4.GIT