Persistent help bubble

What is your operating system?
Mac OSX 10.11.6

What is your Shotcut version (see Help > About Shotcut)? Is it 32-bit?
20.07.11

Can you repeat the problem? If so, what are the steps?
(Please be specific and use the names as seen in Shotcut, preferably English. Include a screenshot or screen recording if you can. Also, you can attach logs from either View > Application Log or right-click a job and choose View Log.)

Bonjour,
Un problème qui arrive très souvent mais qui n’est pas systématique. (+/- 7 fois sur 10)
Lorsque l’on clique sur le bouton Keyframes pour le désactiver, la bulle d’aide ne disparait pas. Démo

Hello,
A problem that happens very often but is not systematic (+/- 7 times out of 10.)
When you click on the Keyframes button to disable it, the tooltip does not disappear. Demo

I am struggling to reproduce it but I am not terribly surprised it is happening either since that tooltip is our own implementation. Please test the following change to see if it fixes it for you:

--- src/qml/modules/Shotcut/Controls/KeyframesButton.qml
+++ src/qml/modules/Shotcut/Controls/KeyframesButton.qml
@@ -72,2 +72,3 @@ CheckBox {
         onYes: {
+            tooltip.isVisible = false
             checkbox.checked = false
@@ -75,3 +76,6 @@ CheckBox {
         }
-        onNo: checkbox.checked = true
+        onNo: {
+            tooltip.isVisible = false
+            checkbox.checked = true
+        }
     }

Bonjour,
Cette modification résout le bogue chez moi.
Merci.

Hello,
This change solves the bug at home.
Thanks

1 Like

This fix is applied for the next version 19.10 or 19.11

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.