From 4f1f2b6fc6ddcda3903ed7f87a32dc9e07ca667d Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Sun, 5 Jun 2022 18:19:14 +0200 Subject: [PATCH] ContextView: Change condition for showing context menu --- src/context/contextview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/context/contextview.cpp b/src/context/contextview.cpp index 1e2053ab4..403f93213 100644 --- a/src/context/contextview.cpp +++ b/src/context/contextview.cpp @@ -673,7 +673,7 @@ void ContextView::UpdateLyrics(const quint64 id, const QString &provider, const void ContextView::contextMenuEvent(QContextMenuEvent *e) { - if (menu_options_ && !song_playing_.is_valid()) { + if (menu_options_ && widget_stacked_->currentWidget() == widget_stop_) { menu_options_->popup(mapToGlobal(e->pos())); } else {