Skip to content

Commit

Permalink
Merge pull request #5034 from lioncash/sizer
Browse files Browse the repository at this point in the history
GeneralConfigPane: Fix analytics sizer's right side being misaligned by 5 units
  • Loading branch information
Helios747 committed Mar 7, 2017
2 parents 7d681f9 + 26f7f55 commit e895879
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/DolphinWX/Config/GeneralConfigPane.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ void GeneralConfigPane::InitializeGUI()
main_sizer->AddSpacer(space5);
main_sizer->Add(basic_settings_sizer, 0, wxEXPAND | wxLEFT | wxRIGHT, space5);
main_sizer->AddSpacer(space5);
main_sizer->Add(analytics_sizer, 0, wxEXPAND | wxLEFT | wxLEFT, space5);
main_sizer->Add(analytics_sizer, 0, wxEXPAND | wxLEFT | wxRIGHT, space5);
main_sizer->AddSpacer(space5);
main_sizer->Add(advanced_settings_sizer, 0, wxEXPAND | wxLEFT | wxRIGHT, space5);
main_sizer->AddSpacer(space5);
Expand Down

0 comments on commit e895879

Please sign in to comment.