aboutsummaryrefslogtreecommitdiffstats
path: root/main/res
diff options
context:
space:
mode:
authorBananeweizen <Bananeweizen@gmx.de>2013-10-03 23:21:56 -0700
committerBananeweizen <Bananeweizen@gmx.de>2013-10-03 23:21:56 -0700
commita991f36d5cd00b3bbfbed27c4de30bf608d8b009 (patch)
tree1c859986fe35d079ea67f356295ea93b6300825f /main/res
parent4c65cb6e3443b2423e4dd16f1e7de711a5306975 (diff)
parent39d26215babc48cad64492fdfb4e655635380d6e (diff)
downloadcgeo-a991f36d5cd00b3bbfbed27c4de30bf608d8b009.zip
cgeo-a991f36d5cd00b3bbfbed27c4de30bf608d8b009.tar.gz
cgeo-a991f36d5cd00b3bbfbed27c4de30bf608d8b009.tar.bz2
Merge pull request #3323 from marco-dev/fixDirChooser
fixes #3303 - SimpleDirChooser shows all readable directories now
Diffstat (limited to 'main/res')
-rw-r--r--main/res/layout/simple_dir_chooser.xml6
1 files changed, 4 insertions, 2 deletions
diff --git a/main/res/layout/simple_dir_chooser.xml b/main/res/layout/simple_dir_chooser.xml
index f7e03d8..637a2e1 100644
--- a/main/res/layout/simple_dir_chooser.xml
+++ b/main/res/layout/simple_dir_chooser.xml
@@ -49,15 +49,17 @@
<Button
android:id="@+id/simple_dir_chooser_ok"
style="@style/button_full"
- android:layout_width="wrap_content"
+ android:layout_width="fill_parent"
android:layout_height="wrap_content"
+ android:layout_weight="1"
android:text="@android:string/ok" />
<Button
android:id="@+id/simple_dir_chooser_cancel"
style="@style/button_full"
- android:layout_width="wrap_content"
+ android:layout_width="fill_parent"
android:layout_height="wrap_content"
+ android:layout_weight="1"
android:text="@android:string/cancel" />
</LinearLayout>