adding text to the SlideObject

This commit is contained in:
Chris Cochrun 2022-07-13 14:28:51 -05:00
parent 51f8488089
commit 25b07dbab9
5 changed files with 29 additions and 17 deletions

View file

@ -63,6 +63,7 @@ void Slide::setText(QString text)
if (m_text == text)
return;
qDebug() << "####changing text to: " << text;
m_text = text;
emit textChanged(m_text);
}