Fix layout issues in git clone dialog

This commit is contained in:
Ian McInerney 2024-01-05 12:22:37 +00:00
parent 015a050169
commit 44ee299941
1 changed files with 4 additions and 0 deletions

View File

@ -65,6 +65,8 @@ DIALOG_GIT_REPOSITORY::DIALOG_GIT_REPOSITORY( wxWindow* aParent, git_repository*
SetupStandardButtons();
updateAuthControls();
Layout();
}
DIALOG_GIT_REPOSITORY::~DIALOG_GIT_REPOSITORY()
@ -439,6 +441,8 @@ void DIALOG_GIT_REPOSITORY::updateAuthControls()
setDefaultSSHKey();
}
}
Layout();
}