diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-11 00:19:05 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-11 00:19:05 -0500 |
commit | d8d566bb0f1e1e740c7a76e6f6d0c51a2f65acde (patch) | |
tree | 81b09bd817285108e26aeb8fc8e9ac466d56cf93 /konsole | |
parent | 276f3d1818d77a8b84ecfa39709bcc011591f5c3 (diff) | |
download | tdebase-d8d566bb0f1e1e740c7a76e6f6d0c51a2f65acde.tar.gz tdebase-d8d566bb0f1e1e740c7a76e6f6d0c51a2f65acde.zip |
Fix Konsole cursor redraw on focus in
This was accidentally broken in commit efdf0bbc
This resolves Bug 2142
Diffstat (limited to 'konsole')
-rw-r--r-- | konsole/konsole/TEWidget.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
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 ) |