Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -2754,15 +2754,13 @@ function createTab(url, activate = true) {
if (new URL(tab.url || '').origin !== new URL(newUrl || '').origin) tab.favicon = null;
} catch { tab.favicon = null; }
}
tab.url = newUrl;
tab.url = newUrl;
tab.blocked = 0;
send('tab:update', tabData(tab));
if (id === activeId) {
// Reset panel clip immediately so the page loads at full BV width
if (panelClipX > 0) { panelClipX = 0; try { setBounds(tab.bv); } catch {} }
send('nav:state', navData(tab));
// Close any open panel/overlay so the user can interact with the new page
send('panels:closeAll');
// Also close uBlock Origin popup if open
if (uboPopupWin && !uboPopupWin.isDestroyed()) {
uboPopupWin.close();
Expand Down Expand Up @@ -7157,4 +7155,4 @@ ipcMain.on('ytdlp:cancel', (_, id) => {
if (proc) { proc.kill(); ytdlpProcs.delete(id); }
});

// Update checker removed
// Update checker removed
77 changes: 48 additions & 29 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"start": "node launch.js",
"dev": "node launch.js --inspect",
"build": "electron-builder --publish never",
"build:mac": "electron-builder --mac --publish never",
"build:mac": "electron-builder --mac --universal --publish never",
"build:win": "electron-builder --win --publish never",
"build:linux": "electron-builder --linux AppImage --publish never",
"build:linux:full": "electron-builder --linux AppImage deb rpm --publish never",
Expand Down
Loading