| 1320 | } |
| 1321 | |
| 1322 | Uint32 UICodeEditor::onKeyUp( const KeyEvent& event ) { |
| 1323 | mLastActivity.restart(); |
| 1324 | for ( auto& plugin : mPlugins ) |
| 1325 | if ( plugin->onKeyUp( this, event ) ) |
| 1326 | return 1; |
| 1327 | if ( mHandShown && !getInput()->isKeyModPressed() ) |
| 1328 | resetLinkOver( getInput()->getMousePos() ); |
| 1329 | return UIWidget::onKeyUp( event ); |
| 1330 | } |
| 1331 | |
| 1332 | TextPosition UICodeEditor::resolveScreenPosition( const Vector2f& position, bool clamp ) const { |
| 1333 | Vector2f localPos( convertToNodeSpace( position ) ); |
nothing calls this directly
no test coverage detected