2ちゃんねるブラウザ「OpenJane」改造総合スレ 2

このエントリーをはてなブックマークに追加
433333
http://pc3.2ch.net/test/read.cgi/win/1036406402/
http://pc3.2ch.net/test/read.cgi/win/1036406402/l50
http://pc3.2ch.net/test/read.cgi/win/1036406402/l100

と言ったURLにカーソルを合わせた時にそのスレの>>1をポップアップ(たぶん)。

Show2chInfo.ShowThreadInfoを以下へ変更。
procedure ShowThreadInfo(const URI: string; const index: string; const thread: TThreadItem);
var
s, number: string;
begin
// if (index <> '') and
if (Config.hintForOtherThread or ((currentView <> nil) and
(currentView.thread = thread))) then
number := index;
if (number = '') or AnsiContainsText(number, 'l') then
number := '1';
s := PickUpRes('#' + number, thread);
ShowHint(URI + #13#10+
TCategory(TBoard(thread.board).category).name + ' ['
+ TBoard(thread.board).name + '] “'
+ HTML2String(thread.title) + '”' + #13#10
+ #13#10
+ s);
end;