correct toolbar colour for testnet (#218)

This commit is contained in:
m2049r 2018-04-02 13:02:00 +02:00 committed by GitHub
parent da8c8f80f1
commit df2ff8b3b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -8,8 +8,8 @@ android {
applicationId "com.m2049r.xmrwallet"
minSdkVersion 21
targetSdkVersion 25
versionCode 84
versionName "1.4.4 'Monero Spedner'"
versionCode 85
versionName "1.4.5 'Monero Spedner'"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
externalNativeBuild {
cmake {

View File

@ -222,6 +222,8 @@ public class WalletActivity extends SecureActivity implements WalletFragment.Lis
}
});
showNet();
Fragment walletFragment = new WalletFragment();
getSupportFragmentManager().beginTransaction()
.add(R.id.fragment_container, walletFragment, WalletFragment.class.getName()).commit();