feat: prevent message list auto scroll

This commit is contained in:
rhunk
2023-12-03 12:42:57 +01:00
parent bfe367efd0
commit 79be5da030
4 changed files with 87 additions and 0 deletions

View File

@ -259,6 +259,10 @@
"name": "Enhanced Friend Map Nametags",
"description": "Improves the Nametags of friends on the Snapmap"
},
"prevent_message_list_auto_scroll": {
"name": "Prevent Message List Auto Scroll",
"description": "Prevents the message list from scrolling to the bottom when sending/receiving a message"
},
"streak_expiration_info": {
"name": "Show Streak Expiration Info",
"description": "Shows a Streak Expiration timer next to the Streaks counter"

View File

@ -29,6 +29,7 @@ class UserInterfaceTweaks : ConfigContainer() {
val snapPreview = boolean("snap_preview") { addNotices(FeatureNotice.UNSTABLE); requireRestart() }
val bootstrapOverride = container("bootstrap_override", BootstrapOverride()) { requireRestart() }
val mapFriendNameTags = boolean("map_friend_nametags") { requireRestart() }
val preventMessageListAutoScroll = boolean("prevent_message_list_auto_scroll") { requireRestart(); addNotices(FeatureNotice.UNSTABLE) }
val streakExpirationInfo = boolean("streak_expiration_info") { requireRestart() }
val hideFriendFeedEntry = boolean("hide_friend_feed_entry") { requireRestart() }
val hideStreakRestore = boolean("hide_streak_restore") { requireRestart() }