From 44ee2999415eaf02f81c0412af95f126416f93df Mon Sep 17 00:00:00 2001 From: Ian McInerney Date: Fri, 5 Jan 2024 12:22:37 +0000 Subject: [PATCH] Fix layout issues in git clone dialog --- common/dialogs/git/dialog_git_repository.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/dialogs/git/dialog_git_repository.cpp b/common/dialogs/git/dialog_git_repository.cpp index 0c93ec3716..3d2c44f2b9 100644 --- a/common/dialogs/git/dialog_git_repository.cpp +++ b/common/dialogs/git/dialog_git_repository.cpp @@ -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(); }