mirror of
https://github.com/zen-browser/desktop.git
synced 2025-10-05 01:16:35 +00:00
38 lines
1.4 KiB
C++
38 lines
1.4 KiB
C++
diff --git a/browser/base/content/browser-commands.js b/browser/base/content/browser-commands.js
|
|
index 352de44dda36e3f6672eb353f42978ede0cd2681..0fde717eaf755526ec65b676c43bd34c6a675934 100644
|
|
--- a/browser/base/content/browser-commands.js
|
|
+++ b/browser/base/content/browser-commands.js
|
|
@@ -318,6 +318,10 @@ var BrowserCommands = {
|
|
}
|
|
}
|
|
|
|
+ if (gZenUIManager.handleNewTab(werePassedURL, searchClipboard, where)) {
|
|
+ return;
|
|
+ }
|
|
+
|
|
// A notification intended to be useful for modular peformance tracking
|
|
// starting as close as is reasonably possible to the time when the user
|
|
// expressed the intent to open a new tab. Since there are a lot of
|
|
@@ -400,6 +404,10 @@ var BrowserCommands = {
|
|
return;
|
|
}
|
|
|
|
+ if (gBrowser.selectedTab.hasAttribute("zen-empty-tab")) {
|
|
+ return;
|
|
+ }
|
|
+
|
|
// Keyboard shortcuts that would close a tab that is pinned select the first
|
|
// unpinned tab instead.
|
|
if (
|
|
@@ -407,8 +415,8 @@ var BrowserCommands = {
|
|
(event.ctrlKey || event.metaKey || event.altKey) &&
|
|
gBrowser.selectedTab.pinned
|
|
) {
|
|
- if (gBrowser.visibleTabs.length > gBrowser.pinnedTabCount) {
|
|
- gBrowser.tabContainer.selectedIndex = gBrowser.pinnedTabCount;
|
|
+ if (gBrowser.visibleTabs.length > gBrowser._numVisiblePinTabs) {
|
|
+ gBrowser.tabContainer.selectedIndex = gBrowser._numVisiblePinTabs;
|
|
}
|
|
return;
|
|
}
|