From: Alexander von Renteln Date: Sun, 3 Feb 2008 15:25:31 +0000 (+0000) Subject: enabled query in user context menu - now that the query command is working (thanks... X-Git-Tag: 0.2.0-alpha1~128 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=94c69fd074d45d523e1b45f7f1c6b13207e8074b enabled query in user context menu - now that the query command is working (thanks to egs) --- diff --git a/src/uisupport/nickview.cpp b/src/uisupport/nickview.cpp index 99ba8ded..5c5862f3 100644 --- a/src/uisupport/nickview.cpp +++ b/src/uisupport/nickview.cpp @@ -95,7 +95,6 @@ void NickView::showContextMenu(const QPoint & pos ) { nickContextMenu.addSeparator(); QAction *queryAction = nickContextMenu.addAction(tr("Query")); - queryAction->setEnabled(false); QAction *dccChatAction = nickContextMenu.addAction(tr("DCC-Chat")); dccChatAction->setEnabled(false); QAction *sendFileAction = nickContextMenu.addAction(tr("Send file")); @@ -114,4 +113,5 @@ void NickView::showContextMenu(const QPoint & pos ) { else if(result == kickAction) { Client::instance()->userInput(bufferInfo, "/KICK " + username); } else if(result == kickBanAction) { Client::instance()->userInput(bufferInfo, "/KICKBAN " + username); } + else if(result == queryAction) { Client::instance()->userInput(bufferInfo, "/QUERY " + username); } } diff --git a/version.inc b/version.inc index 5b7a434a..e79ffe49 100644 --- a/version.inc +++ b/version.inc @@ -5,7 +5,7 @@ quasselVersion = "0.2.0-pre"; quasselDate = "2008-02-03"; - quasselBuild = 449; + quasselBuild = 452; //! Minimum client build number the core needs clientBuildNeeded = 437;