From kde-commits Wed Nov 10 17:48:59 2010 From: George Kiagiadakis Date: Wed, 10 Nov 2010 17:48:59 +0000 To: kde-commits Subject: KDE/kdenetwork/krfb/krfb Message-Id: <20101110174859.47F49AC8A3 () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=128941177305835 SVN commit 1195266 by gkiagia: Make the about dialog non-modal so that it doesn't freeze the image on the remote side. M +3 -1 trayicon.cpp --- trunk/KDE/kdenetwork/krfb/krfb/trayicon.cpp #1195265:1195266 @@ -49,7 +49,9 @@ void TrayIcon::showAbout() { - KAboutApplicationDialog(KGlobal::mainComponent().aboutData()).exec(); + KDialog *dlg = new KAboutApplicationDialog(KGlobal::mainComponent().aboutData()); + dlg->setAttribute(Qt::WA_DeleteOnClose, true); + dlg->show(); } void TrayIcon::showConnectedMessage(const QString &host)