mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-14 09:02:06 +00:00
Adds (AMS) filament sync options: Only sync color / sync all (#12169)
This PR adds a new filament sync mode setting for device-based filament synchronization. Users can now choose between syncing both filament preset + color (current behavior) or syncing color only, so calibrated local filament profiles are preserved while still updating slot colors from the printer. It also includes small UI improvements for the new preference entry and sync status messaging. <img width="665" height="671" alt="image" src="https://github.com/user-attachments/assets/23980846-0113-48ab-84aa-adf5cdab8ab6" />
This commit is contained in:
@@ -1492,6 +1492,16 @@ void PreferencesDialog::create_items()
|
||||
SETTING_USE_ENCRYPTED_TOKEN_FILE);
|
||||
g_sizer->Add(item_token_storage);
|
||||
|
||||
//// ONLINE > Filament Sync Options
|
||||
g_sizer->Add(create_item_title(_L("Filament Sync Options")), 1, wxEXPAND);
|
||||
|
||||
auto item_filament_sync_mode = create_item_combobox(
|
||||
_L("Filament sync mode"),
|
||||
_L("Choose whether sync updates both filament preset and color, or only color."),
|
||||
"sync_ams_filament_mode",
|
||||
{_L("Filament & Color"), _L("Color only")});
|
||||
g_sizer->Add(item_filament_sync_mode);
|
||||
|
||||
//// ONLINE > Network plugin
|
||||
g_sizer->Add(create_item_title(_L("Network plugin")), 1, wxEXPAND);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user