KyujuuAlpha / iBox-2

Bochs 2.6.8 for iOS
120 stars 63 forks source link

Small bug in code #14

Open vtns opened 6 years ago

vtns commented 6 years ago

at iBox/iBox/DriveEditorViewController.swift : 203

let indexPath = self.tableView.indexPathForRow(at: textField.convert(textField.frame.origin, to: self.tableView))!

This will crashes the app when user tap at textField (on my iPhone X it will). This line should be:

let indexPath = self.tableView.indexPathForRow(at: textField.convert(textField.bounds.origin, to: self.tableView))!