diff options
Diffstat (limited to 'libraries/qt4/patches/qt-everywhere-opensource-src-4.8.6-QTBUG-38585.patch')
-rw-r--r-- | libraries/qt4/patches/qt-everywhere-opensource-src-4.8.6-QTBUG-38585.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libraries/qt4/patches/qt-everywhere-opensource-src-4.8.6-QTBUG-38585.patch b/libraries/qt4/patches/qt-everywhere-opensource-src-4.8.6-QTBUG-38585.patch new file mode 100644 index 0000000000..bf5ae16447 --- /dev/null +++ b/libraries/qt4/patches/qt-everywhere-opensource-src-4.8.6-QTBUG-38585.patch @@ -0,0 +1,12 @@ +--- a/src/gui/kernel/qclipboard_x11.cpp.sav 2014-04-25 09:52:03.855693228 +0200 ++++ a/src/gui/kernel/qclipboard_x11.cpp 2014-04-25 09:51:58.038693777 +0200 +@@ -548,7 +548,8 @@ bool QX11Data::clipboardWaitForEvent(Win + return false; + + XSync(X11->display, false); +- usleep(50000); ++ if (!XPending(X11->display)) ++ usleep(5000); + + now.start(); + |