[bugfix] Fix corner rounded bug.

before: win10, corner rounded true. win 11 corner rounded true and when window maximized likewise.
after: win10, corner rounded false. win 11 corner rounded true but turn to false when window maximized.
This commit is contained in:
Sakamoto Shiina
2025-05-06 10:57:38 +09:00
parent 82458ca992
commit da577b5116
3 changed files with 57 additions and 1 deletions

View File

@@ -9,6 +9,7 @@ import {
UiSizeController,
FontFamilyController,
TransparencyController,
CornerRadiusController,
PluginsController,
} from "./_app_controllers/index.js";
@@ -39,6 +40,7 @@ export const App = () => {
<UiSizeController />
<FontFamilyController />
<TransparencyController />
<CornerRadiusController />
{(currentIsBackendReady.data === false || currentIsVrctAvailable.data === false)
? <SplashComponent />