We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0babd5d commit 74c75c2Copy full SHA for 74c75c2
visualvm/heapviewer/src/com/sun/tools/visualvm/heapviewer/ui/HeapViewerComponent.java
@@ -57,6 +57,7 @@
57
import org.netbeans.lib.profiler.ui.swing.ProfilerPopupMenu;
58
import com.sun.tools.visualvm.heapviewer.HeapContext;
59
import com.sun.tools.visualvm.heapviewer.HeapViewer;
60
+import java.awt.Dimension;
61
import org.openide.util.Lookup;
62
import org.openide.util.NbBundle;
63
import org.openide.util.RequestProcessor;
@@ -89,6 +90,10 @@ public HeapViewerComponent(HeapViewer heapViewer) {
89
90
});
91
}
92
93
+ public Dimension getMinimumSize() {
94
+ return new Dimension(0, 0);
95
+ }
96
+
97
private void initImpl() {
98
contexts = HeapContext.allContexts(heapViewer);
99
0 commit comments