From f00de6cbb42ba796694e27275a4884b29d7fe62d Mon Sep 17 00:00:00 2001 From: Anton Thomasson Date: Mon, 23 Nov 2020 19:00:26 +0100 Subject: [PATCH] Don't open ContextMenu for large choices --- qml/components/ChoiceSetting.qml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/qml/components/ChoiceSetting.qml b/qml/components/ChoiceSetting.qml index f4589db..ed37177 100644 --- a/qml/components/ChoiceSetting.qml +++ b/qml/components/ChoiceSetting.qml @@ -31,7 +31,10 @@ Setting { choice = dialog.choice }) } - menu.open(settingEntry) + else + { + menu.open(settingEntry) + } } ContextMenu {