From 90a3b4cde602f6f7fd89cbd892f1fa7bce7c5ae7 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Fri, 8 Apr 2022 17:02:38 +0200 Subject: [PATCH] Use 250ms delay everywhere This looks like it's consistent with the normal menus. And it fixes the issue where multiple menus can be shown at once because it would hide slower than show the next one. Contributes to issue CURA-8640. --- resources/qml/Menus/MaterialBrandMenu.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/qml/Menus/MaterialBrandMenu.qml b/resources/qml/Menus/MaterialBrandMenu.qml index a781192bdb..3c06162d93 100644 --- a/resources/qml/Menus/MaterialBrandMenu.qml +++ b/resources/qml/Menus/MaterialBrandMenu.qml @@ -62,7 +62,7 @@ Cura.MenuItem Timer { id: showTimer - interval: 100 + interval: 250 function restartTimer() { restart(); @@ -197,7 +197,7 @@ Cura.MenuItem Timer { id: showSubTimer - interval: 100 + interval: 250 function restartTimer() { restart();