Kaydet (Commit) 889ff81d authored tarafından Iain Billett's avatar Iain Billett

Fixed folder navigation in list view.

üst d848fac2
...@@ -342,8 +342,11 @@ public class LibreOfficeUIActivity extends Activity implements OnNavigationListe ...@@ -342,8 +342,11 @@ public class LibreOfficeUIActivity extends Activity implements OnNavigationListe
public void onClick(View v) { public void onClick(View v) {
Log.d("LIST", "click!"); Log.d("LIST", "click!");
if(filePaths[ pos ].isDirectory() ){
open( filePaths[ pos ].getName() ); openDirectory( filePaths[ pos ] );
}else{
open( filePaths[ pos ].getName() );
}
} }
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment