Skip to content

Commit

Permalink
Set image dimensions properly
Browse files Browse the repository at this point in the history
  • Loading branch information
Waboodoo committed Jul 12, 2022
1 parent b9dcbf7 commit 25e4e8d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion HTTPShortcuts/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ android {
// Version name and code must remain as literals so that F-Droid can read them
versionName = "2.21.0"
// 11,(2 digits major),(2 digits minor),(2 digits patch),(2 digits build)
versionCode = 1102210000
versionCode = 1102210001

buildConfigField("String", "BUGSNAG_API_KEY", "\"$bugsnagAPIKey\"")
buildConfigField("String", "BUILD_TIMESTAMP", "\"${rootProject.ext["buildTimestamp"]}\"")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ class ImageGetter(
.subscribe(
{ drawable ->
drawableWrapper.wrappedDrawable = drawable
drawableWrapper.setBounds(0, 0, drawable.intrinsicWidth, drawable.intrinsicHeight)
onImageLoaded()
},
{ error ->
Expand Down

0 comments on commit 25e4e8d

Please sign in to comment.