diff options
| author | 2017-02-25 18:48:35 -0500 | |
|---|---|---|
| committer | 2017-02-25 18:48:35 -0500 | |
| commit | d6f325d5e4735e6e742c3c7277887b8213d9c7d6 (patch) | |
| tree | 8773c9c2f2ebfdd8320510b35f72629c1086f4fa /src/modules/notifier/NotifierMessage.cpp | |
| parent | KviCryptEngine: Fix typo (diff) | |
| download | KVIrc-d6f325d5e4735e6e742c3c7277887b8213d9c7d6.tar.gz KVIrc-d6f325d5e4735e6e742c3c7277887b8213d9c7d6.tar.bz2 KVIrc-d6f325d5e4735e6e742c3c7277887b8213d9c7d6.zip | |
notifier module: Make message text selectable.
Diffstat (limited to 'src/modules/notifier/NotifierMessage.cpp')
| -rw-r--r-- | src/modules/notifier/NotifierMessage.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modules/notifier/NotifierMessage.cpp b/src/modules/notifier/NotifierMessage.cpp index fed24e816..b0a6e401b 100644 --- a/src/modules/notifier/NotifierMessage.cpp +++ b/src/modules/notifier/NotifierMessage.cpp @@ -88,6 +88,7 @@ void NotifierMessage::updateGui() m_pLabel1->setText(KviHtmlGenerator::convertToHtml(m_szText)); m_pLabel1->setWordWrap(true); m_pLabel1->setFont(KVI_OPTION_FONT(KviOption_fontNotifier)); + m_pLabel1->setTextInteractionFlags(Qt::TextSelectableByMouse); QPalette pal = m_pLabel1->palette(); pal.setColor(QPalette::WindowText, KVI_OPTION_COLOR(KviOption_colorNotifierForeground)); m_pLabel1->setPalette(pal); |
