Skip to content

Commit

Permalink
Still set desired height
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacocococo authored and LucasGGamerM committed Aug 4, 2024
1 parent 2021c33 commit c26df57
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 @@ -434,7 +434,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 c26df57

Please sign in to comment.