From cee372c477f0f54be4d9186c688f4059b02d7251 Mon Sep 17 00:00:00 2001 From: Stas Degteff Date: Wed, 21 Sep 2005 17:57:13 +0000 Subject: [PATCH] Fix ReplyLinkFloat for big threads. Patch from Ianos Gnatiuc 2:469/335.155 --- golded3/gemlst.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/golded3/gemlst.cpp b/golded3/gemlst.cpp index 987478c..b1e2448 100644 --- a/golded3/gemlst.cpp +++ b/golded3/gemlst.cpp @@ -841,7 +841,7 @@ void GThreadlist::GenTree(char* buf, int idx, ulong maxlev) { void GThreadlist::print_line(uint idx, uint pos, bool isbar) { char buf[256]; - ulong maxlev = (window.width()+h_offset+1)/2; + ulong maxlev = (100*window.width()+h_offset+1)/2; #if defined(_MSC_VER) || defined(__MINGW32__) char *buf2 = (char*)alloca(maxlev*2+2); #else