FIX: liveview_remote protocol missing agora
Change-Id: If3a46c67e139e3abc47dc672e32246eb6b59f9fd Jira: STUDIO-10041
This commit is contained in:
parent
e24a0bc603
commit
71d9d8969e
|
@ -1663,7 +1663,7 @@ bool MachineObject::is_recording()
|
||||||
int MachineObject::get_liveview_remote()
|
int MachineObject::get_liveview_remote()
|
||||||
{
|
{
|
||||||
if (is_support_agora) {
|
if (is_support_agora) {
|
||||||
liveview_remote == LVR_None ? LVR_Agora : liveview_remote == LVR_Tutk ? LVR_TutkAgora : liveview_remote;
|
return liveview_remote == LVR_None ? LVR_Agora : liveview_remote == LVR_Tutk ? LVR_TutkAgora : liveview_remote;
|
||||||
}
|
}
|
||||||
return liveview_remote;
|
return liveview_remote;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1687,7 +1687,7 @@ Sidebar::Sidebar(Plater *parent)
|
||||||
wxBoxSizer* bSizer39;
|
wxBoxSizer* bSizer39;
|
||||||
bSizer39 = new wxBoxSizer( wxHORIZONTAL );
|
bSizer39 = new wxBoxSizer( wxHORIZONTAL );
|
||||||
p->m_filament_icon = new ScalableButton(p->m_panel_filament_title, wxID_ANY, "filament");
|
p->m_filament_icon = new ScalableButton(p->m_panel_filament_title, wxID_ANY, "filament");
|
||||||
p->m_staticText_filament_settings = new Label(p->m_panel_filament_title, _L("Project Filaments"));
|
p->m_staticText_filament_settings = new Label(p->m_panel_filament_title, _L("Project Filaments"), LB_PROPAGATE_MOUSE_EVENT);
|
||||||
bSizer39->Add(p->m_filament_icon, 0, wxALIGN_CENTER | wxLEFT | wxRIGHT, FromDIP(10));
|
bSizer39->Add(p->m_filament_icon, 0, wxALIGN_CENTER | wxLEFT | wxRIGHT, FromDIP(10));
|
||||||
bSizer39->Add( p->m_staticText_filament_settings, 0, wxALIGN_CENTER );
|
bSizer39->Add( p->m_staticText_filament_settings, 0, wxALIGN_CENTER );
|
||||||
bSizer39->Add(FromDIP(10), 0, 0, 0, 0);
|
bSizer39->Add(FromDIP(10), 0, 0, 0, 0);
|
||||||
|
|
Loading…
Reference in New Issue