Fix Konsole cursor redraw on focus in

This was accidentally broken in commit efdf0bbc
This resolves Bug 2142
pull/2/head
Timothy Pearson 10 years ago
parent 276f3d1818
commit d8d566bb0f

@ -1929,7 +1929,8 @@ bool TEWidget::eventFilter( TQObject *obj, TQEvent *e )
if (fe->gotFocus()) if (fe->gotFocus())
{ {
emit focusInSignal(fe); emit focusInSignal(fe);
return true; // Do NOT return here otherwise the focusInEvent below will not fire, causing cursor drawing problems on focus
// See Bug 2142
} }
} }
if ( e->type() == TQEvent::Enter ) if ( e->type() == TQEvent::Enter )

Loading…
Cancel
Save