Bug affichage modal

This commit is contained in:
Justine Yannis 2022-11-26 11:30:16 +01:00
parent 8557cf27cd
commit a945a9dac0

View File

@ -17,7 +17,7 @@ public class ObservateurAccueil implements ActionListener{
@Override
public void actionPerformed(ActionEvent evenement){
//On affiche la confirmation en bloquant la fentre
int confirmation = JOptionPane.showConfirmDialog(Menu.getFrame(), "Etes-vous sûr de vouloir retourner au menu ?", "Menu", JOptionPane.YES_NO_OPTION);
int confirmation = JOptionPane.showConfirmDialog(null, "Etes-vous sûr de vouloir retourner au menu ?", "Menu", JOptionPane.YES_NO_OPTION);
//si c'est ok on retourne au Menu
if(confirmation == JOptionPane.YES_OPTION){
Menu.show(Menu.MENU);