Editor names not showing in GUI
-
Hi!
Our Samson element has several editors. The icons and descriptions are showing perfectly in the GUI, but the editor names are missing:
The getName() methods on the editor's GUI sources are set, as well as other methods in the editor sources like getToolTip() and getText(). Am I missing somethig?
Best regards,
Elisa
-
Yes, it is a bug, which will be fixed in the next SDK version.
You need to implement
getDescription()
function in you editor.
Add the following line in the header file of your editor:virtual QString getDescription() const; ///< Returns the menu item text
And in the source file:
QString SEAwesomeEditor::getDescription() const { return QObject::tr("Awesome editor"); }
-
Thanks!! Solved!