Skip to content

Commit

Permalink
Merge branch 'main' into feature/update-vue-docs
Browse files Browse the repository at this point in the history
  • Loading branch information
open-hippy authored Nov 6, 2023
2 parents 6485ad4 + 35587da commit 2b9743a
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,13 @@ - (void)setKeyboardType:(UIKeyboardType)keyboardType {
self.text = tempPwdStr;
}

- (void)setReturnKeyType:(UIReturnKeyType) returnKeyType{
[super setReturnKeyType:returnKeyType];
if([self isFirstResponder]){
[self reloadInputViews];
}
}

- (void)setEditable:(BOOL)editable {
_editable = editable;
[self setEnabled:editable];
Expand Down

0 comments on commit 2b9743a

Please sign in to comment.