mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-25 15:44:12 -06:00
Preferences: Beautification
Text settings: Wrap a label_text to the max 80 characters MSW specific: Update alignment of the "Dark mode" tab
This commit is contained in:
parent
9029f63d0c
commit
609bd4046c
2 changed files with 12 additions and 2 deletions
|
@ -519,7 +519,11 @@ void PreferencesDialog::build(size_t selected_tab)
|
|||
void PreferencesDialog::update_ctrls_alignment()
|
||||
{
|
||||
int max_ctrl_width{ 0 };
|
||||
std::initializer_list<ConfigOptionsGroup*> og_list = { m_optgroup_general.get(), m_optgroup_camera.get(), m_optgroup_gui.get() };
|
||||
std::initializer_list<ConfigOptionsGroup*> og_list = { m_optgroup_general.get(), m_optgroup_camera.get(), m_optgroup_gui.get()
|
||||
#ifdef _WIN32
|
||||
, m_optgroup_dark_mode.get()
|
||||
#endif // _WIN32
|
||||
};
|
||||
for (auto og : og_list) {
|
||||
if (int max = og->custom_ctrl->get_max_win_width();
|
||||
max_ctrl_width < max)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue