From a46daef6f1057d6bbc9326cbc6d2f6a74b9e60e7 Mon Sep 17 00:00:00 2001 From: momo5502 Date: Sun, 11 Jun 2017 21:25:18 +0200 Subject: [PATCH] [Window] Use better loading cursor --- src/Components/Modules/Window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Components/Modules/Window.cpp b/src/Components/Modules/Window.cpp index adde2efc..5d7c404d 100644 --- a/src/Components/Modules/Window.cpp +++ b/src/Components/Modules/Window.cpp @@ -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)