Nav-transition="none" and hardware back button title disappear

I’ve noticed when i use nav-transition=“none” in a tab element, the bar title moves to the left when you press the android’s hardware back button. In my case im not chaning the nav-title bc i need it to be the same for all 3 sections.

<ion-view hide-back-button="true">
  <ion-nav-title>Main</ion-nav-title>
  <div class="tabs-striped tabs-background-light tabs-color-dark tabs-top">
    <div class="tabs">
      <a nav-transition="none" class="tab-item" ui-sref-opts="tab.main({ selected: 'a' })">A</a>
      <a nav-transition="none" class="tab-item" ui-sref="tab.main({ selected: 'b' })">B</a>
      <a nav-transition="none" class="tab-item" ui-sref="tab.main({ selected: 'c' })">C</a>
    </div>
  </div>
</ion-view>