Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorVsevolod Kukol <sevoku@xamarin.com>2015-12-21 16:47:14 +0300
committerVsevolod Kukol <sevoku@xamarin.com>2015-12-21 16:47:14 +0300
commitb4cc391dd9fa7be6183d10d64c55244efa94801d (patch)
tree931b148eb70bbae46fb4d3a6cd208fa7032931e7 /main
parent9f8b65f5f5249f3cc144f042f7b726b6fe11959c (diff)
[Windows] Fix dark search entry caret
Diffstat (limited to 'main')
-rw-r--r--main/src/addins/WindowsPlatform/WindowsPlatform/MainToolbar/SearchBar.xaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/addins/WindowsPlatform/WindowsPlatform/MainToolbar/SearchBar.xaml b/main/src/addins/WindowsPlatform/WindowsPlatform/MainToolbar/SearchBar.xaml
index 1ff2bd6765..c28941bd0c 100644
--- a/main/src/addins/WindowsPlatform/WindowsPlatform/MainToolbar/SearchBar.xaml
+++ b/main/src/addins/WindowsPlatform/WindowsPlatform/MainToolbar/SearchBar.xaml
@@ -11,7 +11,7 @@
BorderBrush="{Binding Path=(platform:Styles.SearchBarBorderBrush), Mode=OneWay}">
<Border BorderThickness="0" UseLayoutRounding="True">
<StackPanel Orientation="Horizontal" VerticalAlignment="Center" Height="26" UseLayoutRounding="True">
- <TextBox x:Name="SearchBar" Text="{Binding Path=SearchText, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" VerticalAlignment="Center" MinWidth="180" Margin="5,0,0,0" Background="Transparent" Foreground="{Binding Foreground}" BorderThickness="0" UseLayoutRounding="True" />
+ <TextBox x:Name="SearchBar" Text="{Binding Path=SearchText, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" VerticalAlignment="Center" MinWidth="180" Margin="5,0,0,0" Background="Transparent" Foreground="{Binding Foreground}" CaretBrush="{Binding Foreground}" BorderThickness="0" UseLayoutRounding="True" />
<local:IconButtonControl x:Name="SearchIcon" Width="24" Height="24" Margin="0,0,1,0" Click="OnIconClicked" UseLayoutRounding="True" VerticalContentAlignment="Center" VerticalAlignment="Center" >
<local:IconButtonControl.ContextMenu>
<ContextMenu UseLayoutRounding="True" />