mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-11 00:37:51 -06:00
System Dialog - use bigger image, as the smaller one is not contained
in our Windows binary distro. Fixed typo in "Add support bloker"
This commit is contained in:
parent
d13dca906b
commit
b6861a5791
2 changed files with 4 additions and 5 deletions
|
@ -48,7 +48,7 @@ SysInfoDialog::SysInfoDialog()
|
|||
main_sizer->Add(hsizer, 0, wxEXPAND | wxALL, 10);
|
||||
|
||||
// logo
|
||||
wxBitmap logo_bmp = wxBitmap(from_u8(Slic3r::var("Slic3r_128px.png")), wxBITMAP_TYPE_PNG);
|
||||
wxBitmap logo_bmp = wxBitmap(from_u8(Slic3r::var("Slic3r_192px.png")), wxBITMAP_TYPE_PNG);
|
||||
auto *logo = new wxStaticBitmap(this, wxID_ANY, std::move(logo_bmp));
|
||||
hsizer->Add(logo, 0, wxEXPAND | wxTOP | wxBOTTOM, 15);
|
||||
|
||||
|
@ -61,9 +61,9 @@ SysInfoDialog::SysInfoDialog()
|
|||
wxFont title_font = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT);
|
||||
title_font.SetWeight(wxFONTWEIGHT_BOLD);
|
||||
title_font.SetFamily(wxFONTFAMILY_ROMAN);
|
||||
title_font.SetPointSize(14);
|
||||
title_font.SetPointSize(22);
|
||||
title->SetFont(title_font);
|
||||
vsizer->Add(title, 0, wxALIGN_LEFT | wxTOP, 10);
|
||||
vsizer->Add(title, 0, wxALIGN_LEFT | wxTOP, 50);
|
||||
}
|
||||
|
||||
// main_info_text
|
||||
|
@ -92,7 +92,6 @@ SysInfoDialog::SysInfoDialog()
|
|||
vsizer->Add(html, 1, wxEXPAND);
|
||||
}
|
||||
|
||||
|
||||
// opengl_info
|
||||
wxHtmlWindow* opengl_info_html = new wxHtmlWindow(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxHW_SCROLLBAR_AUTO);
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue