mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-20 16:49:52 +00:00
[Modern] Comment out attempt at transparency handling
This commit is contained in:
parent
3c34824e9e
commit
a174aaf17d
1 changed files with 3 additions and 1 deletions
|
|
@ -34,6 +34,7 @@ export default class GuiObj extends XmlObj {
|
|||
});
|
||||
|
||||
this._div.addEventListener("mousedown", (e) => {
|
||||
/*
|
||||
if (this._backgroundBitmap != null) {
|
||||
const { clientX, clientY } = e;
|
||||
const { x, y } = this._div.getBoundingClientRect();
|
||||
|
|
@ -53,9 +54,10 @@ export default class GuiObj extends XmlObj {
|
|||
bubbles: true,
|
||||
});
|
||||
newTarget.dispatchEvent(newEvent);
|
||||
return;
|
||||
}
|
||||
}
|
||||
//
|
||||
*/
|
||||
this.onLeftButtonDown(e.clientX, e.clientY);
|
||||
});
|
||||
this._div.addEventListener("mouseenter", (e) => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue