瀏覽代碼

Show undeleted text in select mode in Apollo

master
lint 5 年之前
父節點
當前提交
a14dc0bea4
共有 1 個檔案被更改,包括 5 行新增3 行删除
  1. +5
    -3
      tweak/Apollo.xm

+ 5
- 3
tweak/Apollo.xm 查看文件

id authorTextNode = [authorNode subnodes][0]; id authorTextNode = [authorNode subnodes][0];
NSString *author = data[@"author"]; NSString *author = data[@"author"];
NSString *body = data[@"body"];
id prevAuthorAttributedString = [authorTextNode attributedString]; id prevAuthorAttributedString = [authorTextNode attributedString];
NSDictionary *authorStringAttributes = [prevAuthorAttributedString attributesAtIndex:0 longestEffectiveRange:nil inRange:NSMakeRange(0, [prevAuthorAttributedString length])]; NSDictionary *authorStringAttributes = [prevAuthorAttributedString attributesAtIndex:0 longestEffectiveRange:nil inRange:NSMakeRange(0, [prevAuthorAttributedString length])];
[authorTextNode setAttributedText:newAuthorAttributedString]; [authorTextNode setAttributedText:newAuthorAttributedString];
[authorTextNode setAttributedString:newAuthorAttributedString]; [authorTextNode setAttributedString:newAuthorAttributedString];
[comment setAuthor:author];
[bodyNode setAttributedString:[%c(MarkdownRenderer) attributedStringFromMarkdown:data[@"body"] withAttributes:apolloBodyAttributes]];
[bodyNode setAttributedString:[%c(MarkdownRenderer) attributedStringFromMarkdown:body withAttributes:apolloBodyAttributes]];
[comment setAuthor:author];
[comment setBody:body];
[data[@"sender"] setEnabled:YES]; [data[@"sender"] setEnabled:YES];
} }

Loading…
取消
儲存