Skip to content
Snippets Groups Projects
Commit 10abe35e authored by SeeLook's avatar SeeLook
Browse files

Keep score focus always true to avoid stilling by dialog or popup

parent f0a65123
No related branches found
No related tags found
No related merge requests found
...@@ -28,6 +28,11 @@ Score { ...@@ -28,6 +28,11 @@ Score {
scoreObj.meter: GLOB.rhythmsEnabled ? Tmeter.Meter_4_4 : Tmeter.NoMeter scoreObj.meter: GLOB.rhythmsEnabled ? Tmeter.Meter_4_4 : Tmeter.NoMeter
focus: true focus: true
onFocusChanged: {
if (!focus) // FIXME: space key is stolen if any dialog/popup is invoked, this workaround avoids that but side effects are unknown yet
focus = true
}
clef: GLOB.clefType clef: GLOB.clefType
scoreObj.clefType: GLOB.clefType scoreObj.clefType: GLOB.clefType
enableDoubleAccids: GLOB.enableDoubleAccids enableDoubleAccids: GLOB.enableDoubleAccids
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment