Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mehaifeng committed May 7, 2023
1 parent 60c164b commit 2c337f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ViewModels/VisualChatViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ void RecoveryThemeOnChatBox(StackPanel o)
if (border.Tag.ToString() == "respondbox")
{
border.Background = Brushes.White;
//(((border.Child) as Grid).Children[0] as TextBox).Foreground = Brushes.Black;
(((border.Child) as Grid).Children[0] as TextBox).Foreground = Brushes.Black;
}
}
}
Expand All @@ -634,7 +634,7 @@ void RecoveryThemeOnChatBox(StackPanel o)
if (border.Tag.ToString() == "respondbox")
{
border.Background = (Brush)converter.ConvertFromString("#2a52be");
//(((border.Child) as Grid).Children[0] as TextBox).Foreground = Brushes.White;
(((border.Child) as Grid).Children[0] as TextBox).Foreground = Brushes.White;
}
}
}
Expand Down

0 comments on commit 2c337f6

Please sign in to comment.