mirror of
https://github.com/rhunk/SnapEnhance.git
synced 2025-06-12 13:17:42 +02:00
feat: prevent message list auto scroll
This commit is contained in:
@ -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"
|
||||
|
@ -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() }
|
||||
|
Reference in New Issue
Block a user