Branch: master

d8d566bb 2014-10-11 00:19:05 Timothy Pearson
Fix Konsole cursor redraw on focus in
This was accidentally broken in commit efdf0bbc
This resolves Bug 2142
M konsole/konsole/TEWidget.cpp
diff --git a/konsole/konsole/TEWidget.cpp b/konsole/konsole/TEWidget.cpp
index f16d97a..f151044 100644
--- a/konsole/konsole/TEWidget.cpp
+++ b/konsole/konsole/TEWidget.cpp
@@ -1929,7 +1929,8 @@
     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 )