Skip to content

Commit

Permalink
Fix interaction handling
Browse files Browse the repository at this point in the history
  • Loading branch information
j-a-n committed Dec 21, 2024
1 parent 572c254 commit 9fca57c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions wallpanel.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ class CameraMotionDetection {
}
}

const version = "4.32.0";
const version = "4.32.1";
const defaultConfig = {
enabled: false,
enabled_on_tabs: [],
Expand Down Expand Up @@ -2769,7 +2769,10 @@ class WallpanelView extends HuiView {
if (this.getMoreInfoDialog()) {
return;
}
let elements = this.__cards;
let elements = [];
elements = elements.concat(this.__cards);
elements = elements.concat(this.__badges);
elements = elements.concat(this.__views);
elements.push(this.shadowRoot.getElementById("wallpanel-screensaver-info-box-content"));
elements.push(this.shadowRoot.getElementById("wallpanel-screensaver-fixed-info-box-content"));
for (let i=0; i<elements.length; i++) {
Expand Down Expand Up @@ -4087,3 +4090,4 @@ EXIF.pretty = function(img) {
EXIF.readFromBinaryFile = function(file) {
return findEXIFinJPEG(file);
}

0 comments on commit 9fca57c

Please sign in to comment.