fix #211, use the note title as the subject at Share

This commit is contained in:
tibbi 2018-08-10 20:33:12 +02:00
parent c822645240
commit c9becb9359
1 changed files with 1 additions and 1 deletions

View File

@ -566,7 +566,7 @@ class MainActivity : SimpleActivity(), ViewPager.OnPageChangeListener {
val shareTitle = res.getString(R.string.share_via)
Intent().apply {
action = Intent.ACTION_SEND
putExtra(Intent.EXTRA_SUBJECT, res.getString(R.string.simple_note))
putExtra(Intent.EXTRA_SUBJECT, mCurrentNote.title)
putExtra(Intent.EXTRA_TEXT, text)
type = "text/plain"
startActivity(Intent.createChooser(this, shareTitle))