| 2342 | QString v = ui.image_right_edit->text(); |
| 2343 | if (v.isEmpty()); |
| 2344 | else if (QiVar::isInteger(v.toStdString())) image.rect.right = QiRange::Restricted(v.toInt(), QiImage::range_rect); |
| 2345 | else image.v_right = v; |
| 2346 | } |
| 2347 | { |
| 2348 | QString v = ui.image_bottom_edit->text(); |
| 2349 | if (v.isEmpty()); |
| 2350 | else if (QiVar::isInteger(v.toStdString())) image.rect.bottom = QiRange::Restricted(v.toInt(), QiImage::range_rect); |
| 2351 | else image.v_bottom = v; |
| 2352 | } |