use of jadx.gui.ui.panel.JDebuggerPanel in project jadx by skylot.
the class MainWindow method initDebuggerPanel.
private void initDebuggerPanel() {
if (debuggerPanel == null) {
debuggerPanel = new JDebuggerPanel(this);
debuggerPanel.loadSettings();
verticalSplitter.setBottomComponent(debuggerPanel);
int loc = settings.getMainWindowVerticalSplitterLoc();
if (loc == 0) {
loc = 300;
}
verticalSplitter.setDividerLocation(loc);
}
}
Aggregations