You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: auto-save, 0.1/0.01mm arrow steps, dark mode contrast fix
- Preferences > General Settings: "Auto-save project every 5 minutes"
checkbox (config key autosave_enabled); a wxTimer in MainFrame fires
every 5 min and calls save_project() silently when the project has a
filename, is dirty, and the option is enabled (closes#10334)
- Alt+Arrow moves selected objects by 0.1 mm; Alt+Shift+Arrow by
0.01 mm; existing Shift+Arrow (1 mm) and plain Arrow (10 mm) are
unchanged; added to the keyboard shortcuts dialog (closes#10194)
- LayerRangeEditor now explicitly sets background/foreground to the
app's dark-mode palette colours after UpdateDarkUI(), fixing the
unreadable contrast in the Height Range Modifier field on Linux dark
mode (closes#10685)
auto item_auto_transfer_when_switch_preset = create_item_checkbox(_L("Automatically transfer modified value when switching process and filament presets"), page,_L("After closing, a popup will appear to ask each time"), 50, "auto_transfer_when_switch_preset");
1322
+
auto item_autosave = create_item_checkbox(_L("Auto-save project every 5 minutes"), page,
1323
+
_L("Automatically save the open project file every 5 minutes. Only saves if the project has a filename and unsaved changes."), 50,
1324
+
"autosave_enabled");
1325
+
1322
1326
auto item_bed_type_follow_preset = create_item_checkbox(_L("Auto plate type"), page,
1323
1327
_L("Studio will remember build plate selected last time for certain printer model."), 50,
0 commit comments