fix(ags): fix a couple issues with the clipboard
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
Updater 2024-05-22 12:33:19 -04:00
parent cd6c33ce9a
commit e502c23c02
3 changed files with 4 additions and 5 deletions

View file

@ -50,7 +50,7 @@
}
}
*:selected, .item:hover, .item:focus {
*:selected .item, .item:hover, .item:focus {
background-color: #363449;
}
}

View file

@ -51,7 +51,7 @@
}
}
*:selected, .item:hover, .item:focus {
*:selected .item, .item:hover, .item:focus {
background-color: #363449;
}
}

View file

@ -13,9 +13,8 @@ const N_ITEMS = 30;
const copyOldItem = (key: string | number): void => {
execAsync([
'bash', '-c', `cliphist list | grep ${key} | cliphist decode | wl-copy`,
]).then(() => {
App.closeWindow('win-clipboard');
});
]);
App.closeWindow('win-clipboard');
};
export default () => {