1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-06 23:02:42 +02:00

Fix our custom NumericText controls are scrambled in RTL layout.

Fix is to force them to be LTR (for now).
This commit is contained in:
James Crook 2018-08-09 19:01:45 +01:00
parent ddd1494e75
commit 3d6f3f1866

View File

@ -1233,6 +1233,7 @@ NumericTextCtrl::NumericTextCtrl(wxWindow *parent, wxWindowID id,
mMenuEnabled = options.menuEnabled; mMenuEnabled = options.menuEnabled;
mButtonWidth = 9; mButtonWidth = 9;
SetLayoutDirection(wxLayout_LeftToRight);
Layout(); Layout();
Fit(); Fit();
ValueToControls(); ValueToControls();