Skip to content

Commit

Permalink
サムネイル画像をダブルクリックする際に FullSizeImageUrl がnullの場合は ImageUrl を開くよう変更
Browse files Browse the repository at this point in the history
  • Loading branch information
upsilon committed Feb 11, 2015
1 parent 47d7a15 commit 382d7c9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions OpenTween/Tween.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13176,8 +13176,7 @@ private void tweetThumbnail1_ThumbnailImageSearchClick(object sender, ThumbnailI

private void OpenThumbnailPicture(ThumbnailInfo thumbnail)
{
var url = thumbnail.IsPlayable ? thumbnail.ImageUrl :
thumbnail.FullSizeImageUrl ?? thumbnail.ThumbnailUrl;
var url = thumbnail.FullSizeImageUrl ?? thumbnail.ImageUrl;

this.OpenUriAsync(url);
}
Expand Down

0 comments on commit 382d7c9

Please sign in to comment.