Skip to content
Snippets Groups Projects
Commit ab4cfe3b authored by Rene Brun's avatar Rene Brun
Browse files

From Bertrand:

- Disable the 'hide' function of TGDockableFrames


git-svn-id: http://root.cern.ch/svn/root/trunk@23724 27541ba8-7e3a-0410-8455-c3a389f83636
parent a6c57d70
No related branches found
No related tags found
No related merge requests found
......@@ -737,6 +737,7 @@ SplitGLView::SplitGLView(const TGWindow *p, UInt_t w, UInt_t h, Bool_t embed) :
dfrm = new TGDockableFrame(frm);
dfrm->SetFixedSize(kFALSE);
dfrm->EnableHide(kFALSE);
hfrm = new TGHorizontalFrame(dfrm);
button= new TGPictureButton(hfrm, gClient->GetPicture("swap.png"));
button->SetToolTipText("Swap to big view");
......@@ -785,6 +786,7 @@ SplitGLView::SplitGLView(const TGWindow *p, UInt_t w, UInt_t h, Bool_t embed) :
// create (embed) a GL viewer inside
dfrm = new TGDockableFrame(frm);
dfrm->SetFixedSize(kFALSE);
dfrm->EnableHide(kFALSE);
hfrm = new TGHorizontalFrame(dfrm);
button= new TGPictureButton(hfrm, gClient->GetPicture("swap.png"));
button->SetToolTipText("Swap to big view");
......@@ -827,6 +829,7 @@ SplitGLView::SplitGLView(const TGWindow *p, UInt_t w, UInt_t h, Bool_t embed) :
dfrm = new TGDockableFrame(frm);
dfrm->SetFixedSize(kFALSE);
dfrm->EnableHide(kFALSE);
hfrm = new TGHorizontalFrame(dfrm);
button= new TGPictureButton(hfrm, gClient->GetPicture("swap.png"));
button->SetToolTipText("Swap to big view");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment