Skip to content

Commit

Permalink
updated the report generation message box text
Browse files Browse the repository at this point in the history
  • Loading branch information
GuyTeichman committed May 6, 2023
1 parent 4688d69 commit f145ba2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rnalysis/gui/gui_windows.py
Original file line number Diff line number Diff line change
Expand Up @@ -1113,7 +1113,8 @@ class ReportGenerationMessageBox(QtWidgets.QMessageBox):
def __init__(self, parent=None):
super().__init__(parent=parent)
self.setWindowTitle("Report Generation")
self.setText("Do you want to enable report generation for this session?")
self.setText("Do you want to enable report generation for this session?\n"
"(this will slow down the program slightly)")

self.yes_button = self.addButton(QtWidgets.QPushButton("Yes"), QtWidgets.QMessageBox.YesRole)
self.no_button = self.addButton(QtWidgets.QPushButton("No"), QtWidgets.QMessageBox.NoRole)
Expand Down

0 comments on commit f145ba2

Please sign in to comment.