Skip to content

Commit

Permalink
Revert "Fixed a binding and an issue linked to the transparency of co…
Browse files Browse the repository at this point in the history
…pied pictures. (#29)"

This reverts commit 192b902.
  • Loading branch information
veler authored Sep 6, 2017
1 parent 192b902 commit d0bbf89
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ android {
minSdkVersion 21
targetSdkVersion 25
versionCode 1
versionName "2017.9.6.5" // Do NOT change this line manually. It is changed automatically everytime the Windows app is built.
versionName "2017.9.3.56" // Do NOT change this line manually. It is changed automatically everytime the Windows app is built.
// Do NOT change this line manually. It is changed automatically everytime the Windows app is built.
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
jackOptions {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ internal static BitmapSource DeviceIndependentBitmapToBitmapSource(MemoryStream
try
{
var ptr = new IntPtr((long)gch.AddrOfPinnedObject() + 40);
bmp = new Bitmap(width, height, width * 4, PixelFormat.Format32bppRgb, ptr);
bmp = new Bitmap(width, height, width * 4, PixelFormat.Format32bppArgb, ptr);
bmp.MakeTransparent(Color.Transparent);
bmp.RotateFlip(RotateFlipType.Rotate180FlipX);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2017.9.6.5")]
[assembly: AssemblyFileVersion("2017.9.6.5")]
[assembly: AssemblyVersion("2017.9.3.56")]
[assembly: AssemblyFileVersion("2017.9.3.56")]

[assembly: InternalsVisibleTo("ClipboardZanager.Tests")]

Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@
</i:EventTrigger>
</i:Interaction.Triggers>
</Button>
<TextBlock Text="{Binding Date, Converter={StaticResource DateTimeToTimeSpanStringConverter}}" Margin="10,0,0,0" FontSize="20" Foreground="{StaticResource PasteBarItemMoreInfoForeground}" VerticalAlignment="Center" Focusable="{Binding DataContext.IsScreenReaderRunning, ElementName=blurredWindow}"/>
<TextBlock Text="{Binding Date, Converter={StaticResource DateTimeToTimeSpanStringConverter}}" Margin="10,0,0,0" FontSize="20" Foreground="{StaticResource PasteBarItemMoreInfoForeground}" VerticalAlignment="Center" Focusable="{Binding IsScreenReaderRunning}"/>
</StackPanel>
</ScrollViewer>
</DockPanel>
Expand Down

0 comments on commit d0bbf89

Please sign in to comment.