Only scroll/pin section on left-click

To prevent a right-click on the Info section (which has no context menu) from
scrolling to it, along with other weirdness.
This commit is contained in:
Abe Jellinek 2023-12-04 11:28:22 -05:00 committed by Dan Stillman
parent c16a2d4b05
commit e4b329bffc

View file

@ -187,6 +187,10 @@
toolbarbutton.parentElement.classList.toggle('pinnable', pinnable);
toolbarbutton.addEventListener('click', (event) => {
if (event.button !== 0) {
return;
}
switch (event.detail) {
case 1:
this.scrollToPane(pane, 'smooth');