1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

Add button to show changelog to 'About' dialog

This commit is contained in:
cketti 2013-01-12 23:56:25 +01:00
parent 1c7cf9b5ff
commit 009c2c6a12

View File

@ -1258,6 +1258,11 @@ public class Accounts extends K9ListActivity implements OnItemClickListener {
d.dismiss();
}
})
.setNeutralButton(R.string.changelog_full_title, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface d, int c) {
new ChangeLog(Accounts.this).getFullLogDialog().show();
}
})
.show();
}