Skip to content

Commit 7a52d3e

Browse files
committed
adding a 60% font size too
1 parent 81aee12 commit 7a52d3e

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

app/src/main/kotlin/com/simplemobiletools/notes/pro/activities/SettingsActivity.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ class SettingsActivity : SimpleActivity() {
160160
settings_font_size_holder.setOnClickListener {
161161
val items = arrayListOf(
162162
RadioItem(FONT_SIZE_50_PERCENT, getFontSizePercentText(FONT_SIZE_50_PERCENT)),
163+
RadioItem(FONT_SIZE_60_PERCENT, getFontSizePercentText(FONT_SIZE_60_PERCENT)),
163164
RadioItem(FONT_SIZE_75_PERCENT, getFontSizePercentText(FONT_SIZE_75_PERCENT)),
164165
RadioItem(FONT_SIZE_90_PERCENT, getFontSizePercentText(FONT_SIZE_90_PERCENT)),
165166
RadioItem(FONT_SIZE_100_PERCENT, getFontSizePercentText(FONT_SIZE_100_PERCENT)),

app/src/main/kotlin/com/simplemobiletools/notes/pro/helpers/Constants.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ const val MIME_TEXT_PLAIN = "text/plain"
4545

4646
// font size percentage options
4747
const val FONT_SIZE_50_PERCENT = 50
48+
const val FONT_SIZE_60_PERCENT = 60
4849
const val FONT_SIZE_75_PERCENT = 75
4950
const val FONT_SIZE_90_PERCENT = 90
5051
const val FONT_SIZE_100_PERCENT = 100

0 commit comments

Comments
 (0)