调整设置速度模式

This commit is contained in:
13038267101 2022-12-28 21:22:23 +08:00
parent a462703a9d
commit 72d18ee6a0
1 changed files with 6 additions and 6 deletions

View File

@ -430,15 +430,15 @@ public:
const wchar_t G400[6] = { 40,50,60,70,80}; const wchar_t G400[6] = { 40,50,60,70,80};
wchar_t info[128] = L"请设置速度模式,值越大速度越快."; wchar_t info[128] = L"请设置速度模式,值越大速度越快.";
; ;
if (fw_ == 1 ) if (fw_ == 1)
wcscat(info, G139); range = G139;
else if(fw_ == 2) else if(fw_ == 2)
wcscat(info, G239); range = G239;
else if (fw_ == 3) else if (fw_ == 3)
wcscat(info, G300); range = G300;
else if (fw_ == 4) else if (fw_ == 4)
wcscat(info, G400); range = G400;
range = info; //range = info;
parameter* ptr = helper_->get_user_input(ui_helper::DATA_FROM_USER, ui_helper::VAL_TYPE_RANGE, parameter* ptr = helper_->get_user_input(ui_helper::DATA_FROM_USER, ui_helper::VAL_TYPE_RANGE,
NAME, range); NAME, range);