[Window] Use better loading cursor

This commit is contained in:
momo5502 2017-06-11 21:25:18 +02:00
parent a327915008
commit a46daef6f1

View File

@ -127,7 +127,7 @@ namespace Components
void Window::ApplyCursor()
{
bool isLoading = !FastFiles::Ready();
SetCursor(LoadCursor(nullptr, isLoading ? IDC_WAIT : IDC_ARROW));
SetCursor(LoadCursor(nullptr, isLoading ? IDC_APPSTARTING : IDC_ARROW));
}
BOOL WINAPI Window::MessageHandler(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam)