From 3a3e9271b15ea22e4e2140721cda6a741e619c3a Mon Sep 17 00:00:00 2001 From: Pascal de Bruijn Date: Mon, 6 Jul 2020 18:49:06 +0200 Subject: [PATCH] Field.cpp: wider def_width_wider This fixes truncated ComboBox present on some systems --- src/slic3r/GUI/Field.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Field.cpp b/src/slic3r/GUI/Field.cpp index e64f0f12c..598fec168 100644 --- a/src/slic3r/GUI/Field.cpp +++ b/src/slic3r/GUI/Field.cpp @@ -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()