mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 20:23:06 +02:00
Merge branch 'master' of github.com:highfidelity/hifi into voxel-paint-opti
This commit is contained in:
commit
ebdb1cd3bd
2 changed files with 6 additions and 1 deletions
|
@ -996,6 +996,10 @@ function saveSettings() {
|
||||||
if (password && password.length > 0) {
|
if (password && password.length > 0) {
|
||||||
formJSON["security"]["http_password"] = sha256_digest(password);
|
formJSON["security"]["http_password"] = sha256_digest(password);
|
||||||
}
|
}
|
||||||
|
var verify_password = formJSON["security"]["verify_http_password"];
|
||||||
|
if (verify_password && verify_password.length > 0) {
|
||||||
|
formJSON["security"]["verify_http_password"] = sha256_digest(verify_password);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// verify that the password and confirmation match before saving
|
// verify that the password and confirmation match before saving
|
||||||
|
@ -1010,7 +1014,6 @@ function saveSettings() {
|
||||||
bootbox.alert({"message": "Passwords must match!", "title":"Password Error"});
|
bootbox.alert({"message": "Passwords must match!", "title":"Password Error"});
|
||||||
canPost = false;
|
canPost = false;
|
||||||
} else {
|
} else {
|
||||||
formJSON["security"]["http_password"] = sha256_digest(password);
|
|
||||||
delete formJSON["security"]["verify_http_password"];
|
delete formJSON["security"]["verify_http_password"];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1216,6 +1216,8 @@ Application::Application(int& argc, char** argv, QElapsedTimer& startupTimer, bo
|
||||||
if (entity && entity->wantsKeyboardFocus()) {
|
if (entity && entity->wantsKeyboardFocus()) {
|
||||||
setKeyboardFocusOverlay(UNKNOWN_OVERLAY_ID);
|
setKeyboardFocusOverlay(UNKNOWN_OVERLAY_ID);
|
||||||
setKeyboardFocusEntity(entityItemID);
|
setKeyboardFocusEntity(entityItemID);
|
||||||
|
} else {
|
||||||
|
setKeyboardFocusEntity(UNKNOWN_ENTITY_ID);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue