mirror of
https://github.com/pbatard/rufus.git
synced 2025-05-28 13:44:15 -04:00
[misc] pocketful of enhancement and fixes - part 4
* Fix disappearance of "Start" button when selecting an ISO with no target (reported by Sopor) * Add commented sample ini file * Add AC_PROG_AR macro in configure.ac * Update ChangeLog for BETA
This commit is contained in:
parent
0e1625975c
commit
cf7e52e051
17 changed files with 163 additions and 16 deletions
|
@ -1022,6 +1022,9 @@ DWORD WINAPI ISOScanThread(LPVOID param)
|
|||
}
|
||||
|
||||
// Need to invalidate as we may have changed the UI and may get artifacts if we don't
|
||||
// Oh and we need to invoke BOTH RedrawWindow() and InvalidateRect() because UI refresh
|
||||
// in the Microsoft worlds SUCKS!!!! (we may lose the disabled "Start" button otherwise)
|
||||
RedrawWindow(hMainDialog, NULL, NULL, RDW_ALLCHILDREN | RDW_UPDATENOW);
|
||||
InvalidateRect(hMainDialog, NULL, TRUE);
|
||||
|
||||
out:
|
||||
|
@ -1672,7 +1675,7 @@ void InitDialog(HWND hDlg)
|
|||
if (nWindowsVersion == WINDOWS_7) {
|
||||
ResizeMoveCtrl(hDlg, GetDlgItem(hMainDialog, IDS_ADVANCED_OPTIONS_GRP), 0, -1, 0, 2);
|
||||
ResizeMoveCtrl(hDlg, hProgress, 0, 1, 0, 0);
|
||||
ResizeMoveCtrl(hDlg, GetDlgItem(hDlg, IDC_ADVANCED), -2, 0, 0, 0);
|
||||
ResizeMoveCtrl(hDlg, GetDlgItem(hDlg, IDC_ADVANCED), -1, 0, 0, 0);
|
||||
}
|
||||
|
||||
// Subclass the Info box so that we can align its text vertically
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue