diff options
| author | Marco Jacob <mjacob@union06.de> | 2013-10-02 05:56:15 +0200 |
|---|---|---|
| committer | Marco Jacob <mjacob@union06.de> | 2013-10-02 05:56:15 +0200 |
| commit | 39d26215babc48cad64492fdfb4e655635380d6e (patch) | |
| tree | c8c6643b6b55cc924c5c5f7b9b229823f123292f /main/res | |
| parent | 30033efa4938dd5cba2a2db91b611adeade0b182 (diff) | |
| download | cgeo-39d26215babc48cad64492fdfb4e655635380d6e.zip cgeo-39d26215babc48cad64492fdfb4e655635380d6e.tar.gz cgeo-39d26215babc48cad64492fdfb4e655635380d6e.tar.bz2 | |
fixes #3303 - SimpleDirChooser shows all readable directories now
Diffstat (limited to 'main/res')
| -rw-r--r-- | main/res/layout/simple_dir_chooser.xml | 6 |
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> |
