Skip to content

Commit

Permalink
fixed color filters not applying to canvas
Browse files Browse the repository at this point in the history
  • Loading branch information
mienaiyami committed Aug 27, 2023
1 parent 59cb690 commit eca6310
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/renderer/Components/Element/InputColorReal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ const InputColorReal = () => {
"--color-noAlpha": window.color.new(color).alpha(1).hsl().string(),
}}
onKeyDown={(e) => {
if (!e.ctrlKey && !["Escape", "Tab", " ", "Enter"].includes(e.key)) {
if (!e.ctrlKey && !["Tab", " ", "Enter"].includes(e.key)) {
e.stopPropagation();
e.preventDefault();
}
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/styles/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2703,7 +2703,7 @@ body {
background-color: var(--blend-bg);
.row {
background-color: var(--blend-bg);
img {
.readerImg {
mix-blend-mode: var(--blend-mode);
}
}
Expand Down

0 comments on commit eca6310

Please sign in to comment.