From 119c23602ed1aa956d756ad6f56adb05cad1f815 Mon Sep 17 00:00:00 2001 From: Manuel Nickschas Date: Tue, 25 Aug 2009 17:50:56 +0200 Subject: [PATCH] Try workarounding bug #663 ("Teh Systray Heisenbug") Setting uniform row heights for BufferView seems to keep Quassel from crashing. This is not a long-term solution and has some sideeffects (don't use different font sizes for network and buffer items when playing with QSS!), but if it helps people to start Quassel, fine with me. Please report if it fixes the crashes for you! --- src/uisupport/bufferview.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/uisupport/bufferview.cpp b/src/uisupport/bufferview.cpp index 30007d91..ecaf7e94 100644 --- a/src/uisupport/bufferview.cpp +++ b/src/uisupport/bufferview.cpp @@ -71,6 +71,9 @@ void BufferView::init() { setAnimated(true); + // FIXME This is to workaround bug #663 + setUniformRowHeights(true); + #ifndef QT_NO_DRAGANDDROP setDragEnabled(true); setAcceptDrops(true); -- 2.20.1