FIX:m_last_linear and m_last_angle add init value

jira: studio-8739
Change-Id: Ib1052856e7f9b4e427a58fb89f828dc0e6593247
(cherry picked from commit 8e2b233730ece85c04149aa4d1328519b3b79100)
This commit is contained in:
Mack
2024-11-13 20:05:14 +08:00
committed by Noisyfox
parent 9b439ff5a2
commit 0d9534bcf1
2 changed files with 4 additions and 4 deletions

View File

@@ -37,8 +37,8 @@ private:
wxString m_linear_last;
wxString m_angle_last;
wxStaticText* mesh_face_number_text;
double m_last_linear;
double m_last_angle;
double m_last_linear = 0.003;
double m_last_angle = 0.5;
std::future<unsigned int> task;
bool validate_number_range(const wxString& value, double min, double max);
void update_mesh_number_text();