Skip to content

Commit

Permalink
fix(Studio): Popup menus sometimes not opening
Browse files Browse the repository at this point in the history
  • Loading branch information
psyGamer committed Nov 29, 2024
1 parent 94b341a commit 6aaabe3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Studio/CelesteStudio/Editing/Editor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ void UpdateRoomLabelIndices(int[] rowsToIgnore) {
public PopupMenu? ActivePopupMenu {
get => activePopupMenu;
set {
if (activePopupMenu == value) {
if (activePopupMenu == value && (activePopupMenu?.Visible ?? false)) {
return;
}

Expand Down

0 comments on commit 6aaabe3

Please sign in to comment.