Skip to content
This repository has been archived by the owner on Oct 28, 2024. It is now read-only.

Commit

Permalink
Still set desired height
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacocococo committed Feb 12, 2024
1 parent e547260 commit d5ae2e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,6 @@ public void setDrawable(Drawable drawable){
}

public UrlImageLoaderRequest createImageLoaderRequest(){
return new UrlImageLoaderRequest(GlobalUserPreferences.playGifs ? emoji.url : emoji.staticUrl);
return new UrlImageLoaderRequest(GlobalUserPreferences.playGifs ? emoji.url : emoji.staticUrl, 0, V.dp(20));
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ public void setImageDrawable(Drawable d) {
public View getView() {
return view;
}
}, null, new UrlImageLoaderRequest(emoji.getKey().url), null, false, true);
}, null, new UrlImageLoaderRequest(emoji.getKey().url, 0, V.dp(20)), null, false, true);
}
}

Expand Down

0 comments on commit d5ae2e3

Please sign in to comment.