[DEV] correct the regex parsing error in the second highlight pass

This commit is contained in:
2016-01-15 00:01:58 +01:00
parent c9b86afea0
commit d3d4650d62
6 changed files with 34 additions and 40 deletions

View File

@@ -508,13 +508,11 @@ bool appl::TextViewer::onEventInput(const ewol::event::Input& _event) {
markToRedraw();
return true;
}
APPL_VERBOSE("event : " << _event);
// Second call plugin
if (m_pluginManager->onEventInput(*this, _event) == true) {
markToRedraw();
return true;
}
APPL_VERBOSE("event2 : " << _event);
vec2 relativePos = relativePosition(_event.getPos());
// offset for the lineNumber:
relativePos -= vec2(m_lastOffsetDisplay, 0);