From 981bf328ae3a48d08eb663582f6434f3ebabe253 Mon Sep 17 00:00:00 2001 From: Jon Evans Date: Fri, 24 Feb 2023 22:18:18 -0500 Subject: [PATCH] Value field needs to use the normal text control Fixes https://gitlab.com/kicad/code/kicad/-/issues/14056 --- eeschema/dialogs/dialog_field_properties.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/eeschema/dialogs/dialog_field_properties.cpp b/eeschema/dialogs/dialog_field_properties.cpp index 513e54b20d..a49fb2eddf 100644 --- a/eeschema/dialogs/dialog_field_properties.cpp +++ b/eeschema/dialogs/dialog_field_properties.cpp @@ -158,6 +158,7 @@ void DIALOG_FIELD_PROPERTIES::init() // Predefined fields cannot contain some chars, or cannot be empty, // and need a SCH_FIELD_VALIDATOR (m_StyledTextCtrl cannot use a SCH_FIELD_VALIDATOR). bool use_validator = m_fieldId == REFERENCE_FIELD + || m_fieldId == VALUE_FIELD || m_fieldId == FOOTPRINT_FIELD || m_fieldId == DATASHEET_FIELD || m_fieldId == SHEETNAME_V