Skip to content

Commit

Permalink
render: remove alpha check for input-field (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
bvr-yr authored Feb 26, 2024
1 parent 4acf898 commit a7cffd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/widgets/PasswordInputField.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ bool CPasswordInputField::draw(const SRenderData& data) {
forceReload = true;
}

return dots.currentAmount != PASSLEN || data.opacity < 1.0 || fade.a < 1.0 || forceReload;
return dots.currentAmount != PASSLEN || data.opacity < 1.0 || forceReload;
}

void CPasswordInputField::updateFailTex() {
Expand Down

0 comments on commit a7cffd0

Please sign in to comment.