summary refs log tree commit diff
path: root/src/timeline/InputBar.cpp
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2024-06-20 19:22:20 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2024-06-20 20:16:33 +0200
commit941f7f5ed53be559d79633d8dd26e42e02389518 (patch)
tree68712b44f8e2ee1842769712b6545989dacc96bb /src/timeline/InputBar.cpp
parentFix compilation on systems without specific platform interfaces (diff)
downloadnheko-941f7f5ed53be559d79633d8dd26e42e02389518.tar.xz
Fix QT_CONFIG check for wayland is only available since Qt6.7
Diffstat (limited to '')
-rw-r--r--src/timeline/InputBar.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/timeline/InputBar.cpp b/src/timeline/InputBar.cpp
index b8c7016d..c7687ab6 100644
--- a/src/timeline/InputBar.cpp
+++ b/src/timeline/InputBar.cpp
@@ -1044,7 +1044,9 @@ void
 InputBar::toggleIgnore(const QString &user, const bool ignored)
 {
     if (!user.startsWith(u"@")) {
-        MainWindow::instance()->showNotification(tr("You need to pass a valid mxid when ignoring a user. '%1' is not a valid userid.").arg(user));
+        MainWindow::instance()->showNotification(
+          tr("You need to pass a valid mxid when ignoring a user. '%1' is not a valid userid.")
+            .arg(user));
         return;
     }