Skip to content
Snippets Groups Projects
Commit 1da8254d authored by Pospelov, Gennady's avatar Pospelov, Gennady
Browse files

No update of editor if there is no multilayer on the canvas

parent 55a3a78c
No related branches found
No related tags found
No related merge requests found
......@@ -115,11 +115,13 @@ void PySampleWidget::setInstrumentModel(InstrumentModel *instrumentModel)
void PySampleWidget::onModifiedRow(const QModelIndex &, int, int)
{
if(m_sampleModel->getSampleMap().empty()) return;
scheduleUpdate();
}
void PySampleWidget::onDataChanged(const QModelIndex &, const QModelIndex &)
{
if(m_sampleModel->getSampleMap().empty()) return;
scheduleUpdate();
}
......
......@@ -253,7 +253,7 @@ int DesignerHelper::getPortFontSize()
int DesignerHelper::getPythonEditorFontSize()
{
#ifdef Q_OS_MAC
return 12;
return 13;
#else
return 10;
#endif
......
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