Skip to content

Commit

Permalink
Fixed #91
Browse files Browse the repository at this point in the history
  • Loading branch information
vanitasvitae committed Oct 27, 2016
1 parent 9214155 commit 6e1e473
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -576,8 +576,13 @@ protected void onResume() {
LocalBroadcastManager.getInstance(this).registerReceiver(brOpenExternalLink, new IntentFilter(ACTION_OPEN_EXTERNAL_URL));
invalidateOptionsMenu();
this.appSettings = getAppSettings();
boolean podSelection = getTopFragment() != null && getTopFragment().getFragmentTag().equals(PodSelectionFragment.TAG);
if (appSettings.isIntellihideToolbars()) {
this.enableToolbarHiding();
if(podSelection) {
this.disableToolbarHiding();
} else {
this.enableToolbarHiding();
}
} else {
this.disableToolbarHiding();
}
Expand Down

0 comments on commit 6e1e473

Please sign in to comment.