diff options
| author | Bananeweizen <Bananeweizen@gmx.de> | 2012-12-26 07:55:15 -0800 |
|---|---|---|
| committer | Bananeweizen <Bananeweizen@gmx.de> | 2012-12-26 07:55:15 -0800 |
| commit | 111924972f818d09e706e3d712707164f5bab13a (patch) | |
| tree | 46422ff24d28b2859b42882b97076e16a1c1f1f3 /main/res/layout | |
| parent | a92fb90678daa6964e0aad776eece7dacf523b1b (diff) | |
| parent | 7ddcf06c583117fb84846793bbf368f6f44f487c (diff) | |
| download | cgeo-111924972f818d09e706e3d712707164f5bab13a.zip cgeo-111924972f818d09e706e3d712707164f5bab13a.tar.gz cgeo-111924972f818d09e706e3d712707164f5bab13a.tar.bz2 | |
Merge pull request #2283 from triakcz/fix_2273
Fix #2273 Disable upload of coordinates for non multi/mystery caches
Diffstat (limited to 'main/res/layout')
| -rw-r--r-- | main/res/layout/waypoint_new.xml | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/main/res/layout/waypoint_new.xml b/main/res/layout/waypoint_new.xml index d6d6463..466ef57 100644 --- a/main/res/layout/waypoint_new.xml +++ b/main/res/layout/waypoint_new.xml @@ -91,9 +91,11 @@ android:singleLine="false" /> <LinearLayout + android:id="@+id/setAsCacheCoordsLayout" android:layout_width="fill_parent" android:layout_height="wrap_content" - android:orientation="horizontal" > + android:orientation="horizontal" + android:visibility="gone" > <CheckBox android:id="@+id/setAsCacheCoordsCheckBox" @@ -108,15 +110,16 @@ </LinearLayout> <LinearLayout + android:id="@+id/uploadCoordsToWebsiteLayout" android:layout_width="fill_parent" android:layout_height="wrap_content" - android:orientation="horizontal" > + android:orientation="horizontal" + android:visibility="gone" > <CheckBox android:id="@+id/uploadCoordsToWebsiteCheckBox" android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:visibility="gone" /> + android:layout_height="wrap_content" /> <TextView android:layout_width="fill_parent" |
