Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cura
diff options
context:
space:
mode:
authorAleksei S <a.sasin@ultimaker.com>2018-05-29 19:15:16 +0300
committerAleksei S <a.sasin@ultimaker.com>2018-05-29 19:15:16 +0300
commitb46a08f566b573dee767d1216fc9c340e350e02b (patch)
tree3e75a7fdc0a95e200cbb8dc4ed8d269f62be4fd5 /cura
parentfed0a015eefd87c4ca0cf63c78cffe249dcc7b91 (diff)
Add Reft and Right side aligned action buttons to the message box
CURA-4952
Diffstat (limited to 'cura')
-rwxr-xr-xcura/CuraApplication.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py
index ed4336a9a0..34b6b5cde1 100755
--- a/cura/CuraApplication.py
+++ b/cura/CuraApplication.py
@@ -452,7 +452,7 @@ class CuraApplication(QtApplication):
## A reusable dialogbox
#
- showMessageBox = pyqtSignal(str, str, str, str, str, int, int, arguments = ["title", "footer", "text", "informativeText", "detailedText", "buttons", "icon"])
+ showMessageBox = pyqtSignal(str, str, str, str, int, int, arguments = ["title", "text", "informativeText", "detailedText", "buttons", "icon"])
def messageBox(self, title, text, informativeText = "", detailedText = "", buttons = QMessageBox.Ok, icon = QMessageBox.NoIcon, callback = None, callback_arguments = []):
self._message_box_callback = callback