rename calib dlg

Signed-off-by: SoftFever <softfeverever@gmail.com>
This commit is contained in:
SoftFever 2023-01-26 23:16:25 +08:00
parent 86f367b1f6
commit 431ceb61dc
4 changed files with 7 additions and 7 deletions

View file

@ -433,8 +433,8 @@ set(SLIC3R_GUI_SOURCES
Utils/AstroBox.hpp
Utils/Repetier.cpp
Utils/Repetier.hpp
GUI/SFCalibrationDlg.hpp
GUI/SFCalibrationDlg.cpp
GUI/calib_dlg.hpp
GUI/calib_dlg.cpp
)
if (WIN32)

View file

@ -29,7 +29,7 @@
#include "PrinterWebView.hpp"
#include "SFCalibrationDlg.hpp"
#include "calib_dlg.hpp"
#define ENABEL_PRINT_ALL 0

View file

@ -1,4 +1,4 @@
#include "SFCalibrationDlg.hpp"
#include "calib_dlg.hpp"
#include "GUI_App.hpp"
#include "MsgDialog.hpp"
#include "I18N.hpp"
@ -73,7 +73,7 @@ PA_Calibration_Dlg::PA_Calibration_Dlg(wxWindow* parent, wxWindowID id, Plater*
v_sizer->Add(settings_sizer);
v_sizer->Add(0, FromDIP(10), 0, wxEXPAND, 5);
m_btnStart = new Button(this, _L("Start"));
m_btnStart = new Button(this, _L("OK"));
StateColor btn_bg_green(std::pair<wxColour, int>(wxColour(0, 137, 123), StateColor::Pressed),
std::pair<wxColour, int>(wxColour(38, 166, 154), StateColor::Hovered),
std::pair<wxColour, int>(wxColour(0, 150, 136), StateColor::Normal));

View file

@ -1,5 +1,5 @@
#ifndef slic3r_SFCalibrationDlg_hpp_
#define slic3r_SFCalibrationDlg_hpp_
#ifndef slic3r_calib_dlg_hpp_
#define slic3r_calib_dlg_hpp_
#include "wxExtensions.hpp"
#include "GUI_Utils.hpp"