mirror of
https://github.com/acidanthera/audk.git
synced 2025-04-08 17:05:09 +02:00
remove unnecessary check between pcd table line selections to fix pcd default value refresh problem.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2147 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
f3825a180a
commit
5d07408433
@ -1699,7 +1699,7 @@ private JComboBox getJComboBoxItemType() {
|
||||
public void itemStateChanged(java.awt.event.ItemEvent e) {
|
||||
|
||||
int row = jTablePcd.getSelectedRow();
|
||||
if (row < 0 || model.getValueAt(row, 2).equals(jComboBoxItemType.getSelectedItem())) {
|
||||
if (row < 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user