diff --git a/qml/articles/2.Basic_extension.md b/qml/articles/2.Basic_extension.md index 19731be..f58dc7f 100644 --- a/qml/articles/2.Basic_extension.md +++ b/qml/articles/2.Basic_extension.md @@ -110,9 +110,11 @@ The full code can be found at Called when extension is loaded. * **state**: possible values - * **Falkon.PluginInterface.InitState.StartupInitState** + * > The init state ENUM is for Falkon QML API version `1.0` broken and + raw values has to be used + * `0` **Falkon.PluginInterface.StartupInitState** Normal init state during Falkon start, nothing to do for us. - * **Falkon.PluginInterface.LateInitState** + * `1` **Falkon.PluginInterface.LateInitState** The extension was loaded long after Falkon started. In this case we need to manually call functions which would normally be called during the start.