mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-12-02 13:32:19 -05:00
Merge branch 'development' of github.com:open-keychain/open-keychain into development
This commit is contained in:
commit
3752cdd132
@ -98,7 +98,7 @@ public class FirstTimeActivity extends BaseActivity {
|
|||||||
if (srcData != null) {
|
if (srcData != null) {
|
||||||
intent.putExtras(srcData);
|
intent.putExtras(srcData);
|
||||||
}
|
}
|
||||||
startActivityForResult(intent, 0);
|
startActivity(intent);
|
||||||
finish();
|
finish();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -107,4 +107,5 @@ public class FirstTimeActivity extends BaseActivity {
|
|||||||
public boolean onKeyDown(int keyCode, KeyEvent event) {
|
public boolean onKeyDown(int keyCode, KeyEvent event) {
|
||||||
return keyCode == KeyEvent.KEYCODE_MENU || super.onKeyDown(keyCode, event);
|
return keyCode == KeyEvent.KEYCODE_MENU || super.onKeyDown(keyCode, event);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -64,6 +64,13 @@ public class KeyListActivity extends DrawerActivity {
|
|||||||
|
|
||||||
mExportHelper = new ExportHelper(this);
|
mExportHelper = new ExportHelper(this);
|
||||||
|
|
||||||
|
Intent data = getIntent();
|
||||||
|
// If we got an EXTRA_RESULT in the intent, show the notification
|
||||||
|
if (data != null && data.hasExtra(OperationResult.EXTRA_RESULT)) {
|
||||||
|
OperationResult result = data.getParcelableExtra(OperationResult.EXTRA_RESULT);
|
||||||
|
result.createNotify(this).show();
|
||||||
|
}
|
||||||
|
|
||||||
// now setup navigation drawer in DrawerActivity...
|
// now setup navigation drawer in DrawerActivity...
|
||||||
activateDrawerNavigation(savedInstanceState);
|
activateDrawerNavigation(savedInstanceState);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user