Skip to content

Commit b1077a4

Browse files
committed
Copy lower case hex code, fixed link in settings
1 parent c716575 commit b1077a4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: ColorPicker/ViewModels/MainViewModel.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ private void MouseInfoProvider_OnMouseDown(object sender, System.Drawing.Point p
115115
{
116116
try
117117
{
118-
Clipboard.SetText(HexColor);
118+
Clipboard.SetText(HexColor.ToLowerInvariant());
119119
break;
120120
}
121121
catch (COMException ex)

Diff for: ColorPicker/Views/SettingsView.xaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<Button Margin="5" Content="Check and install updates" Command="{Binding CheckForUpdatesCommand}"/>
3939
<TextBlock Margin="5,10,0,0" FontWeight="SemiBold" Text="{Binding ApplicationVersion, StringFormat={}Version: {0}}" HorizontalAlignment="Right"/>
4040
<TextBlock HorizontalAlignment="Right">
41-
<Hyperlink NavigateUri="http://www.github.com">
41+
<Hyperlink NavigateUri="http://www.github.com/martinchrzan/ColorPicker">
4242
<e:Interaction.Behaviors>
4343
<behaviors:HyperlinkBehavior/>
4444
</e:Interaction.Behaviors>

0 commit comments

Comments
 (0)