https://bugs.kde.org/show_bug.cgi?id=481311

--- Comment #1 from Jean-Baptiste Mardelle <[email protected]> ---
For the record, I can reproduce the bug on Windows with a very basic Qt
Application embedding a KFileWidget:
https://invent.kde.org/multimedia/kdenlive/-/snippets/3016

Also, the following patch - although I am not really sure if it is a proper fix
- fixes the problem and allows browsing a folder with > 800 files without
problem.

_________________________________________________
diff --git a/src/core/connectionbackend_p.h b/src/core/connectionbackend_p.h
index 39c3504c4..ae86eaaa5 100644
--- a/src/core/connectionbackend_p.h
+++ b/src/core/connectionbackend_p.h
@@ -40,7 +40,7 @@ private:
     bool signalEmitted;

     static const int HeaderSize = 10;
-    static const int StandardBufferSize = 32 * 1024;
+    static const int StandardBufferSize = 64 * 1024;

 Q_SIGNALS:
     void disconnected();
_________________________________________________

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to