mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
ragged right align for story titles when thumbnail enabled (#942)
This commit is contained in:
parent
f2def98be8
commit
1ae3fa72f9
1 changed files with 2 additions and 1 deletions
|
@ -183,7 +183,8 @@ public class StoryItemsAdapter extends SimpleCursorAdapter {
|
|||
thumbnailView.setVisibility(View.VISIBLE);
|
||||
FeedUtils.thumbnailLoader.displayImage(story.thumbnailUrl, thumbnailView, 0, true);
|
||||
} else {
|
||||
thumbnailView.setVisibility(View.INVISIBLE);
|
||||
// to GONE rather than INVIS makes start titles misalign on the right side, but this is by design
|
||||
thumbnailView.setVisibility(View.GONE);
|
||||
}
|
||||
} else {
|
||||
thumbnailView.setVisibility(View.GONE);
|
||||
|
|
Loading…
Add table
Reference in a new issue