mirror of
https://github.com/zen-browser/desktop.git
synced 2025-09-10 21:38:21 +00:00
Fixed expand on hover sidebar
This commit is contained in:
@@ -335,11 +335,13 @@ var ZenWorkspaces = new (class extends ZenMultiWindowFeature {
|
||||
|
||||
initIndicatorContextMenu() {
|
||||
const indicator = document.getElementById('zen-current-workspace-indicator');
|
||||
indicator.addEventListener('contextmenu', (event) => {
|
||||
const th = (event) => {
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
this.openWorkspacesDialog(event);
|
||||
});
|
||||
};
|
||||
indicator.addEventListener('contextmenu', th);
|
||||
indicator.addEventListener('click', th);
|
||||
}
|
||||
|
||||
handleTabBeforeClose(tab) {
|
||||
|
Reference in New Issue
Block a user