mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 16:38:27 +02:00
Bugfix: fragment title remains as Avatar after closing it
This commit is contained in:
parent
4a345a5559
commit
3a3bd5922a
1 changed files with 3 additions and 3 deletions
|
@ -367,17 +367,17 @@ public class MainActivity extends AppCompatActivity implements NavigationView.On
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onCancelProfileEdit() {
|
public void onCancelProfileEdit() {
|
||||||
getFragmentManager().popBackStack();
|
loadHomeFragment(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onCompleteProfileEdit() {
|
public void onCompleteProfileEdit() {
|
||||||
getFragmentManager().popBackStack();
|
loadHomeFragment(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onAvatarChosen() {
|
public void onAvatarChosen() {
|
||||||
getFragmentManager().popBackStack();
|
loadHomeFragment(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
private class RoundProfilePictureCallback implements Callback {
|
private class RoundProfilePictureCallback implements Callback {
|
||||||
|
|
Loading…
Reference in a new issue