From 52c99a803ec323bf51e10dba19a2108f92a06d50 Mon Sep 17 00:00:00 2001 From: Yann Lanthony Date: Thu, 9 Aug 2018 00:11:17 +0200 Subject: [PATCH] [ui] ComputeUnsaved: set a more straightforward text for Discard button avoid potentially ambiguous platform-dependent text --- meshroom/ui/qml/main.qml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/meshroom/ui/qml/main.qml b/meshroom/ui/qml/main.qml index e4cc56d5..d0b1ce84 100755 --- a/meshroom/ui/qml/main.qml +++ b/meshroom/ui/qml/main.qml @@ -151,6 +151,10 @@ ApplicationWindow { detailedText: "Default cache folder: " + _reconstruction.graph.cacheDir helperText: "Save project first?" standardButtons: Dialog.Discard | Dialog.Cancel | Dialog.Save + Component.onCompleted: { + // set up discard button text + standardButton(Dialog.Discard).text = "Continue without Saving" + } onDiscarded: { close(); _reconstruction.execute(null) } onAccepted: saveAsAction.trigger()