1
0
mirror of https://github.com/tateisu/SubwayTooter synced 2025-02-01 11:26:48 +01:00

戻るボタンの動作のデフォルトを俺が普段使ってるやつに変える

This commit is contained in:
tateisu 2023-01-19 12:24:07 +09:00
parent ae67fe6dae
commit 58fd6d19bc
2 changed files with 4 additions and 4 deletions

View File

@ -19,7 +19,7 @@ object PrefB {
val bpDontConfirmBeforeCloseColumn = BooleanPref(
"DontConfirmBeforeCloseColumn",
false
true
)
val bpDontCropMediaThumb = BooleanPref(
@ -64,7 +64,7 @@ object PrefB {
val bpExitAppWhenCloseProtectedColumn = BooleanPref(
"ExitAppWhenCloseProtectedColumn",
false
true
)
val bpMentionFullAcct = BooleanPref(

View File

@ -7,14 +7,14 @@ import jp.juggler.subwaytooter.pref.impl.IntPref
object PrefI {
// int
val ipBackButtonAction = IntPref("back_button_action", 0)
@Suppress("unused")
const val BACK_ASK_ALWAYS = 0
const val BACK_CLOSE_COLUMN = 1
const val BACK_OPEN_COLUMN_LIST = 2
const val BACK_EXIT_APP = 3
val ipBackButtonAction = IntPref("back_button_action", BACK_CLOSE_COLUMN)
val ipUiTheme = IntPref("ui_theme", 2, noRemove = true)
// val ipResizeImage = IntPref("resize_image", 4)