mirror of
https://github.com/LCE-Hub/LCE-Emerald-Launcher.git
synced 2026-07-19 08:47:19 +00:00
fix: appheader and panorama not showing on setup
This commit is contained in:
parent
5f04f26eb8
commit
d09fd0039b
|
|
@ -325,6 +325,23 @@ export default function App() {
|
|||
<div
|
||||
className={`w-screen h-screen overflow-hidden select-none flex flex-col relative bg-black text-white font-['Mojangles'] outline-none focus:outline-none ${!config.animationsEnabled ? "no-animations" : ""}`}
|
||||
>
|
||||
{showHeader && (
|
||||
<AppHeader playPressSound={audio.playPressSound} uiFade={uiFade} />
|
||||
)}
|
||||
<div className="absolute inset-0">
|
||||
<AnimatePresence>
|
||||
<motion.div
|
||||
key={displayIsDay ? "day" : "night"}
|
||||
className="absolute inset-0"
|
||||
{...backgroundFade}
|
||||
>
|
||||
<PanoramaBackground
|
||||
profile={selectedEdition?.panorama ?? "vanilla_tu19"}
|
||||
isDay={displayIsDay}
|
||||
/>
|
||||
</motion.div>
|
||||
</AnimatePresence>
|
||||
</div>
|
||||
<SetupView
|
||||
onComplete={() => {
|
||||
setShowSetup(false);
|
||||
|
|
|
|||
Loading…
Reference in a new issue