From 518cbfa192623a4a6a622a12dc4176a3edde2f40 Mon Sep 17 00:00:00 2001 From: Vojtech Bubnik Date: Mon, 30 Nov 2020 08:49:09 +0100 Subject: [PATCH] Renamed API key / user/password auth choices for SL1 --- src/libslic3r/PrintConfig.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 97b62bf56f..91917c80b3 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -159,8 +159,8 @@ void PrintConfigDef::init_common_params() def->enum_keys_map = &ConfigOptionEnum::get_enum_values(); def->enum_values.push_back("key"); def->enum_values.push_back("user"); - def->enum_labels.push_back("KeyPassword"); - def->enum_labels.push_back("UserPassword"); + def->enum_labels.push_back("API key"); + def->enum_labels.push_back("HTTP digest"); def->mode = comAdvanced; def->set_default_value(new ConfigOptionEnum(atKeyPassword)); }