Field.cpp: wider def_width_wider

This fixes truncated ComboBox present on some systems
This commit is contained in:
Pascal de Bruijn 2020-07-06 18:49:06 +02:00 committed by Oleksandra Yushchenko
parent 2e73a75951
commit 3a3e9271b1

View file

@ -129,7 +129,7 @@ void Field::PostInitialize()
// Values of width to alignments of fields
int Field::def_width() { return wxOSX ? 8 : 7; }
int Field::def_width_wider() { return 14; }
int Field::def_width_wider() { return 16; }
int Field::def_width_thinner() { return 4; }
void Field::on_kill_focus()