Skip to content

Commit

Permalink
程序第一次启动时的界面默认改为深色模式,不透明度改为40%
Browse files Browse the repository at this point in the history
  • Loading branch information
zhongyang219 committed Jun 3, 2022
1 parent fc508b1 commit 8741aa1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MusicPlayer2/MusicPlayerDlg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -573,8 +573,8 @@ void CMusicPlayerDlg::LoadConfig()
theApp.m_app_setting_data.background_gauss_blur = ini.GetBool(L"config", L"background_gauss_blur", true);
theApp.m_app_setting_data.gauss_blur_radius = ini.GetInt(L"config", L"gauss_blur_radius", 150);
theApp.m_app_setting_data.lyric_background = ini.GetBool(L"config", L"lyric_background", false);
theApp.m_app_setting_data.dark_mode = ini.GetBool(L"config", L"dark_mode", false);
theApp.m_app_setting_data.background_transparency = ini.GetInt(L"config", L"background_transparency", 80);
theApp.m_app_setting_data.dark_mode = ini.GetBool(L"config", L"dark_mode", true);
theApp.m_app_setting_data.background_transparency = ini.GetInt(L"config", L"background_transparency", 40);
theApp.m_app_setting_data.use_out_image = ini.GetBool(L"config", L"use_out_image", true);
theApp.m_app_setting_data.use_inner_image_first = ini.GetBool(L"config", L"use_inner_image_first", true);
theApp.m_app_setting_data.draw_album_high_quality = ini.GetBool(L"config", L"draw_album_high_quality", false);
Expand Down

0 comments on commit 8741aa1

Please sign in to comment.