Skip to content
Snippets Groups Projects
Commit d39750e5 authored by Pierre Lamot's avatar Pierre Lamot Committed by Jean-Baptiste Kempf
Browse files

qt: PlayerControlBarModel load model when context is available

parent ce0fc599
No related branches found
No related tags found
No related merge requests found
......@@ -180,12 +180,10 @@ void PlayerControlBarModel::setMainCtx(QmlMainContext* ctx)
if(ctx == nullptr && m_mainCtx == ctx)
return;
m_mainCtx = ctx;
p_intf = m_mainCtx->getIntf();
assert(p_intf != nullptr);
reloadModel();
emit ctxChanged(ctx);
intf_thread_t *temp_intf = m_mainCtx->getIntf();
if(temp_intf != nullptr && temp_intf != p_intf)
p_intf = temp_intf;
else
return;
}
void PlayerControlBarModel::setConfigName(QString name)
......@@ -197,6 +195,8 @@ void PlayerControlBarModel::setConfigName(QString name)
defaultConfig = MAIN_TB1_DEFAULT;
else
defaultConfig = MINI_TB_DEFAULT;
if (m_mainCtx)
reloadModel();
emit configNameChanged(name);
}
......
......@@ -110,7 +110,7 @@ signals:
void configNameChanged(QString);
protected:
intf_thread_t *p_intf;
intf_thread_t *p_intf = nullptr;
private:
QVector<IconToolButton> mButtons;
......@@ -123,7 +123,7 @@ private:
void addProfiles();
void loadConfig();
QmlMainContext* m_mainCtx;
QmlMainContext* m_mainCtx = nullptr;
public slots:
Q_INVOKABLE void insert(int index, QVariantMap bdata);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment