Skip to content

Commit

Permalink
fix: increase minimum height of "runtime analysis" panel to show all …
Browse files Browse the repository at this point in the history
…the message when the user is unauthenticated
  • Loading branch information
jansorg committed Dec 13, 2022
1 parent f813c20 commit 9ae0b90
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ private void rebuild(boolean force) {

// the "Runtime Analysis" panel should take the available space
var runtimeAnalysisPanel = new RuntimeAnalysisPanel(project, parent);
runtimeAnalysisPanel.setMinimumSize(new JBDimension(0, 100));
runtimeAnalysisPanel.setMinimumSize(new JBDimension(0, 150));
var mainPanel = new CollapsiblePanel(AppMapBundle.get("toolwindow.appmap.runtimeAnalysis"), false, runtimeAnalysisPanel);

var main = new JPanel(new BorderLayout());
Expand Down

0 comments on commit 9ae0b90

Please sign in to comment.