QssParser: Interpret "oblique" as italic
[quassel.git] / src / client / clientuserinputhandler.cpp
index 8af827d..6baf952 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-2016 by the Quassel Project                        *
+ *   Copyright (C) 2005-2018 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
@@ -140,6 +140,12 @@ void ClientUserInputHandler::handleIgnore(const BufferInfo &bufferInfo, const QS
     );
 }
 
+void ClientUserInputHandler::handleList(const BufferInfo &bufferInfo, const QString &text)
+{
+    // Pass along any potential search parameters, list channels immediately
+    Client::instance()->displayChannelList(bufferInfo.networkId(), text, true);
+}
+
 
 void ClientUserInputHandler::switchBuffer(const NetworkId &networkId, const QString &bufferName)
 {