mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-23 18:17:38 +00:00
Add a simple way to change skins
This commit is contained in:
parent
51f06c8e4c
commit
0ea8cc6561
1 changed files with 12 additions and 0 deletions
|
|
@ -556,6 +556,18 @@ function App() {
|
|||
>
|
||||
<XmlNode node={root} />
|
||||
</DropTarget>
|
||||
<select
|
||||
style={{ position: "absolute", bottom: 0 }}
|
||||
onChange={e => {
|
||||
dispatch(Actions.gotSkinUrl(e.target.value));
|
||||
}}
|
||||
>
|
||||
{skinUrls.map(url => (
|
||||
<option value={url} key={url}>
|
||||
{url}
|
||||
</option>
|
||||
))}
|
||||
</select>
|
||||
<Sidebar>
|
||||
<Debugger />
|
||||
</Sidebar>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue