Skip to content

Commit

Permalink
Return deleted code after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
omurovch committed Jun 4, 2024
1 parent 9441af8 commit b635fd8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,17 @@ fun AppearanceScreen(navController: NavController) {
{ openBalanceValueSelector = false }
)
}
if (openPriceChangeIntervalSelector) {
AlertGroup(
R.string.Appearance_PriceChangeInterval,
uiState.priceChangeIntervalOptions,
{ selected ->
viewModel.onSetPriceChangeInterval(selected)
openPriceChangeIntervalSelector = false
},
{ openPriceChangeIntervalSelector = false }
)
}
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1016,7 +1016,7 @@
<string name="Appearance_HideBalanceTabButtonsDescription">This configuration hides the Send, Receive, and Swap buttons on Balance tab.</string>
<string name="Appearance_BalanceAutoHide">Balance Auto Hide</string>
<string name="Appearance_BalanceAutoHide_Description">Automatically hides balance each time the app is opened, regardless of previous preferences.</string>
<string name="Appearance_PriceChangeInterval">Price Change</string>
<string name="Appearance_PriceChangeInterval">Price Change %</string>

<string name="BalanceViewType_CoinValue">Coin Value</string>
<string name="BalanceViewType_FiatValue">Fiat Value</string>
Expand Down

0 comments on commit b635fd8

Please sign in to comment.