mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix Render Blink
This commit is contained in:
parent
01d081d740
commit
b8748d642e
2 changed files with 3 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1412,6 +1412,7 @@ namespace Flow.Launcher.ViewModel
|
|||
|
||||
// WPF 속성 업데이트
|
||||
MainWindowVisibility = Visibility.Visible;
|
||||
MainWindowOpacity = 1;
|
||||
MainWindowVisibilityStatus = true;
|
||||
VisibilityChanged?.Invoke(this, new VisibilityChangedEventArgs { IsVisible = true });
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in a new issue