Add option to hide chat during loading screens [default false]

This commit is contained in:
Infi
2024-04-10 19:07:35 +02:00
parent d2896266e1
commit 059c7322c8
5 changed files with 54 additions and 12 deletions
+2
View File
@@ -17,6 +17,7 @@ internal class Configuration : IPluginConfiguration {
public bool HideDuringCutscenes = true;
public bool HideWhenNotLoggedIn = true;
public bool HideWhenUiHidden = true;
public bool HideInLoadingScreens;
public bool NativeItemTooltips = true;
public bool PrettierTimestamps = true;
public bool MoreCompactPretty;
@@ -60,6 +61,7 @@ internal class Configuration : IPluginConfiguration {
HideDuringCutscenes = other.HideDuringCutscenes;
HideWhenNotLoggedIn = other.HideWhenNotLoggedIn;
HideWhenUiHidden = other.HideWhenUiHidden;
HideInLoadingScreens = other.HideInLoadingScreens;
NativeItemTooltips = other.NativeItemTooltips;
PrettierTimestamps = other.PrettierTimestamps;
MoreCompactPretty = other.MoreCompactPretty;