Commit a489bdb 1 parent 10e7293 commit a489bdb Copy full SHA for a489bdb
File tree 1 file changed +10
-4
lines changed
1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -149,6 +149,12 @@ namespace clap {
149
149
} catch (...) {
150
150
return false ;
151
151
}
152
+
153
+ #ifndef CLAP_PLUGINS_HEADLESS
154
+ if (_guiHandle)
155
+ guiPopulateProperties ();
156
+ #endif
157
+
152
158
return true ;
153
159
}
154
160
@@ -967,8 +973,8 @@ namespace clap {
967
973
968
974
void CorePlugin::undoSetUndoName (const char *name) noexcept {
969
975
if (name && *name) {
970
- if (!_canUndo)
971
- hostMisbehaving (" set undo name while it isn't possible to undo" );
976
+ // if (!_canUndo)
977
+ // hostMisbehaving("set undo name while it isn't possible to undo");
972
978
_undoName = name;
973
979
} else
974
980
_undoName.reset ();
@@ -981,8 +987,8 @@ namespace clap {
981
987
982
988
void CorePlugin::undoSetRedoName (const char *name) noexcept {
983
989
if (name && *name) {
984
- if (!_canRedo)
985
- hostMisbehaving (" set undo name while it isn't possible to redo" );
990
+ // if (!_canRedo)
991
+ // hostMisbehaving("set undo name while it isn't possible to redo");
986
992
_redoName = name;
987
993
} else
988
994
_redoName.reset ();
You can’t perform that action at this time.
0 commit comments