Skip to content
Snippets Groups Projects
Commit 563fc744 authored by GIRARDOT Raphael's avatar GIRARDOT Raphael Committed by MADELA Patrick
Browse files

added the possibility to change docking area background

parent f5f69f18
No related branches found
No related tags found
No related merge requests found
......@@ -66,6 +66,14 @@ public class InfoNodeDockingManager extends ADockingManager {
return result;
}
@Override
public void setDockingAreaBeackground(JComponent dockingArea, Color areaBackground) {
if (dockingArea instanceof RootWindow) {
RootWindow rootWindow = (RootWindow) dockingArea;
rootWindow.getRootWindowProperties().getWindowAreaProperties().setBackgroundColor(areaBackground);
}
}
@Override
public void loadPerspective(IPerspective perspective) throws DockingException {
DockingException dockingException = null;
......
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