From d8d566bb0f1e1e740c7a76e6f6d0c51a2f65acde Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sat, 11 Oct 2014 00:19:05 -0500 Subject: Fix Konsole cursor redraw on focus in This was accidentally broken in commit efdf0bbc This resolves Bug 2142 --- konsole/konsole/TEWidget.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'konsole') diff --git a/konsole/konsole/TEWidget.cpp b/konsole/konsole/TEWidget.cpp index f16d97aac..f151044fc 100644 --- a/konsole/konsole/TEWidget.cpp +++ b/konsole/konsole/TEWidget.cpp @@ -1929,7 +1929,8 @@ bool TEWidget::eventFilter( TQObject *obj, TQEvent *e ) if (fe->gotFocus()) { 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 ) -- cgit v1.2.3