summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-06-06 22:41:59 +0200
committerCarl Hetherington <cth@carlh.net>2021-06-06 22:41:59 +0200
commitea554f39cec595666a3d4552235ccca4e60305a5 (patch)
tree76505383e13a304d18c5175b041de0a23d40df05
parentb8925c349ae62a288f81da657c8c96876d617f0c (diff)
Fix alignment of mail protocol control (#2042).
-rw-r--r--src/wx/full_config_dialog.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/full_config_dialog.cc b/src/wx/full_config_dialog.cc
index e83cdac4d..dc21b249d 100644
--- a/src/wx/full_config_dialog.cc
+++ b/src/wx/full_config_dialog.cc
@@ -665,7 +665,7 @@ private:
_protocol->Append (_("Plain"));
_protocol->Append (_("STARTTLS"));
_protocol->Append (_("SSL"));
- s->Add (_protocol);
+ s->Add (_protocol, 1, wxALIGN_CENTER_VERTICAL);
table->Add (s, 1, wxEXPAND | wxALL);
}