mirror of
https://github.com/zen-browser/desktop.git
synced 2026-05-22 21:00:10 +00:00
gh-13761: Fixed closing a split view selecting it on other windows (gh-13790)
This commit is contained in:
@@ -34,8 +34,8 @@ Zen is a firefox-based browser with the aim of pushing your productivity to a ne
|
||||
|
||||
### Firefox Versions
|
||||
|
||||
- [`Release`](https://zen-browser.app/download) - Is currently built using Firefox version `151.0`! 🚀
|
||||
- [`Twilight`](https://zen-browser.app/download?twilight) - Is currently built using Firefox version `RC 151.0`!
|
||||
- [`Release`](https://zen-browser.app/download) - Is currently built using Firefox version `151.0.1`! 🚀
|
||||
- [`Twilight`](https://zen-browser.app/download?twilight) - Is currently built using Firefox version `RC 151.0.1`!
|
||||
|
||||
### Contributing
|
||||
|
||||
|
||||
@@ -1657,7 +1657,9 @@ class nsZenWindowSync {
|
||||
this.#runOnAllWindows(window, win => {
|
||||
const targetTab = this.getItemFromWindow(win, tab.id);
|
||||
if (targetTab && win.gZenViewSplitter) {
|
||||
win.gZenViewSplitter.removeTabFromGroup(targetTab);
|
||||
win.gZenViewSplitter.removeTabFromGroup(targetTab, undefined, {
|
||||
changeTab: false,
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@@ -2294,7 +2294,7 @@ class nsZenViewSplitter extends nsZenDOMOperatedFeature {
|
||||
// Unsplit the tab and exit from the drag view
|
||||
this.dropZone?.removeAttribute("enabled");
|
||||
this.disableTabRearrangeView(event);
|
||||
this.removeTabFromSplit(browserContainer);
|
||||
this.removeTabFromSplit(event, browserContainer);
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
"binaryName": "zen",
|
||||
"version": {
|
||||
"product": "firefox",
|
||||
"version": "151.0",
|
||||
"candidate": "151.0",
|
||||
"version": "151.0.1",
|
||||
"candidate": "151.0.1",
|
||||
"candidateBuild": 1
|
||||
},
|
||||
"buildOptions": {
|
||||
|
||||
Reference in New Issue
Block a user