fixed ctrl + enter causing issues on the custom text popup

This commit is contained in:
Jack 2021-04-16 16:28:21 +01:00
parent dc06badad3
commit 94c71818c8
2 changed files with 2 additions and 1 deletions

View file

@ -70,7 +70,7 @@ $(`${popup} .inputs .check input`).change(() => {
$(`${popup} textarea`).keypress((e) => {
if (e.code === "Enter" && e.ctrlKey) {
$(`${popup} .button`).click();
$(`${popup} .button.apply`).click();
}
});

View file

@ -659,6 +659,7 @@ a:hover {
padding: 5rem 0;
#wordFilterPopup {
color: var(--sub-color);
background: var(--bg-color);
border-radius: var(--roundness);
padding: 2rem;