Fix workspace menu closing when cursor crosses trigger-to-content gap#4680
Open
jurgenwerk wants to merge 1 commit intomainfrom
Open
Fix workspace menu closing when cursor crosses trigger-to-content gap#4680jurgenwerk wants to merge 1 commit intomainfrom
jurgenwerk wants to merge 1 commit intomainfrom
Conversation
The workspace card's three-dot menu used @autoclose on BoxelDropdown, which closes on any mouseleave of the content. Combined with the content's slide-in animation (translateY -20px → 0), the menu would animate into and out from under the cursor as the user moved between the trigger and the final menu position, firing mouseleave before the menu finished appearing and dismissing it. For a click-opened menu, click-outside and item-click are sufficient to close — autoClose is a hover-menu pattern that doesn't fit here. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Contributor
habdelra
approved these changes
May 6, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
As a person who deletes his workspaces a lot, this has been driving me crazy 😀
Screen.Recording.2026-05-06.at.12.47.26.mov
The fix is to simply remove the auto close functionality. I don't think it's useful anyway - it will still close if you open another contextual menu.