Commit 73a05e4 Tim
committed
1 parent 1d353d3 commit 73a05e4 Copy full SHA for 73a05e4
File tree 2 files changed +8
-0
lines changed
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change
1
+ 17.10.2024
2
+ - Fix issue 1287: Focus doesn't return to arranger window when pianoroll closed. (Tim)
3
+ In MusE::toplevelDeleting(), call TopWin::focusCanvas() to direct focus to the canvas.
1
4
16.10.2024
2
5
- Event List Editor: Fixed cannot open multiple parts. (Tim)
3
6
Thanks to forum user 'enaiel' for spotting that.
Original file line number Diff line number Diff line change @@ -3727,6 +3727,11 @@ void MusE::toplevelDeleting(MusEGui::TopWin* tl)
3727
3727
3728
3728
bringToFront ((*lit)->widget ());
3729
3729
3730
+ // If the TopWin has a canvas and a focusCanvas(), call it to focus the canvas.
3731
+ TopWin* tw = dynamic_cast <TopWin*>( (*lit)->widget ());
3732
+ if (tw)
3733
+ tw->focusCanvas ();
3734
+
3730
3735
break ;
3731
3736
}
3732
3737
}
You can’t perform that action at this time.
0 commit comments