[DEBUG] remove filter in the Entry due to the etk::regex capabilities (add regression in functionnality)
This commit is contained in:
parent
7eb68dfa72
commit
07e00cc906
@ -423,6 +423,7 @@ void ewol::widget::Entry::setInternalValue(const etk::String& _newData) {
|
|||||||
etk::String previous = propertyValue;
|
etk::String previous = propertyValue;
|
||||||
// check the RegExp :
|
// check the RegExp :
|
||||||
if (_newData.size()>0) {
|
if (_newData.size()>0) {
|
||||||
|
/*
|
||||||
if (m_regex.parse(_newData, 0, _newData.size()) == false) {
|
if (m_regex.parse(_newData, 0, _newData.size()) == false) {
|
||||||
EWOL_INFO("The input data does not match with the regExp '" << _newData << "' Regex='" << propertyRegex << "'" );
|
EWOL_INFO("The input data does not match with the regExp '" << _newData << "' Regex='" << propertyRegex << "'" );
|
||||||
return;
|
return;
|
||||||
@ -435,6 +436,7 @@ void ewol::widget::Entry::setInternalValue(const etk::String& _newData) {
|
|||||||
EWOL_INFO("The input data does not match with the regExp '" << _newData << "' Regex='" << propertyRegex << "' (stop position error)" );
|
EWOL_INFO("The input data does not match with the regExp '" << _newData << "' Regex='" << propertyRegex << "' (stop position error)" );
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
propertyValue.setDirect(_newData);
|
propertyValue.setDirect(_newData);
|
||||||
markToRedraw();
|
markToRedraw();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user