From 4a3c3155cfe7e2cc975aa636ea5d6b59513b3c51 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 6 Jun 2023 15:14:14 +0200 Subject: [PATCH] Update rest preference label Rest Preference "Force Only Buildplate" can be "On Buildplate when possible", Because Support can be created everywhere but as much as possible starting from the buildplate and in some case we can have some support starting from the model.. "On Model If Necessary" can be "On Model If required", Because support can be created everywhere and if required you can have support starting on the model. And Sometimes Required means they start on the model because you have more direct or simple support if you start on the model. As suggested by @5axes --- resources/definitions/fdmprinter.def.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 8ff2a08f8c..b04dc1ab2f 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -4765,8 +4765,8 @@ "type": "enum", "options": { - "buildplate": "Force Only Buildplate", - "graceful": "On Model If Necessary" + "buildplate": "On buildplate when possible", + "graceful": "On model if required" }, "default_value": "buildplate", "value": "'buildplate' if support_type == 'buildplate' else 'graceful'", @@ -8119,4 +8119,4 @@ } } } -} \ No newline at end of file +}