summary refs log tree commit diff
diff options
context:
space:
mode:
authorLoren Burkholder <computersemiexpert@outlook.com>2024-03-01 19:47:33 -0500
committerLoren Burkholder <computersemiexpert@outlook.com>2024-03-01 19:47:33 -0500
commitbf89de8c7536f12c61a779c07d991e6b05e7d78b (patch)
tree6ed4afca4ae40edee921cd2c0b197049ea031365
parentMerge pull request #1688 from Nheko-Reborn/glitchtext (diff)
downloadnheko-bf89de8c7536f12c61a779c07d991e6b05e7d78b.tar.xz
Fix ordering of switch statement
-rw-r--r--src/CommandCompleter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/CommandCompleter.cpp b/src/CommandCompleter.cpp

index 33e7ef2c..dcb9ba9b 100644 --- a/src/CommandCompleter.cpp +++ b/src/CommandCompleter.cpp
@@ -172,12 +172,12 @@ CommandCompleter::data(const QModelIndex &index, int role) const return tr("/rainfall [message]"); case Msgtype: return tr("/msgtype <msgtype> [message]"); - case Goto: - return tr("/goto <message reference>"); case Glitch: return tr("/glitch <message>"); case GradualGlitch: return tr("/gradualglitch <message>"); + case Goto: + return tr("/goto <message reference>"); case ConvertToDm: return QStringLiteral("/converttodm"); case ConvertToRoom: