You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@jmeter.apache.org by bu...@apache.org on 2016/01/15 12:12:22 UTC

[Bug 58870] TableEditor minimal size is too short

https://bz.apache.org/bugzilla/show_bug.cgi?id=58870

--- Comment #1 from Vincent HERILIER <vh...@gmail.com> ---
Setting the minimum size in the makePanel method insures not reducing too much
the widget and allows to see if there's at least a row inside

By my side I'm using "scroller.setMinimumSize(new Dimension(100, 70));" to set
it

...
private JComponent makePanel()
    {
        JPanel p = new JPanel(new BorderLayout());
        JScrollPane scroller = new JScrollPane(table);
        scroller.setMinimumSize(new Dimension(100, 70));
        scroller.setPreferredSize(scroller.getMinimumSize());
        p.add(scroller,BorderLayout.CENTER);
        JPanel south = new JPanel();
...

-- 
You are receiving this mail because:
You are the assignee for the bug.