[SCM] ktp-text-ui packaging branch, master, updated. debian/16.04.2-1-19-g596d17d
Maximiliano Curia
maxy at moszumanska.debian.org
Sat Sep 10 17:05:18 UTC 2016
Gitweb-URL: http://git.debian.org/?p=pkg-kde/applications/ktp-text-ui.git;a=commitdiff;h=c5a6f3e
The following commit has been merged in the master branch:
commit c5a6f3e1fb4f52cbdc2566674b1f8580160c5103
Author: David Edmundson <kde at davidedmundson.co.uk>
Date: Thu May 5 02:02:04 2016 +0100
Don't block manually leaving a group chat based on a config option
The option makes sense for automatic behaviour, not manual ones.
---
app/chat-window.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app/chat-window.cpp b/app/chat-window.cpp
index c3f83bf..0c65007 100644
--- a/app/chat-window.cpp
+++ b/app/chat-window.cpp
@@ -439,7 +439,7 @@ void ChatWindow::onCurrentIndexChanged(int index)
onOtrStatusChanged(currentChatTab->otrStatus());
// Allow "Leaving" rooms only in group chat, and when persistent rooms are enabled
- actionCollection()->action(QLatin1String("leave-chat"))->setEnabled(currentChatTab->isGroupChat() && TextChatConfig::instance()->dontLeaveGroupChats());
+ actionCollection()->action(QLatin1String("leave-chat"))->setEnabled(currentChatTab->isGroupChat());
// No point having "Close" action with only one tab, it behaves exactly like "Quit"
actionCollection()->action(QLatin1String("file_close"))->setVisible(m_tabWidget->count() > 1);
--
ktp-text-ui packaging
More information about the pkg-kde-commits
mailing list