Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/Core/Pages/Vault/CipherAddEditPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -268,6 +268,14 @@ private async void ScanTotp_Clicked(object sender, System.EventArgs e)
{
await Navigation.PopModalAsync();
await _vm.UpdateTotpKeyAsync(key);

#if IOS
// HACK: To avoid a bug that incorrectly sets the TextColor when changing text
// programatically we need to set it to null and back to the correct color
// MAUI issue https://github.com/dotnet/maui/pull/20100
_loginTotpEntry.TextColor = null;
_loginTotpEntry.TextColor = ThemeManager.GetResourceColor("TextColor");
#endif
}
catch (Exception ex)
{
Expand Down