Skip to content

Commit

Permalink
Fix user can not click on "forwarded" title
Browse files Browse the repository at this point in the history
modify the function isPostTitleStarter() in WLClickEntryHotspotHandler.m
add another unichar 0x8f49 轉
  • Loading branch information
fltermare committed Jan 5, 2018
1 parent f9eaa66 commit e430597
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/WLClickEntryHotspotHandler.m
Original file line number Diff line number Diff line change
Expand Up @@ -233,9 +233,9 @@ - (BOOL)startsAtRow:(int)row
BOOL isPostTitleStarter(unichar c) {
// smth: 0x25cf (solid circle "●"), 0x251c ("├"), 0x2514 ("└"), 0x2605("★")
// free/sjtu: 0x25c6 (solid diamond "◆")
// ptt: 0x25a1 (hollow square "□")
// ptt: 0x25a1 (hollow square "□"), 0x8f49 (traditional chinese word "轉")
return (c == 0x25cf || c == 0x251c || c == 0x2514 || c == 0x2605
|| c == 0x25c6 || c == 0x25a1);
|| c == 0x25c6 || c == 0x25a1 || c == 0x8f49);
}

- (void)updatePostClickEntry {
Expand Down

0 comments on commit e430597

Please sign in to comment.