mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-25 20:48:52 +03:00
Merge pull request #313 from MayeulC/shrug-text
Allow sending text after `shrug`
This commit is contained in:
commit
c3524ba89b
1 changed files with 1 additions and 1 deletions
|
@ -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") {
|
||||
|
|
Loading…
Reference in a new issue