diff options
| author | 2010-03-07 16:15:00 +0000 | |
|---|---|---|
| committer | 2010-03-07 16:15:00 +0000 | |
| commit | 10c64071446094dc04f07e892b1614e588140690 (patch) | |
| tree | 49e67f4dfc17e74c6000628b123c2570618f09b2 /src/modules/theme/managementdialog.cpp | |
| parent | quick fixes at classeditor (diff) | |
| download | KVIrc-10c64071446094dc04f07e892b1614e588140690.tar.gz KVIrc-10c64071446094dc04f07e892b1614e588140690.tar.bz2 KVIrc-10c64071446094dc04f07e892b1614e588140690.zip | |
fixed KviTalItemDelegate height calculation in sizeHint()
Theme management dialog: double click to apply a theme (was single click)
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@4103 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/theme/managementdialog.cpp')
| -rw-r--r-- | src/modules/theme/managementdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/theme/managementdialog.cpp b/src/modules/theme/managementdialog.cpp index 30564d1dc..e61960864 100644 --- a/src/modules/theme/managementdialog.cpp +++ b/src/modules/theme/managementdialog.cpp @@ -179,7 +179,7 @@ KviThemeManagementDialog::KviThemeManagementDialog(QWidget * parent) m_pListWidget->setSelectionMode(QAbstractItemView::ExtendedSelection); m_pListWidget->setSortingEnabled(true); - connect(m_pListWidget,SIGNAL(itemActivated(QListWidgetItem *)),this,SLOT(applyTheme(QListWidgetItem *))); + connect(m_pListWidget,SIGNAL(itemDoubleClicked(QListWidgetItem *)),this,SLOT(applyTheme(QListWidgetItem *))); //FIXME tooltip //connect(m_pListWidget,SIGNAL(tipRequest(QListWidgetItem *,const QPoint &)),this,SLOT(tipRequest(QListWidgetItem *,const QPoint &))); |
