Fix Render Blink

This commit is contained in:
DB p 2025-03-08 18:41:30 +09:00
parent 01d081d740
commit b8748d642e
2 changed files with 3 additions and 1 deletions

View file

@ -815,7 +815,7 @@ namespace Flow.Launcher
public void HideStartup()
{
UpdatePosition();
_viewModel.MainWindowOpacity = 0.2; /*Fix Render Blinking */
if (_settings.HideOnStartup)
{
// 📌 최초 실행 시 창이 깜빡이는 문제 방지 (완전히 숨긴 상태로 시작)
@ -834,6 +834,7 @@ namespace Flow.Launcher
//ThemeManager.Instance.SetBlurForWindow();
//ThemeManager.Instance.AutoDropShadow();
_viewModel.Show();
//_viewModel.MainWindowOpacity = 1;
}
}

View file

@ -1412,6 +1412,7 @@ namespace Flow.Launcher.ViewModel
// WPF 속성 업데이트
MainWindowVisibility = Visibility.Visible;
MainWindowOpacity = 1;
MainWindowVisibilityStatus = true;
VisibilityChanged?.Invoke(this, new VisibilityChangedEventArgs { IsVisible = true });
});