mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
[xdebugger] drop unnecessary borders
GitOrigin-RevId: 7ac879f58c6dd769c0980e191bed63814abab6bd
This commit is contained in:
committed by
intellij-monorepo-bot
parent
ade3174dd6
commit
19610cea2f
@@ -165,7 +165,7 @@ public final class XFramesView extends XDebugView {
|
||||
}
|
||||
});
|
||||
|
||||
myScrollPane = ScrollPaneFactory.createScrollPane(myFramesList);
|
||||
myScrollPane = ScrollPaneFactory.createScrollPane(myFramesList, true);
|
||||
Component centerComponent = DebuggerUIUtil.wrapWithAntiFlickeringPanel(myScrollPane);
|
||||
myMainPanel.add(centerComponent, BorderLayout.CENTER);
|
||||
|
||||
|
||||
+1
-1
@@ -34,7 +34,7 @@ public final class XDebuggerTreePanel implements DnDSource {
|
||||
final @NotNull @NonNls String popupActionGroupId, @Nullable XValueMarkers<?, ?> markers) {
|
||||
myTree = new XDebuggerTree(project, editorsProvider, sourcePosition, popupActionGroupId, markers);
|
||||
myMainPanel = new JPanel(new BorderLayout());
|
||||
JScrollPane scrollPane = ScrollPaneFactory.createScrollPane(myTree);
|
||||
JScrollPane scrollPane = ScrollPaneFactory.createScrollPane(myTree, true);
|
||||
myContentComponent = DebuggerUIUtil.wrapWithAntiFlickeringPanel(scrollPane);
|
||||
myMainPanel.add(myContentComponent, BorderLayout.CENTER);
|
||||
Disposer.register(parentDisposable, myTree);
|
||||
|
||||
Reference in New Issue
Block a user