diff options
| author | 2010-06-03 16:09:58 +0000 | |
|---|---|---|
| committer | 2010-06-03 16:09:58 +0000 | |
| commit | f6a34d6552e5e78a30e1982c6e0fd7b0e00085de (patch) | |
| tree | 1514f577d9816d6b5ee9e26a81a80c7ce4b9ca5f /src/modules/dcc/chat.cpp | |
| parent | added workaround for #801 (diff) | |
| download | KVIrc-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.cpp | 2 |
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); |
