pfp: remove border except for profile
Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
@@ -113,21 +113,13 @@ impl<'a> PostView<'a> {
|
||||
.get_profile_by_pubkey(txn, self.poster.pubkey.bytes())
|
||||
.as_ref()
|
||||
.ok()
|
||||
.and_then(|p| {
|
||||
Some(
|
||||
ui::ProfilePic::from_profile(self.img_cache, p)?
|
||||
.size(pfp_size)
|
||||
.border(2.0),
|
||||
)
|
||||
});
|
||||
.and_then(|p| Some(ui::ProfilePic::from_profile(self.img_cache, p)?.size(pfp_size)));
|
||||
|
||||
if let Some(pfp) = poster_pfp {
|
||||
ui.add(pfp);
|
||||
} else {
|
||||
ui.add(
|
||||
ui::ProfilePic::new(self.img_cache, ui::ProfilePic::no_pfp_url())
|
||||
.size(pfp_size)
|
||||
.border(2.0),
|
||||
ui::ProfilePic::new(self.img_cache, ui::ProfilePic::no_pfp_url()).size(pfp_size),
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user