mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
Fix dirty tab close popup issue
This commit is contained in:
parent
7e897c3430
commit
ade506d1f8
1 changed files with 4 additions and 1 deletions
|
|
@ -1093,7 +1093,10 @@ export class ClaudeDev {
|
|||
)
|
||||
|
||||
for (const tab of tabs) {
|
||||
await vscode.window.tabGroups.close(tab)
|
||||
// trying to close dirty views results in save popup
|
||||
if (!tab.isDirty) {
|
||||
await vscode.window.tabGroups.close(tab)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue