diff options
| author | Bananeweizen <bananeweizen@gmx.de> | 2014-01-17 18:51:53 +0100 |
|---|---|---|
| committer | Bananeweizen <bananeweizen@gmx.de> | 2014-01-17 18:51:53 +0100 |
| commit | 8b517dc0504da184b6b671addfad685aef884150 (patch) | |
| tree | 85a6c8c6becce2c7fc1b71722b3fa9aab23d0b96 /main/src/cgeo/geocaching/ImageSelectActivity.java | |
| parent | e7ce767a011eaac66bbc3f3ea1702840d5e9c32c (diff) | |
| download | cgeo-8b517dc0504da184b6b671addfad685aef884150.zip cgeo-8b517dc0504da184b6b671addfad685aef884150.tar.gz cgeo-8b517dc0504da184b6b671addfad685aef884150.tar.bz2 | |
fix #3100: Set cursor in personal notes at the end
Diffstat (limited to 'main/src/cgeo/geocaching/ImageSelectActivity.java')
| -rw-r--r-- | main/src/cgeo/geocaching/ImageSelectActivity.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/main/src/cgeo/geocaching/ImageSelectActivity.java b/main/src/cgeo/geocaching/ImageSelectActivity.java index 9e0a37d..a9230c9 100644 --- a/main/src/cgeo/geocaching/ImageSelectActivity.java +++ b/main/src/cgeo/geocaching/ImageSelectActivity.java @@ -5,6 +5,7 @@ import butterknife.InjectView; import cgeo.geocaching.activity.AbstractActivity; import cgeo.geocaching.settings.Settings; +import cgeo.geocaching.ui.dialog.Dialogs; import cgeo.geocaching.utils.ImageUtils; import cgeo.geocaching.utils.Log; @@ -103,10 +104,12 @@ public class ImageSelectActivity extends AbstractActivity { if (StringUtils.isNotBlank(imageCaption)) { captionView.setText(imageCaption); + Dialogs.moveCursorToEnd(captionView); } if (StringUtils.isNotBlank(imageDescription)) { descriptionView.setText(imageDescription); + Dialogs.moveCursorToEnd(captionView); } scaleView.setSelection(scaleChoiceIndex); |
