Compare commits
2 Commits
c9631d61b8
...
301d315ed1
| Author | SHA1 | Date |
|---|---|---|
|
|
301d315ed1 | |
|
|
3bed369a40 |
|
|
@ -398,7 +398,7 @@ const SettingsPage = () => {
|
|||
<div className="font-mono text-sm text-zinc-200 bg-zinc-800 p-2 rounded flex items-center justify-between">
|
||||
<span className="truncate">{intelliSensePath}</span>
|
||||
<button
|
||||
onClick={() => navigateToIntelliSenseFolder(intelliSensePath)}
|
||||
onClick={() => selectIntelliSenseItemAsLibrary(intelliSensePath, false)}
|
||||
className="ml-2 px-2 py-1 bg-zinc-700 text-xs text-zinc-300 rounded hover:bg-zinc-600"
|
||||
>
|
||||
Select as Library
|
||||
|
|
|
|||
|
|
@ -472,6 +472,12 @@ export default function LocalPlayerLauncher({
|
|||
</Button>
|
||||
</div>
|
||||
|
||||
<div className="flex gap-2 mt-2">
|
||||
<Button onClick={onClose} variant="ghost" className="w-full text-muted-foreground">
|
||||
Cancel
|
||||
</Button>
|
||||
</div>
|
||||
|
||||
<div className="mt-3 text-xs text-muted-foreground text-center">
|
||||
You can change this in Settings → Video Player
|
||||
</div>
|
||||
|
|
@ -688,6 +694,17 @@ export default function LocalPlayerLauncher({
|
|||
Settings
|
||||
</Button>
|
||||
</div>
|
||||
|
||||
{/* Cancel Button */}
|
||||
<div className="pt-2">
|
||||
<Button
|
||||
onClick={onClose}
|
||||
variant="ghost"
|
||||
className="w-full text-muted-foreground"
|
||||
>
|
||||
Cancel
|
||||
</Button>
|
||||
</div>
|
||||
</CardContent>
|
||||
</Card>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue