Search in sources :

Example 1 with JDebuggerPanel

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);
    }
}
Also used : JDebuggerPanel(jadx.gui.ui.panel.JDebuggerPanel)

Aggregations

JDebuggerPanel (jadx.gui.ui.panel.JDebuggerPanel)1