diff --git a/src/widgets/NumericTextCtrl.cpp b/src/widgets/NumericTextCtrl.cpp
index 68bb83c..3d8120e 100644
a
|
b
|
NumericTextCtrl::NumericTextCtrl(NumericConverter::Type type, |
1180 | 1180 | { |
1181 | 1181 | mAllowInvalidValue = false; |
1182 | 1182 | |
1183 | | mDigitBoxW = 10; |
1184 | | mDigitBoxH = 16; |
| 1183 | mDigitBoxW = 8; |
| 1184 | mDigitBoxH = 14; |
1185 | 1185 | |
1186 | 1186 | mReadOnly = false; |
1187 | 1187 | mMenuEnabled = true; |
diff --git a/src/widgets/Ruler.cpp b/src/widgets/Ruler.cpp
index 6cf2a6e..8b88ea8 100644
a
|
b
|
void Ruler::Update(TimeTrack* timetrack)// Envelope *speedEnv, long minSpeed, lo |
994 | 994 | else |
995 | 995 | desiredPixelHeight = 12; // why 12? 10 -> 12 seems to be max/min |
996 | 996 | |
997 | | if (desiredPixelHeight < 10)//8) |
998 | | desiredPixelHeight = 10;//8; |
999 | | if (desiredPixelHeight > 12) |
1000 | | desiredPixelHeight = 12; |
| 997 | if (desiredPixelHeight < 7)//8) |
| 998 | desiredPixelHeight = 7;//8; |
| 999 | if (desiredPixelHeight > 9) |
| 1000 | desiredPixelHeight = 9; |
1001 | 1001 | |
1002 | 1002 | // Keep making the font bigger until it's too big, then subtract one. |
1003 | 1003 | mDC->SetFont(wxFont(fontSize, wxFONTFAMILY_SWISS, wxFONTSTYLE_NORMAL, wxFONTWEIGHT_BOLD)); |