1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-07-15 08:44:26 +00:00

Fixed scaling of the controls and InfoDialogs (Sys and About)

This commit is contained in:
YuSanka
2019-02-06 09:49:32 +01:00
parent 7cc3a95f53
commit 46f32d091a
13 changed files with 45 additions and 45 deletions
+1 -1
View File
@@ -593,7 +593,7 @@ Field* ConfigOptionsGroup::get_fieldc(const t_config_option_key& opt_key, int op
void ogStaticText::SetText(const wxString& value, bool wrap/* = true*/)
{
SetLabel(value);
if (wrap) Wrap(35 * wxGetApp().em_unit()/*400*/);
if (wrap) Wrap(40 * wxGetApp().em_unit());
GetParent()->Layout();
}