-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix item closing overtly triggering save dialogues #21374
Merged
Merged
Conversation
This file contains 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
# Conflicts: # crates/editor/src/editor.rs # crates/image_viewer/src/image_viewer.rs
cla-bot
bot
added
the
cla-signed
The user has signed the Contributor License Agreement
label
Nov 30, 2024
notpeter
changed the title
Fix item closing overly triggering save dialogues
Fix item closing overtly triggering save dialogues
Dec 2, 2024
SomeoneToIgnore
added a commit
that referenced
this pull request
Dec 14, 2024
* Fixes the inability to drag and drop terminal tabs to reorder them; fixed incorrect terminal tab move on drag and drop into existing pane (follow-up of #21238) * Fixes save dialogue appearing when on closing terminal tabs with running tasks (follow-up of #21374) Release Notes: - Fixed terminal pane tabs arrangement and closing
gcp-cherry-pick-bot bot
pushed a commit
that referenced
this pull request
Dec 14, 2024
* Fixes the inability to drag and drop terminal tabs to reorder them; fixed incorrect terminal tab move on drag and drop into existing pane (follow-up of #21238) * Fixes save dialogue appearing when on closing terminal tabs with running tasks (follow-up of #21374) Release Notes: - Fixed terminal pane tabs arrangement and closing
gcp-cherry-pick-bot bot
pushed a commit
that referenced
this pull request
Dec 14, 2024
* Fixes the inability to drag and drop terminal tabs to reorder them; fixed incorrect terminal tab move on drag and drop into existing pane (follow-up of #21238) * Fixes save dialogue appearing when on closing terminal tabs with running tasks (follow-up of #21374) Release Notes: - Fixed terminal pane tabs arrangement and closing
SomeoneToIgnore
added a commit
that referenced
this pull request
Dec 14, 2024
…22017) Cherry-picked Fix terminal pane tabs arrangement and closing (#22013) * Fixes the inability to drag and drop terminal tabs to reorder them; fixed incorrect terminal tab move on drag and drop into existing pane (follow-up of #21238) * Fixes save dialogue appearing when on closing terminal tabs with running tasks (follow-up of #21374) Release Notes: - Fixed terminal pane tabs arrangement and closing Co-authored-by: Kirill Bulatov <kirill@zed.dev>
SomeoneToIgnore
added a commit
that referenced
this pull request
Dec 14, 2024
…22016) Cherry-picked Fix terminal pane tabs arrangement and closing (#22013) * Fixes the inability to drag and drop terminal tabs to reorder them; fixed incorrect terminal tab move on drag and drop into existing pane (follow-up of #21238) * Fixes save dialogue appearing when on closing terminal tabs with running tasks (follow-up of #21374) Release Notes: - Fixed terminal pane tabs arrangement and closing Co-authored-by: Kirill Bulatov <kirill@zed.dev>
lino-levan
pushed a commit
to the-code-editor-company/editor
that referenced
this pull request
Dec 16, 2024
* Fixes the inability to drag and drop terminal tabs to reorder them; fixed incorrect terminal tab move on drag and drop into existing pane (follow-up of zed-industries#21238) * Fixes save dialogue appearing when on closing terminal tabs with running tasks (follow-up of zed-industries#21374) Release Notes: - Fixed terminal pane tabs arrangement and closing
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.
Closes #12029
Allows to introspect project items inside items more deeply, checking them for being dirty.
For that:
project::Item
intoproject::ProjectItem
is_dirty(&self) -> bool
method to the renamed traitRelease Notes: