Skip to content

Commit

Permalink
Issue photo#466 (Card 14)
Browse files Browse the repository at this point in the history
- NavigationHandlerFragment: removed ":" from the setActoinBarTitle call
such as no more "trovebox" text is used in the actionbar logo
- res/drawable-x/actionbar_logo.pnog: replaced with icon only logo
  • Loading branch information
httpdispatch committed Oct 3, 2013
1 parent 11447ec commit c379820
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
Binary file modified app/res/drawable-hdpi/actionbar_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/res/drawable-ldpi/actionbar_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/res/drawable-mdpi/actionbar_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/res/drawable-xhdpi/actionbar_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 6 additions & 4 deletions app/src/com/trovebox/android/app/NavigationHandlerFragment.java
Original file line number Diff line number Diff line change
Expand Up @@ -462,10 +462,12 @@ public void setPrimaryItem(final ViewGroup container, final int position,

@Override
public void run() {
if (getSupportActivity() != null && !getSupportActivity().isFinishing())
{
getSupportActivity().setActionBarTitle(": "
+ CommonUtils.getStringResource(wrappers.get(position).mTitleId));
if (getSupportActivity() != null && !getSupportActivity().isFinishing()) {
getSupportActivity()
.setActionBarTitle(
" "
+ CommonUtils.getStringResource(wrappers
.get(position).mTitleId));
refreshLeftView();
}
}
Expand Down

0 comments on commit c379820

Please sign in to comment.