diff options
| author | Bananeweizen <Bananeweizen@gmx.de> | 2013-06-12 22:19:38 -0700 |
|---|---|---|
| committer | Bananeweizen <Bananeweizen@gmx.de> | 2013-06-12 22:19:38 -0700 |
| commit | d5c4fe5b4ca9754b6473c830bf6ede8d7803bdc6 (patch) | |
| tree | 4b952625918bd71b259cabee3fb0d636d789106e /main/res | |
| parent | cf839616a5a195052ea602ecf7abf14209c8a980 (diff) | |
| parent | 4b4294d1bee8504a2041c2f823adaf9079525331 (diff) | |
| download | cgeo-d5c4fe5b4ca9754b6473c830bf6ede8d7803bdc6.zip cgeo-d5c4fe5b4ca9754b6473c830bf6ede8d7803bdc6.tar.gz cgeo-d5c4fe5b4ca9754b6473c830bf6ede8d7803bdc6.tar.bz2 | |
Merge pull request #2879 from campbeb/fix2007b
Fix #2007 - Save waypoint edits by refacotring EditWaypointActivity
Diffstat (limited to 'main/res')
| -rw-r--r-- | main/res/layout/editwaypoint_activity.xml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/main/res/layout/editwaypoint_activity.xml b/main/res/layout/editwaypoint_activity.xml index 657e9f4..cd0b46c 100644 --- a/main/res/layout/editwaypoint_activity.xml +++ b/main/res/layout/editwaypoint_activity.xml @@ -21,12 +21,14 @@ <Button android:id="@+id/buttonLatitude" style="@style/button_full" - android:hint="@string/latitude" /> + android:hint="@string/latitude" + android:freezesText="true" /> <Button android:id="@+id/buttonLongitude" style="@style/button_full" - android:hint="@string/longitude" /> + android:hint="@string/longitude" + android:freezesText="true" /> <EditText android:id="@+id/bearing" @@ -62,7 +64,8 @@ <Spinner android:id="@+id/type" android:layout_width="fill_parent" - android:layout_height="wrap_content" /> + android:layout_height="wrap_content" + android:visibility="gone" /> <EditText android:id="@+id/note" |
