-
Notifications
You must be signed in to change notification settings - Fork 169
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comment action bar improvements #453
Comment action bar improvements #453
Conversation
This allows us to remove the markdown scaling applied to the editor which forced the text content to also be increased. Removed the compose-markdown package and created our own wrapper around the markwon libraries with a custom resolver for images. LemmyNet#373
91cc8d1
to
2ae96ae
Compare
I'll make an issue to add a user guide to the readme, and link it from somewhere within the app. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Works great, thank you!
@@ -518,6 +519,7 @@ fun UserTabs( | |||
account = account, | |||
moderators = listOf(), | |||
isCollapsedByParent = false, | |||
showActionBarByDefault = appSettingsViewModel.appSettings.value?.showCommentActionBarByDefault ?: true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Could we add an option to long press to collapse and tap to expand the action bar? |
No because tap collapses / uncollapses child comments. |
This PR currently is built on top of #432. It adds an option to show action bars by default for comments. Currently this is built into database migration 11, but if there is a release before this is merged I will make it a different migration version. It also adds the ability to long-press on a comment to toggle the action bar state.
I can rebase this to work without #432, but the current markdown renderer does not expose an
onLongClick
option, so the long press would only work in the top and bottom bars.Addresses #319, #418