mirror of
https://github.com/zen-browser/desktop.git
synced 2025-09-05 19:08:18 +00:00
Fix tab position calculation by removing unnecessary increment
This commit is contained in:
@@ -67,7 +67,7 @@
|
||||
}
|
||||
|
||||
getTabPosition(tab) {
|
||||
return Math.max(gBrowser.pinnedTabCount, tab._tPos) + 1;
|
||||
return Math.max(gBrowser.pinnedTabCount, tab._tPos);
|
||||
}
|
||||
|
||||
createBrowserElement(url, currentTab, existingTab = null) {
|
||||
|
Reference in New Issue
Block a user