Limits the number of rows of the field with the available video devices on Windows.

fix-message-formatting
hristoterezov 12 years ago
parent 27fb77b549
commit bac4d94267

@ -503,13 +503,13 @@ public DeviceComboBoxField(final int type, Container devicePanel)
{
deviceList = new JList();
deviceList.setModel(model);
JScrollPane listScroller = new JScrollPane(deviceComboBox);
JScrollPane listScroller = new JScrollPane(deviceList);
listScroller.setPreferredSize(new Dimension(200, 38));
deviceList.setSelectionMode(ListSelectionModel.SINGLE_INTERVAL_SELECTION);
deviceList.setLayoutOrientation(JList.VERTICAL);
deviceList.setVisibleRowCount(-1);
deviceList.setSelectedValue(model.getSelectedItem(), true);
devicePanel.add(deviceList);
devicePanel.add(listScroller);
deviceComponent = deviceList;
}
}

Loading…
Cancel
Save