From 0ddef1169d755c5c522a501a887056d90a959e1f Mon Sep 17 00:00:00 2001 From: TellowKrinkle Date: Tue, 30 Nov 2021 00:20:06 -0600 Subject: [PATCH] GS: Fix config default label alignment --- pcsx2/GS/Window/GSwxDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/GS/Window/GSwxDialog.cpp b/pcsx2/GS/Window/GSwxDialog.cpp index 28e3af0583..dd32ca5c09 100644 --- a/pcsx2/GS/Window/GSwxDialog.cpp +++ b/pcsx2/GS/Window/GSwxDialog.cpp @@ -59,7 +59,7 @@ namespace theApp.SetConfig(str, s[idx].value); } - void add_label(wxWindow* parent, wxSizer* sizer, const char* str, int tooltip = -1, wxSizerFlags flags = wxSizerFlags().Centre().Right(), long style = wxALIGN_RIGHT | wxALIGN_CENTRE_HORIZONTAL) + void add_label(wxWindow* parent, wxSizer* sizer, const char* str, int tooltip = -1, wxSizerFlags flags = wxSizerFlags().Centre().Right(), long style = wxALIGN_RIGHT | wxALIGN_CENTRE_VERTICAL) { auto* temp_text = new wxStaticText(parent, wxID_ANY, str, wxDefaultPosition, wxDefaultSize, style); add_tooltip(temp_text, tooltip);