Skip to content

Commit

Permalink
Correct enum-related issue
Browse files Browse the repository at this point in the history
  • Loading branch information
vasole committed May 7, 2024
1 parent 7647058 commit 1332831
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions PyMca5/PyMcaGui/pymca/XiaCorrectWizard.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#/*##########################################################################
# Copyright (C) 2004-2023 European Synchrotron Radiation Facility
# Copyright (C) 2004-2024 European Synchrotron Radiation Facility
#
# This file is part of the PyMca X-ray Fluorescence Toolkit developed at
# the ESRF.
Expand Down Expand Up @@ -477,13 +477,13 @@ def __init__(self, parent=None, name=None, modal=0, fl=0):
self.addPage(self.output)
#, "Output Directory")

finish= self.button(self.FinishButton)
finish= self.button(qt.QWizard.FinishButton)
font= finish.font()
font.setBold(1)
finish.setFont(font)
finish.setText("Start")

nnext = self.button(self.NextButton)
nnext = self.button(qt.QWizard.NextButton)
nnext.clicked.connect(self.next)

#self.setFinishEnabled(self.output, 1)
Expand Down

0 comments on commit 1332831

Please sign in to comment.