Merge pull request 'Reverted app menu text sizes' (#10) from 1.2 into main

Reviewed-on: https://codeberg.org/ottoptj/yamlauncher/pulls/10
This commit is contained in:
Otto Petäjä 2024-08-31 10:12:18 +00:00
commit d457fd94ee
2 changed files with 3 additions and 4 deletions

View file

@ -323,12 +323,12 @@ class UIUtils(private val context: Context) {
regionText: TextView? = null
) {
val size = sharedPreferenceManager.getAppSize()
setTextSize(textView, size, 20F, 24F, 28F, 32F, 36F, 40F)
setTextSize(textView, size, 21F, 24F, 27F, 30F, 33F, 36F)
if (editText != null) {
setTextSize(editText, size, 20F, 24F, 28F, 32F, 36F, 40F)
setTextSize(editText, size, 21F, 24F, 27F, 30F, 33F, 36F)
}
if (regionText != null) {
setTextSize(regionText, size, 10F, 14F, 18F, 22F, 26F, 30F)
setTextSize(regionText, size, 11F, 14F, 17F, 20F, 23F, 26F)
}
}

View file

@ -1,5 +1,4 @@
Minor bug fix and enhancement release.
- Fixed a bug where the search bar would sho wup after renaming an app when the search bar is disabled.
- Modified text sizes in the app menu to match maximum shortcut sizes.
- Adjusted shortcut spacing and the huge option is now far bigger than before.