Skip to content

Commit

Permalink
Adjust Books → My Books and change order of navigation drawer
Browse files Browse the repository at this point in the history
  • Loading branch information
io7m committed May 21, 2015
1 parent d820485 commit 61d75ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
import com.io7m.jnull.Nullable;

/**
* The type of all activities in the app.
* The type of non-reader activities in the app.
*/

@SuppressWarnings("boxing") public abstract class SimplifiedActivity extends
Expand Down Expand Up @@ -172,8 +172,8 @@ protected final FrameLayout getContentFrame()

final ArrayList<String> di = new ArrayList<String>();
di.add(catalog_name);
di.add(holds_name);
di.add(books_name);
di.add(holds_name);
di.add(settings_name);
dl.setAdapter(new ArrayAdapter<String>(this, R.layout.drawer_item, di));

Expand Down
2 changes: 1 addition & 1 deletion simplified-app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<string name="app_name">Simplified</string>
<string name="holds">Holds</string>
<string name="books">Books</string>
<string name="books">My Books</string>

<!-- Catalog strings -->
<string name="catalog">Catalog</string>
Expand Down

0 comments on commit 61d75ee

Please sign in to comment.