Skip to content

Commit

Permalink
Check changed on manageBaseBranch
Browse files Browse the repository at this point in the history
  • Loading branch information
gpongelli committed Jul 10, 2017
1 parent 7236e0d commit 8669ff4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Plugins/GitFlow/GitFlowForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ private void DisplayBranchDatas()
private void LoadBaseBranches()
{
var branchType = cbType.SelectedValue.ToString();
var manageBaseBranch = (branchType == Branch.feature.ToString("G") || branchType == Branch.hotfix.ToString("G") || branchType == Branch.support.ToString("G") || branchType == Branch.bugfix.ToString("G"));
var manageBaseBranch = branchType != Branch.release.ToString("G");
pnlBasedOn.Visible = manageBaseBranch;

if (manageBaseBranch)
Expand Down

0 comments on commit 8669ff4

Please sign in to comment.