mirror of
https://github.com/modernw/App-Installer-For-Windows-8.x-Reset.git
synced 2026-04-19 13:46:16 +10:00
Fix bugs.
This commit is contained in:
@@ -1623,6 +1623,8 @@ public ref class MainHtmlWnd: public System::Windows::Forms::Form, public IScrip
|
|||||||
{
|
{
|
||||||
if (!(g_wcmdflags & (DWORD)CMDPARAM::SILENT))
|
if (!(g_wcmdflags & (DWORD)CMDPARAM::SILENT))
|
||||||
{
|
{
|
||||||
|
auto launch_when_ready = (bool)InvokeCallScriptFunction ("getLaunchWhenReady");
|
||||||
|
if (!launch_when_ready) return;
|
||||||
std::vector <std::wnstring> appids;
|
std::vector <std::wnstring> appids;
|
||||||
for (auto &it : g_pkginfo)
|
for (auto &it : g_pkginfo)
|
||||||
for (auto &it_s : it.applications)
|
for (auto &it_s : it.applications)
|
||||||
|
|||||||
@@ -495,7 +495,8 @@
|
|||||||
if (!controls) return false;
|
if (!controls) return false;
|
||||||
var checkbox = controls.querySelector(".checkbox input");
|
var checkbox = controls.querySelector(".checkbox input");
|
||||||
if (!checkbox) return false;
|
if (!checkbox) return false;
|
||||||
return checkbox.checked == true;
|
if (checkbox.disabled === true) return false;
|
||||||
|
return checkbox.checked === true || checkbox.checked + "" === "true";
|
||||||
}
|
}
|
||||||
|
|
||||||
function noticeLoadSelectPage() {
|
function noticeLoadSelectPage() {
|
||||||
|
|||||||
Reference in New Issue
Block a user