Skip to content

Commit

Permalink
fixed bug, that opacity is applied twice on image edit mode overlay
Browse files Browse the repository at this point in the history
- closes #315
  • Loading branch information
foxriver76 committed Jan 18, 2024
1 parent 203994a commit 3f7a16a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,9 @@ E.g., if it was used in a menu and the menu is red, the circle would be red.
### **WORK IN PROGRESS**
-->
## Changelog
### **WORK IN PROGRESS**
* (foxriver76) fixed bug, that opacity is applied twice on image edit mode overlay

### 2.9.20 (2024-01-18)
* (foxriver76) increased timeout for project import
* (foxriver76) added permissions on widget level
Expand Down
2 changes: 1 addition & 1 deletion src/src/Vis/visBaseWidget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1749,7 +1749,7 @@ class VisBaseWidget extends React.Component<VisBaseWidgetProps, VisBaseWidgetSta

if (this.props.tpl?.toLowerCase().includes('image')) {
classNames.push('vis-editmode-helper');
style.opacity = style.opacity || 0.3;
// style.opacity = 0.3;
}
}

Expand Down

0 comments on commit 3f7a16a

Please sign in to comment.