From 1110f3fe085a39715ad021fa4d2716eb5e682128 Mon Sep 17 00:00:00 2001 From: cvetan Date: Thu, 8 Oct 2009 13:46:45 +0000 Subject: [PATCH] Bug #55488 (Technical fix): Resizing of the event info tab so that one can see all the lines. --- EVE/macros/alieve_online.C | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/EVE/macros/alieve_online.C b/EVE/macros/alieve_online.C index 71764f13044..d2c5ef342b9 100644 --- a/EVE/macros/alieve_online.C +++ b/EVE/macros/alieve_online.C @@ -71,6 +71,16 @@ void alieve_online_init() AliEveEventManager::GetMaster()->SetAutoLoad(kTRUE); } + { + TGTab *tab = gEve->GetBrowser()->GetTab(2); + + TGHorizontalFrame *hf = (TGHorizontalFrame*) tab->GetParent(); + TGVerticalFrame *vf = (TGVerticalFrame*) hf ->GetParent(); + + hf->Resize(hf->GetWidth(), hf->GetHeight() + 80); + vf->Layout(); + } + gEve->Redraw3D(kTRUE); } -- 2.43.0