Update default weight

This commit is contained in:
Aleksandras Kostarevas 2024-05-07 13:44:59 -05:00
parent d83e9ae637
commit 193c0078ee
2 changed files with 4 additions and 4 deletions

View File

@ -78,11 +78,11 @@ fun HelpScreen(navController: NavHostController = rememberNavController()) {
NavigationItem(title = "FUTO Chat", subtitle = "Wanna talk but don't like Discord? Chat here", style = NavigationItemStyle.Misc, navigate = {
context.openURI("https://chat.futo.org/")
})
NavigationItem(title = "Email keyboard@futo.org", subtitle = "Private feedback or help? Email us", style = NavigationItemStyle.Mail, navigate = {
context.openURI("mailto:keyboard@futo.org")
})
NavigationItem(title = "Public issue tracker", subtitle = "Specific bug or feature request? Post here", style = NavigationItemStyle.Misc, navigate = {
context.openURI("https://github.com/futo-org/android-keyboard/issues")
})
NavigationItem(title = "Email keyboard@futo.org", subtitle = "Private feedback, help, or don't use GitHub? Email us", style = NavigationItemStyle.Mail, navigate = {
context.openURI("mailto:keyboard@futo.org")
})
}
}

View File

@ -46,7 +46,7 @@ val AutocorrectThresholdSetting = SettingsKey(
val BinaryDictTransformerWeightSetting = SettingsKey(
floatPreferencesKey("binary_dict_result_weight"),
1.0f
3.4f
)
private fun SuggestedWordInfo.add(other: SuggestedWordInfo): SuggestedWordInfo {