Fix lag when alt tabbing to Discord
This commit is contained in:
parent
992a77e76c
commit
ae98401bd3
5 changed files with 18 additions and 16 deletions
|
@ -222,7 +222,7 @@ export default ErrorBoundary.wrap(function PluginSettings() {
|
|||
const onStatusChange = (status: SearchStatus) => setSearchValue(prev => ({ ...prev, status }));
|
||||
|
||||
const pluginFilter = (plugin: typeof Plugins[keyof typeof Plugins]) => {
|
||||
const enabled = settings.plugins[plugin.name]?.enabled || plugin.started;
|
||||
const enabled = settings.plugins[plugin.name]?.enabled;
|
||||
if (enabled && searchValue.status === SearchStatus.DISABLED) return false;
|
||||
if (!enabled && searchValue.status === SearchStatus.ENABLED) return false;
|
||||
if (!searchValue.value.length) return true;
|
||||
|
|
3
src/plugins/messageLogger/deleteStyleOverlay.css
Normal file
3
src/plugins/messageLogger/deleteStyleOverlay.css
Normal file
|
@ -0,0 +1,3 @@
|
|||
.messagelogger-deleted {
|
||||
background-color: rgba(240 71 71 / 15%);
|
||||
}
|
3
src/plugins/messageLogger/deleteStyleText.css
Normal file
3
src/plugins/messageLogger/deleteStyleText.css
Normal file
|
@ -0,0 +1,3 @@
|
|||
.messagelogger-deleted div {
|
||||
color: #f04747;
|
||||
}
|
|
@ -19,19 +19,23 @@
|
|||
import "./messageLogger.css";
|
||||
|
||||
import { Settings } from "@api/settings";
|
||||
import { disableStyle, enableStyle } from "@api/Styles";
|
||||
import ErrorBoundary from "@components/ErrorBoundary";
|
||||
import { Devs } from "@utils/constants";
|
||||
import Logger from "@utils/Logger";
|
||||
import definePlugin, { OptionType } from "@utils/types";
|
||||
import { moment, Parser, Timestamp, UserStore } from "@webpack/common";
|
||||
|
||||
function addDeleteStyleClass() {
|
||||
import overlayStyle from "./deleteStyleOverlay.css?managed";
|
||||
import textStyle from "./deleteStyleText.css?managed";
|
||||
|
||||
function addDeleteStyle() {
|
||||
if (Settings.plugins.MessageLogger.deleteStyle === "text") {
|
||||
document.body.classList.remove("messagelogger-red-overlay");
|
||||
document.body.classList.add("messagelogger-red-text");
|
||||
enableStyle(textStyle);
|
||||
disableStyle(overlayStyle);
|
||||
} else {
|
||||
document.body.classList.remove("messagelogger-red-text");
|
||||
document.body.classList.add("messagelogger-red-overlay");
|
||||
disableStyle(textStyle);
|
||||
enableStyle(overlayStyle);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -41,7 +45,7 @@ export default definePlugin({
|
|||
authors: [Devs.rushii, Devs.Ven],
|
||||
|
||||
start() {
|
||||
addDeleteStyleClass();
|
||||
addDeleteStyle();
|
||||
},
|
||||
|
||||
stop() {
|
||||
|
@ -84,7 +88,7 @@ export default definePlugin({
|
|||
{ label: "Red text", value: "text", default: true },
|
||||
{ label: "Red overlay", value: "overlay" }
|
||||
],
|
||||
onChange: () => addDeleteStyleClass()
|
||||
onChange: () => addDeleteStyle()
|
||||
},
|
||||
ignoreBots: {
|
||||
type: OptionType.BOOLEAN,
|
||||
|
|
|
@ -1,11 +1,3 @@
|
|||
.messagelogger-red-overlay .messagelogger-deleted {
|
||||
background-color: rgba(240 71 71 / 15%);
|
||||
}
|
||||
|
||||
.messagelogger-red-text .messagelogger-deleted div {
|
||||
color: #f04747;
|
||||
}
|
||||
|
||||
.messagelogger-deleted [class^="buttons"] {
|
||||
display: none;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue