mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-07 23:17:35 -06:00
FIX:adjust rounding of some buttons
Change-Id: I8d1ed2b3d352689ea99fe00f26e405cc63151073
This commit is contained in:
parent
802036fcd8
commit
618aebfb79
16 changed files with 37 additions and 34 deletions
|
@ -6968,7 +6968,7 @@ ProjectDropDialog::ProjectDropDialog(const std::string &filename)
|
|||
m_confirm->SetTextColor(wxColour(255, 255, 255));
|
||||
m_confirm->SetSize(PROJECT_DROP_DIALOG_BUTTON_SIZE);
|
||||
m_confirm->SetMinSize(PROJECT_DROP_DIALOG_BUTTON_SIZE);
|
||||
m_confirm->SetCornerRadius(12);
|
||||
m_confirm->SetCornerRadius(FromDIP(12));
|
||||
m_confirm->Bind(wxEVT_LEFT_DOWN, &ProjectDropDialog::on_select_ok, this);
|
||||
m_sizer_right->Add(m_confirm, 0, wxALL, 5);
|
||||
|
||||
|
@ -6976,7 +6976,7 @@ ProjectDropDialog::ProjectDropDialog(const std::string &filename)
|
|||
m_cancel->SetTextColor(wxColour(107, 107, 107));
|
||||
m_cancel->SetSize(PROJECT_DROP_DIALOG_BUTTON_SIZE);
|
||||
m_cancel->SetMinSize(PROJECT_DROP_DIALOG_BUTTON_SIZE);
|
||||
m_cancel->SetCornerRadius(12);
|
||||
m_cancel->SetCornerRadius(FromDIP(12));
|
||||
m_cancel->Bind(wxEVT_LEFT_DOWN, &ProjectDropDialog::on_select_cancel, this);
|
||||
m_sizer_right->Add(m_cancel, 0, wxALL, 5);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue