FIX: calibrate button layout [STUDIO-3595]
Change-Id: I98f6d6a1d9607b9b1e3db343da854d09ce3c5336
This commit is contained in:
parent
9b797fa985
commit
0366e52d86
|
@ -64,11 +64,13 @@ void CaliPresetCaliStagePanel::create_panel(wxWindow* parent)
|
||||||
input_panel->Show(false);
|
input_panel->Show(false);
|
||||||
m_stage = CALI_MANUAL_STAGE_1;
|
m_stage = CALI_MANUAL_STAGE_1;
|
||||||
GetParent()->Layout();
|
GetParent()->Layout();
|
||||||
|
GetParent()->Fit();
|
||||||
});
|
});
|
||||||
m_fine_radioBox->Bind(wxEVT_RADIOBUTTON, [this, input_panel](auto& e) {
|
m_fine_radioBox->Bind(wxEVT_RADIOBUTTON, [this, input_panel](auto& e) {
|
||||||
input_panel->Show();
|
input_panel->Show();
|
||||||
m_stage = CALI_MANUAL_STAGE_2;
|
m_stage = CALI_MANUAL_STAGE_2;
|
||||||
GetParent()->Layout();
|
GetParent()->Layout();
|
||||||
|
GetParent()->Fit();
|
||||||
});
|
});
|
||||||
flow_ratio_input->GetTextCtrl()->Bind(wxEVT_TEXT_ENTER, [this](auto& e) {
|
flow_ratio_input->GetTextCtrl()->Bind(wxEVT_TEXT_ENTER, [this](auto& e) {
|
||||||
float flow_ratio = 0.0f;
|
float flow_ratio = 0.0f;
|
||||||
|
|
Loading…
Reference in New Issue