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
1 changed files with 5 additions and 0 deletions

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();
}