Package net.ftb.gui.dialogs

Examples of net.ftb.gui.dialogs.EditModPackDialog


            @Override
            public void actionPerformed (ActionEvent e) {
                if (packPanels.size() > 0) {
                    //TODO: fix by rename?
                    if (getSelectedThirdPartyModIndex() >= 0) {
                        EditModPackDialog empd = new EditModPackDialog(LaunchFrame.getInstance(), ModPack.getSelectedPack(false));
                        empd.setVisible(true);
                    }
                }
            }
        });
        add(editModPack);
View Full Code Here


            @Override
            public void actionPerformed (ActionEvent e) {
                if (packPanels.size() > 0) {
                    //TODO: fix by rename
                    if (getSelectedFTBModIndex() >= 0) {
                        EditModPackDialog empd = new EditModPackDialog(LaunchFrame.getInstance(), ModPack.getSelectedPack(true));
                        empd.setVisible(true);
                    }
                }
            }
        });
        add(editModPack);
View Full Code Here

TOP

Related Classes of net.ftb.gui.dialogs.EditModPackDialog

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.