mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2026-02-17 01:49:41 -07:00
Color & Icon fixes / improvements (#9773)
* init * update * update * revert changes for stepmesh dialog * make highlight arrow more obvious * reset to zero icons * modernize return icon * better dark mode icon for project page * fix return arrow * revert changes for hyperlinks * update * Update SelectMachine.cpp * Update SendToPrinter.cpp * update * update plate icons * dragcanvas dark mode support * revert changes for calibration page * revert changes for bind dialog * Update BindDialog.cpp * fix green text on bbl calibration window * Update AmsMappingPopup.cpp * match measure axis color * fix * update * Update AmsMappingPopup.cpp * revert color change for hyperlink * Update NotificationManager.cpp * update * add icon for resonance avoidance * update * Fix wrong icon color after switching dark mode --------- Co-authored-by: Noisyfox <timemanager.rick@gmail.com>
This commit is contained in:
parent
3e186d2393
commit
0726819547
40 changed files with 102 additions and 139 deletions
|
|
@ -439,7 +439,7 @@ SendToPrinterDialog::SendToPrinterDialog(Plater *plater)
|
|||
m_rename_text->SetForegroundColour(*wxBLACK);
|
||||
m_rename_text->SetFont(::Label::Body_13);
|
||||
m_rename_text->SetMaxSize(wxSize(FromDIP(390), -1));
|
||||
m_rename_button = new Button(m_rename_normal_panel, "", "ams_editable", wxBORDER_NONE, FromDIP(10));
|
||||
m_rename_button = new Button(m_rename_normal_panel, "", "rename_edit", wxBORDER_NONE, FromDIP(13)); // ORCA Match edit icon and its size
|
||||
m_rename_button->SetBackgroundColor(*wxWHITE);
|
||||
m_rename_button->SetBackgroundColour(*wxWHITE);
|
||||
|
||||
|
|
@ -1349,9 +1349,9 @@ void SendToPrinterDialog::set_default()
|
|||
|
||||
char weight[64];
|
||||
if (wxGetApp().app_config->get("use_inches") == "1") {
|
||||
::sprintf(weight, " %.2f oz", aprint_stats.total_weight*0.035274);
|
||||
::sprintf(weight, "%.2f oz", aprint_stats.total_weight*0.035274); // ORCA remove spacing before text
|
||||
}else{
|
||||
::sprintf(weight, " %.2f g", aprint_stats.total_weight);
|
||||
::sprintf(weight, "%.2f g", aprint_stats.total_weight); // ORCA remove spacing before text
|
||||
}
|
||||
|
||||
m_stext_time->SetLabel(time);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue