Skip to content
Snippets Groups Projects
Unverified Commit c3524ba8 authored by Nicolas Werner's avatar Nicolas Werner Committed by GitHub
Browse files

Merge pull request #313 from MayeulC/shrug-text

Allow sending text after `shrug`
parents 5fb3d4ed a66046aa
No related branches found
No related tags found
No related merge requests found
......@@ -703,7 +703,7 @@ TextInputWidget::command(QString command, QString args)
} else if (command == "roomnick") {
emit changeRoomNick(args);
} else if (command == "shrug") {
emit sendTextMessage(\\_(ツ)_/¯");
emit sendTextMessage(\\_(ツ)_/¯" + (args.isEmpty() ? "" : " " + args));
} else if (command == "fliptable") {
emit sendTextMessage("(╯°□°)╯︵ ┻━┻");
} else if (command == "unfliptable") {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment