Deleted package-lock.json and comments per
Cynosphere's suggestions
This commit is contained in:
parent
2f40cfebbe
commit
9872fc2a6d
2 changed files with 0 additions and 8048 deletions
8010
package-lock.json
generated
8010
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -11,44 +11,6 @@ import { SettingsComponent } from "./Settings";
|
|||
export const VencordLocationPicker: SettingsComponent = ({ settings }) => {
|
||||
return (
|
||||
<>
|
||||
{/*
|
||||
<Forms.FormTitle>Custom Splash Animation</Forms.FormTitle>
|
||||
<Forms.FormText>
|
||||
The animation on the splash window is loaded from{" "}
|
||||
{settings.splashAnimationPath ? (
|
||||
<a
|
||||
href="about:blank"
|
||||
onClick={e => {
|
||||
e.preventDefault();
|
||||
VesktopNative.fileManager.showItemInFolder(settings.splashAnimationPath!);
|
||||
}}
|
||||
>
|
||||
{settings.splashAnimationPath}
|
||||
</a>
|
||||
) : (
|
||||
"the default location"
|
||||
)}
|
||||
</Forms.FormText>
|
||||
<div className="vcd-location-btns" style={{marginBottom: 20}}>
|
||||
<Button
|
||||
size={Button.Sizes.SMALL}
|
||||
onClick={async () => {
|
||||
const choice = await VesktopNative.fileManager.selectImagePath();
|
||||
if (choice === "cancelled") return;
|
||||
settings.splashAnimationPath = choice;
|
||||
}}
|
||||
>
|
||||
Change
|
||||
</Button>
|
||||
<Button
|
||||
size={Button.Sizes.SMALL}
|
||||
color={Button.Colors.RED}
|
||||
onClick={() => (settings.splashAnimationPath = void 0)}
|
||||
>
|
||||
Reset
|
||||
</Button>
|
||||
</div>
|
||||
*/}
|
||||
|
||||
<Forms.FormText>
|
||||
Vencord files are loaded from{" "}
|
||||
|
|
Reference in a new issue