[xdebugger] drop unnecessary borders

GitOrigin-RevId: 7ac879f58c6dd769c0980e191bed63814abab6bd
This commit is contained in:
Ivan Semenov
2025-07-07 13:31:00 +00:00
committed by intellij-monorepo-bot
parent ade3174dd6
commit 19610cea2f
2 changed files with 2 additions and 2 deletions
@@ -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);
@@ -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);