Bug 217592 - mouse cursor disappear when moved to topic, user list or channel tabs in conversation
Summary: mouse cursor disappear when moved to topic, user list or channel tabs in conv...
Status: RESOLVED UPSTREAM
Alias: None
Product: konversation
Classification: Applications
Component: general (show other bugs)
Version: 1.2.1
Platform: Compiled Sources Unspecified
: NOR normal
Target Milestone: ---
Assignee: Konversation Developers
URL:
Keywords:
: 231177 244128 247284 271880 (view as bug list)
Depends on:
Blocks:
 
Reported: 2009-12-06 15:15 UTC by Ruchir Brahmbhatt
Modified: 2018-04-14 01:53 UTC (History)
9 users (show)

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Ruchir Brahmbhatt 2009-12-06 15:15:20 UTC
Version:           1.2.1 (using Devel)
Installed from:    Compiled sources

Qt: 4.6.0
KDE: 4.3.80 (KDE 4.3.80 (KDE 4.4 Beta1)) "release 9"
Konversation: 1.2.1

When I move mouse over channel topic, user list or channel tabs, mouse cursor disappears.
Comment 1 Eike Hein 2009-12-06 15:23:47 UTC
It's a Qt 4.6 bug (one of many - the buggiest Qt I remember in years and years).
Comment 2 Myriam Schweingruber 2009-12-06 15:32:12 UTC
Can't reproduce it with KDE 4.3.4 and Konversation from SVN
Comment 3 Eike Hein 2009-12-06 15:43:49 UTC
Notably it doesn't happen consistently, just intermittently. Started with 4.6rc1 :-(.
Comment 4 Sergio Martins 2010-03-31 04:03:27 UTC
Anyone knows if this was fixed upstream ?
Comment 5 Eike Hein 2010-03-31 10:45:11 UTC
It's still happening in Qt 4.7 Technical Preview 1 at least.
Comment 6 Sergio Martins 2010-05-12 16:49:35 UTC
SVN commit 1125863 by smartins:


Workaround the disappearing mouse cursor bug so we can use to-do view without having to restart korganizer.

CCBUG: 231177
CCBUG: 217592

MERGE: none



 M  +3 -0      kotodoviewquickaddline.cpp  


WebSVN link: http://websvn.kde.org/?view=rev&revision=1125863
Comment 7 Sergio Martins 2010-05-12 16:51:46 UTC
*** Bug 231177 has been marked as a duplicate of this bug. ***
Comment 8 Eike Hein 2010-07-11 14:21:15 UTC
*** Bug 244128 has been marked as a duplicate of this bug. ***
Comment 9 Eike Hein 2010-07-30 15:33:05 UTC
There's been a small breakthrough: A user has finally found a reliable way to reproduce the problem (though for him, as for some others, the cursor changes into the text cursor instead of disappearing entirely).

1. Make sure you have the large paste warning dialog enabled (it is by default)
2. Select several lines of text in the chat text view
3. Try pasting them into the input line using middle-mouse (not Ctrl+V)
4. Close the large paste warning dialog that appears using the ESC key (this cancels the paste)
5. Cursor is now screwed up above the tab bar/tab list

Armed with the above and the knowledge that the Qt bug was so far as we remember introduced some time between Qt 4.6beta and Qt 4.6rc1, someone could bisect Qt to find the offending revision.
Comment 10 Sergio Martins 2010-07-30 22:11:51 UTC
Some months ago i bisected the korganizer "disappearing cursor" bug down to Qt 4.5 and gave up, was still reproducible.

I then noted that creating a QDialog instead of a KDialog made the bug go away, so i trimmed KDialog until it was ok, and that led to KDE's r989720.

That commit introduced the bug (or exposed a Qt bug).
Comment 11 Eike Hein 2010-08-02 10:10:14 UTC
Let me amend the above steps to reproduce a bit:

1. Make sure you have the large paste warning dialog enabled (it is by default)
2. Select several lines of text in the chat text view
3. Place the mouse cursor in the input line
4. Type several characters - this causes the mouse cursor to disappear, due to KDE's hide-cursor-when-typing feature
5. Paste the previously selected lines into the input line using middle-mouse (not Ctrl+V) without causing the cursor to move so much that it is unhidden in the process
6. Close the large paste warning dialog that appears using the ESC key (this
cancels the paste)
5. Cursor is now screwed up above the tab bar/tab list
Comment 12 Eike Hein 2010-08-10 20:40:31 UTC
*** Bug 247284 has been marked as a duplicate of this bug. ***
Comment 13 Martin Blumenstingl 2010-08-28 23:36:38 UTC
I tried Sergio's suggestion: reverting KDialog to r989719.
Unfortunately this did not make the bug go away in konversation.

Note: I reproduced the bug with the steps from Eike (from #c11).
I built konversation from git just a few hours ago (d2c114f67f6db1f0eae7edecdaf0486ca317970a was the last commit).

First I tried to revert the changes from r989720 (and just those changes):
=> bug still occurred.
Then I tried to revert to r989720-1 (=r989719):
=> bug still occurred.
Comment 14 Eike Hein 2010-08-29 13:22:11 UTC
Thank you Martin. That's unfortunately what I feared; the old and new KDialog code should be functionally equivalent. The hunt continues ...
Comment 15 Eike Hein 2010-09-20 12:40:18 UTC
commit 0a5bc983c817c24783b9578b0ed236bc3a9c3645
Author: Eike Hein <hein@kde.org>
Date:   Mon Sep 20 12:35:44 2010 +0200

    Work around bug 217592 (the infamous cursor disappearing act).
    
    The underlying ongoings are that there are two widgets involved,
    the KTextEdit and it's viewport(), both of which KCursor installs
    an event filter on, which on keypress events sets a blank cursor
    on the KTextEdit. On a FocusOut event, such as occurs when the
    paste warning KMessageBox is spawned and assumes focus, KCursor
    then calls unsetCursor() on it. Qt's behavior however seems to
    have changed in such a way that unsetCursor() doesn't affect the
    KTextEdit's viewport(), which QTextEdit originally set the I-Beam
    cursor on. So we do it manually here. But in the end either the
    Qt behavioral change has to be addressed, or KCursor has to be
    equipped to deal with it, since this obviously can happen in all
    KDE apps (and does, as seen in bug 231177).
    CCBUG:217592

diff --git a/src/viewer/ircinput.cpp b/src/viewer/ircinput.cpp
index 05653a8..a282e63 100644
--- a/src/viewer/ircinput.cpp
+++ b/src/viewer/ircinput.cpp
@@ -501,6 +501,9 @@ bool IRCInput::checkPaste(QString& text)
         QString bytesString = i18np("1 byte", "%1 bytes", text.length());
         QString linesString = i18np("1 line", "%1 lines", lines+1);
 
+        // Work around bug 217592.
+        viewport()->setCursor(Qt::IBeamCursor);
+
         doPaste=KMessageBox::warningYesNoCancel
             (this,
             i18nc(
Comment 16 Eike Hein 2010-09-28 14:37:40 UTC
Upstream (Qt) bug report with test case: http://bugreports.qt.nokia.com/browse/QTBUG-6185
Comment 17 Eike Hein 2010-09-30 21:08:06 UTC
The Qt bug has been fixed now and the fix will hopefully be included in Qt 4.7.1.
Comment 18 Bernd Buschinski 2011-05-07 17:54:07 UTC
*** Bug 271880 has been marked as a duplicate of this bug. ***