aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/dcc/chat.cpp
diff options
context:
space:
mode:
authorGravatar Fabio Bas2010-06-03 16:09:58 +0000
committerGravatar Fabio Bas2010-06-03 16:09:58 +0000
commitf6a34d6552e5e78a30e1982c6e0fd7b0e00085de (patch)
tree1514f577d9816d6b5ee9e26a81a80c7ce4b9ca5f /src/modules/dcc/chat.cpp
parentadded workaround for #801 (diff)
downloadKVIrc-f6a34d6552e5e78a30e1982c6e0fd7b0e00085de.tar.gz
KVIrc-f6a34d6552e5e78a30e1982c6e0fd7b0e00085de.tar.bz2
KVIrc-f6a34d6552e5e78a30e1982c6e0fd7b0e00085de.zip
disbaled the ability to collapse the ircview and the userlist using the splitter (it creates confusion with the hide/show userlist function)
ensure the ircview has a minimum size greater than the width of a KVI_TEXT_ICON (to avoid an infinite loop in calculateLineWraps()) git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@4419 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/dcc/chat.cpp')
-rw-r--r--src/modules/dcc/chat.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/modules/dcc/chat.cpp b/src/modules/dcc/chat.cpp
index 784d36dfe..02e897a04 100644
--- a/src/modules/dcc/chat.cpp
+++ b/src/modules/dcc/chat.cpp
@@ -102,6 +102,8 @@ KviDccChat::KviDccChat(KviFrame *pFrm,KviDccDescriptor * dcc,const char * name)
m_pSplitter = new KviTalSplitter(Qt::Horizontal,this);
m_pSplitter->setObjectName("dcc_chat_splitter");
+ m_pSplitter->setChildrenCollapsible(false);
+
m_pIrcView = new KviIrcView(m_pSplitter,pFrm,this);
connect(m_pIrcView,SIGNAL(rightClicked()),this,SLOT(textViewRightClicked()));
m_pInput = new KviInput(this);