diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2024-06-20 19:22:20 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2024-06-20 20:16:33 +0200 |
commit | 941f7f5ed53be559d79633d8dd26e42e02389518 (patch) | |
tree | 68712b44f8e2ee1842769712b6545989dacc96bb /src/timeline/InputBar.cpp | |
parent | Fix compilation on systems without specific platform interfaces (diff) | |
download | nheko-941f7f5ed53be559d79633d8dd26e42e02389518.tar.xz |
Fix QT_CONFIG check for wayland is only available since Qt6.7
Diffstat (limited to '')
-rw-r--r-- | src/timeline/InputBar.cpp | 4 |
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; } |