summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsr55 <[email protected]>2017-12-15 23:18:54 +0000
committersr55 <[email protected]>2017-12-15 23:18:54 +0000
commit0186507c83b1cdb38c882c17dd9ebc02dd16eb41 (patch)
tree2a1b82b2d2ce3144679d332d678ef6e2dad4dd5c
parenta8693f897be0707e32085189a34e97d2b503167a (diff)
WinGui: Use the Lower res assets for now until we implement low/high res icon support.
-rw-r--r--win/CS/HandBrakeWPF/HandBrakeWPF.csproj3
-rw-r--r--win/CS/HandBrakeWPF/Views/Images/ActivityWindow_small.pngbin381 -> 1721 bytes
-rw-r--r--win/CS/HandBrakeWPF/Views/Images/Movies_small.pngbin0 -> 1445 bytes
-rw-r--r--win/CS/HandBrakeWPF/Views/Images/Queue_Small.pngbin609 -> 1762 bytes
-rw-r--r--win/CS/HandBrakeWPF/Views/Images/picture_small.pngbin593 -> 957 bytes
-rw-r--r--win/CS/HandBrakeWPF/Views/MainView.xaml10
6 files changed, 8 insertions, 5 deletions
diff --git a/win/CS/HandBrakeWPF/HandBrakeWPF.csproj b/win/CS/HandBrakeWPF/HandBrakeWPF.csproj
index 226a6eeb2..dea2d44d0 100644
--- a/win/CS/HandBrakeWPF/HandBrakeWPF.csproj
+++ b/win/CS/HandBrakeWPF/HandBrakeWPF.csproj
@@ -738,6 +738,9 @@
<Analyzer Include="..\packages\StyleCop.Analyzers.1.1.0-beta001\analyzers\dotnet\cs\StyleCop.Analyzers.CodeFixes.dll" />
<Analyzer Include="..\packages\StyleCop.Analyzers.1.1.0-beta001\analyzers\dotnet\cs\StyleCop.Analyzers.dll" />
</ItemGroup>
+ <ItemGroup>
+ <Resource Include="Views\Images\Movies_small.png" />
+ </ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
diff --git a/win/CS/HandBrakeWPF/Views/Images/ActivityWindow_small.png b/win/CS/HandBrakeWPF/Views/Images/ActivityWindow_small.png
index 0198dc4f0..2589bc085 100644
--- a/win/CS/HandBrakeWPF/Views/Images/ActivityWindow_small.png
+++ b/win/CS/HandBrakeWPF/Views/Images/ActivityWindow_small.png
Binary files differ
diff --git a/win/CS/HandBrakeWPF/Views/Images/Movies_small.png b/win/CS/HandBrakeWPF/Views/Images/Movies_small.png
new file mode 100644
index 000000000..128edda8c
--- /dev/null
+++ b/win/CS/HandBrakeWPF/Views/Images/Movies_small.png
Binary files differ
diff --git a/win/CS/HandBrakeWPF/Views/Images/Queue_Small.png b/win/CS/HandBrakeWPF/Views/Images/Queue_Small.png
index 03c474131..cf586b0f9 100644
--- a/win/CS/HandBrakeWPF/Views/Images/Queue_Small.png
+++ b/win/CS/HandBrakeWPF/Views/Images/Queue_Small.png
Binary files differ
diff --git a/win/CS/HandBrakeWPF/Views/Images/picture_small.png b/win/CS/HandBrakeWPF/Views/Images/picture_small.png
index 0e0abf349..bb57b35b4 100644
--- a/win/CS/HandBrakeWPF/Views/Images/picture_small.png
+++ b/win/CS/HandBrakeWPF/Views/Images/picture_small.png
Binary files differ
diff --git a/win/CS/HandBrakeWPF/Views/MainView.xaml b/win/CS/HandBrakeWPF/Views/MainView.xaml
index e84b8ee98..4d2f58719 100644
--- a/win/CS/HandBrakeWPF/Views/MainView.xaml
+++ b/win/CS/HandBrakeWPF/Views/MainView.xaml
@@ -133,7 +133,7 @@
<StackPanel Orientation="Horizontal">
<Image Width="32"
Height="32"
- Source="Images/Movies.png"/>
+ Source="Images/Movies_small.png"/>
<Label Margin="8,0,0,0"
VerticalAlignment="Center"
Content="{x:Static Properties:ResourcesUI.MainView_SourceOpen}"/>
@@ -145,7 +145,7 @@
<Button PreviewMouseLeftButtonDown="AddToQueue_PreviewMouseDown" ContextMenuService.IsEnabled="False" AutomationProperties.Name="{x:Static Properties:ResourcesUI.MainView_AddToQueue}">
<StackPanel Orientation="Horizontal">
<StackPanel Orientation="Horizontal">
- <Image Width="32" Height="32" SnapsToDevicePixels="True" Source="Images/AddToQueue.png" />
+ <Image Width="32" Height="32" SnapsToDevicePixels="True" Source="Images/AddToQueue_small.png" />
<Label Margin="8,0,0,0" VerticalAlignment="Center" Content="{x:Static Properties:ResourcesUI.MainView_AddToQueue}" />
</StackPanel>
@@ -171,7 +171,7 @@
<Image Width="32"
Height="32"
SnapsToDevicePixels="True"
- Source="Images/Queue.png"/>
+ Source="Images/Queue_small.png"/>
<Label Margin="8,0,0,0"
VerticalAlignment="Center"
Content="{Binding QueueLabel, FallbackValue='{x:Static Properties:ResourcesUI.MainView_ShowQueue}'}"/>
@@ -234,7 +234,7 @@
<Image Width="32"
Height="32"
SnapsToDevicePixels="True"
- Source="Images/picture.png"/>
+ Source="Images/picture_small.png"/>
<Label Margin="8,0,0,0"
VerticalAlignment="Center"
Content="Preview"/>
@@ -245,7 +245,7 @@
<StackPanel Orientation="Horizontal">
<Image Width="32"
Height="32"
- Source="Images/ActivityWindow.png"/>
+ Source="Images/ActivityWindow_small.png"/>
<Label Margin="8,0,0,0"
VerticalAlignment="Center"
Content="Activity Log"/>