within part stack, i have part views. , and each view has minimize/maximize buttons,
Is there is any way i can hide minimize/maximize buttons for some particular view part ?
within part stack, i have part views. , and each view has minimize/maximize buttons,
Is there is any way i can hide minimize/maximize buttons for some particular view part ?
This is a bug in e4: https://bugs.eclipse.org/bugs/show_bug.cgi?id=394231
There are two different ways to work around this:
Use this CSS-snippet:
.MPartStack { swt-maximize-visible: false; swt-minimize-visible: false; }
But there is another bug if you apply rule as below:
.MPartStack {
swt-maximize-visible: true;
swt-minimize-visible: false;
}
MinMaxAddon#setCTFButtons(..)
does not respect what css rule said, which always reveal the "Minimize" button for maximized part stack.