Allow the correct file extensions

This commit is contained in:
KingRainbow44
2022-05-21 22:58:55 -04:00
parent fdc460bdd1
commit 65f18e8d52

View File

@@ -132,7 +132,7 @@ export default class Options extends React.Component<IProps, IState> {
<Tr text="options.background" />
</div>
<div className='OptionValue'>
<DirInput onChange={this.setCustomBackground} readonly={false} value={this.state?.bg_url_or_path} extensions={['exe']} />
<DirInput onChange={this.setCustomBackground} readonly={false} value={this.state?.bg_url_or_path} extensions={['png', 'jpg', 'jpeg']} />
</div>
</div>