From 449fda16e1ce98bea18ff46b4e72372a0571b568 Mon Sep 17 00:00:00 2001 From: Camila Date: Tue, 8 Jun 2021 21:04:53 +0200 Subject: [PATCH] Fix QML Warning: ReferenceError: PopupMenu is not defined. Signed-off-by: Camila --- src/gui/tray/Window.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/tray/Window.qml b/src/gui/tray/Window.qml index d5afdef76a..6bfe020fa0 100644 --- a/src/gui/tray/Window.qml +++ b/src/gui/tray/Window.qml @@ -404,7 +404,7 @@ Window { source: "qrc:///client/theme/white/caret-down.svg" sourceSize.width: Style.accountDropDownCaretSize sourceSize.height: Style.accountDropDownCaretSize - Accessible.role: PopupMenu + Accessible.role: Accessible.PopupMenu Accessible.name: qsTr("Account switcher and settings menu") } }