From 2266a42009bc153445f2af7a908e5ffefa96d687 Mon Sep 17 00:00:00 2001 From: PaddleStroke Date: Mon, 17 Nov 2025 16:50:36 +0100 Subject: [PATCH] Assembly: Make the 'ground first part' dialog closable --- src/Mod/Assembly/CommandInsertLink.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Assembly/CommandInsertLink.py b/src/Mod/Assembly/CommandInsertLink.py index 68cf11514a..ab43123901 100644 --- a/src/Mod/Assembly/CommandInsertLink.py +++ b/src/Mod/Assembly/CommandInsertLink.py @@ -455,7 +455,7 @@ class TaskAssemblyInsertLink(QtCore.QObject): msgBox.setIcon(QtWidgets.QMessageBox.Question) yesButton = msgBox.addButton("Yes", QtWidgets.QMessageBox.YesRole) - noButton = msgBox.addButton("No", QtWidgets.QMessageBox.NoRole) + noButton = msgBox.addButton("No", QtWidgets.QMessageBox.RejectRole) yesAlwaysButton = msgBox.addButton("Always", QtWidgets.QMessageBox.YesRole) noAlwaysButton = msgBox.addButton("Never", QtWidgets.QMessageBox.NoRole)