mirror of
https://github.com/ppy/osu.git
synced 2024-11-13 15:27:30 +08:00
Merge pull request #28371 from smoogipoo/fix-collections-menu-drag
Fix unable to drag-scroll on collections right-click menu
This commit is contained in:
commit
f1689d542e
@ -26,9 +26,12 @@ namespace osu.Game.Graphics.UserInterface
|
||||
// Right mouse button is a special case where we allow actioning without dismissing the menu.
|
||||
// This is achieved by not calling `Clicked` (as done by the base implementation in OnClick).
|
||||
if (IsActionable && e.Button == MouseButton.Right)
|
||||
{
|
||||
Item.Action.Value?.Invoke();
|
||||
return true;
|
||||
}
|
||||
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
private partial class ToggleTextContainer : TextContainer
|
||||
|
Loading…
Reference in New Issue
Block a user