mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 05:08:57 +00:00
GUI: Fix truncated text on OS X
This commit is contained in:
parent
49dd4a9f1e
commit
45ad585baf
3 changed files with 13 additions and 0 deletions
|
@ -37,7 +37,12 @@ void AdvancedConfigPane::InitializeGUI()
|
|||
"can and will break games and cause glitches. "
|
||||
"Do so at your own risk. Please do not report "
|
||||
"bugs that occur with a non-default clock. "));
|
||||
|
||||
#ifdef __APPLE__
|
||||
clock_override_description->Wrap(550);
|
||||
#else
|
||||
clock_override_description->Wrap(400);
|
||||
#endif
|
||||
|
||||
wxBoxSizer* const clock_override_checkbox_sizer = new wxBoxSizer(wxHORIZONTAL);
|
||||
clock_override_checkbox_sizer->Add(m_clock_override_checkbox, 1, wxALL, 5);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue