mirror of
https://github.com/pbatard/rufus.git
synced 2025-05-17 00:24:27 -04:00
[ui] improve application look on high DPI displays
* Fix Quick Format option overlapping boot option dropdown * Fix vertical spacing between "Create bootable disk" and "Create extended label and icon files" * Fix vertical spacing of progress bar in non advanced mode * Align and resize Advanced Options button * Align and resize Select Image button * Fix vertical centering of Status text * Add 64x64px icon so that the About dialog looks better at 200% size
This commit is contained in:
parent
28e3cf2537
commit
c84075385e
5 changed files with 59 additions and 41 deletions
|
@ -331,7 +331,7 @@ DWORD DownloadFile(const char* url, const char* file, HWND hProgressDialog)
|
|||
HttpQueryInfoA(hRequest, HTTP_QUERY_STATUS_CODE|HTTP_QUERY_FLAG_NUMBER, (LPVOID)&DownloadStatus, &dwSize, NULL);
|
||||
if (DownloadStatus != 200) {
|
||||
error_code = ERROR_INTERNET_ITEM_NOT_FOUND;
|
||||
uprintf("Unable to access file: Server status %d\n", DownloadStatus);
|
||||
uprintf("Unable to access file: %d\n", DownloadStatus);
|
||||
goto out;
|
||||
}
|
||||
dwSize = sizeof(dwTotalSize);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue