Wrap long event titles in the edit screen (#33) #65
Reference in New Issue
Block a user
Delete Branch "feat/wrap-long-titles"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Fixes #33.
The edit-screen title field was single-line, so long titles scrolled off one line instead of wrapping. This makes it multi-line so the title wraps and grows vertically, matching the detail screen (which already wrapped) and Google Calendar's behaviour from the issue's screenshots.
A title stays one logical line:
setTitlestrips any newline the IME's Enter key or a paste would introduce, so no line break can reach the provider's TITLE column. The soft keyboard's return key is thus a no-op (we can't remove the key — the IME owns its layout — but its effect is nullified).EventEditScreen.kt: titleInlineFieldnowsingleLine = falseEventEditViewModel.kt:setTitledrops newlinesRelease branch merged in, so the diff is just this fix. On-device review still owed before release.