X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=Tools%2FSource%2FMigrationTools%2Forg%2Ftianocore%2Fmigration%2FFirstPanel.java;h=83cf9b60d2d56b9dd82645b709e781d01ffe89b4;hp=438625380ecf6908700e158c1a421e6991e80f87;hb=ac62aa9ad84cd1883967ca9026ac95378507cf95;hpb=f78797d5b7d1501c108c8e2c3c8850e06129a209 diff --git a/Tools/Source/MigrationTools/org/tianocore/migration/FirstPanel.java b/Tools/Source/MigrationTools/org/tianocore/migration/FirstPanel.java index 438625380e..83cf9b60d2 100644 --- a/Tools/Source/MigrationTools/org/tianocore/migration/FirstPanel.java +++ b/Tools/Source/MigrationTools/org/tianocore/migration/FirstPanel.java @@ -73,6 +73,7 @@ public final class FirstPanel extends JPanel implements ActionListener, ItemList defaultpathbox = new JCheckBox("Use Default Output Path", true); defaultpathbox.addItemListener(this); + ModuleInfo.defaultoutput = true; JPanel modulePanel = new JPanel(); modulePanel.add(moduleButton); @@ -218,16 +219,14 @@ public final class FirstPanel extends JPanel implements ActionListener, ItemList } else if (e.getSource() == criticbox) { if (e.getStateChange() == ItemEvent.DESELECTED) { ModuleInfo.doCritic = false; - System.out.println("criticbox DESELECTED"); } else if (e.getStateChange() == ItemEvent.SELECTED) { ModuleInfo.doCritic = true; - System.out.println("criticbox SELECTED"); } } else if (e.getSource() == defaultpathbox) { if (e.getStateChange() == ItemEvent.DESELECTED) { - System.out.println("defaultpathbox DESELECTED"); + ModuleInfo.defaultoutput = false; } else if (e.getStateChange() == ItemEvent.SELECTED) { - System.out.println("defaultpathbox SELECTED"); + ModuleInfo.defaultoutput = true; } } }