Skip to content

Commit

Permalink
Merge pull request #22 from fltermare/mouse_click
Browse files Browse the repository at this point in the history
User can click on forwarded title now
  • Loading branch information
clyang authored Jan 6, 2018
2 parents b2c757e + e430597 commit f2ad6f0
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 f2ad6f0

Please sign in to comment.