diff options
| author | 2010-08-09 13:02:41 +0000 | |
|---|---|---|
| committer | 2010-08-09 13:02:41 +0000 | |
| commit | a72c07243bc913bbee7fe572446d490fad9e5e43 (patch) | |
| tree | 2e75765ec14137cd79a949c5816ce04dc9d91ed6 /src/modules/popupeditor/popupeditor.cpp | |
| parent | typo (diff) | |
| download | KVIrc-a72c07243bc913bbee7fe572446d490fad9e5e43.tar.gz KVIrc-a72c07243bc913bbee7fe572446d490fad9e5e43.tar.bz2 KVIrc-a72c07243bc913bbee7fe572446d490fad9e5e43.zip | |
avoid qsplitter children to collapse, since we already have buttons where necessary (fixes #889);
small fix to iograph: added sanity check to traffic counters
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@4828 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/popupeditor/popupeditor.cpp')
| -rw-r--r-- | src/modules/popupeditor/popupeditor.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/popupeditor/popupeditor.cpp b/src/modules/popupeditor/popupeditor.cpp index ff3cdb8eb..b7ab9bb5a 100644 --- a/src/modules/popupeditor/popupeditor.cpp +++ b/src/modules/popupeditor/popupeditor.cpp @@ -201,8 +201,8 @@ KviSinglePopupEditor::KviSinglePopupEditor(QWidget * par) g->addWidget(m_pMenuButton,0,2); connect(m_pMenuButton,SIGNAL(clicked()),this,SLOT(testPopup())); QSplitter * spl = new QSplitter(Qt::Vertical,this); - spl->setObjectName("popupeditor"); - spl->setOpaqueResize(false); + spl->setObjectName("popupeditor_vertical_splitter"); + spl->setChildrenCollapsible(false); m_pTreeWidget = new QTreeWidget(spl); m_pTreeWidget->setColumnCount(2); @@ -1005,8 +1005,8 @@ KviPopupEditor::KviPopupEditor(QWidget * par) { QGridLayout * l = new QGridLayout(this); QSplitter * spl = new QSplitter(Qt::Horizontal,this); - spl->setObjectName("popupeditor"); - spl->setOpaqueResize(false); + spl->setObjectName("popupeditor_horizontal_splitter"); + spl->setChildrenCollapsible(false); l->addWidget(spl,0,0); KviTalVBox * box = new KviTalVBox(spl); |
