From d392774e666d0213372c8586aab8114c087fa992 Mon Sep 17 00:00:00 2001 From: Juraj Oravec Date: Wed, 30 Mar 2022 22:09:58 +0200 Subject: [PATCH] QML: Add more entried to the limitations Signed-off-by: Juraj Oravec --- qml/articles/1.Introduction.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/qml/articles/1.Introduction.md b/qml/articles/1.Introduction.md index b8cff8f..9a79907 100644 --- a/qml/articles/1.Introduction.md +++ b/qml/articles/1.Introduction.md @@ -21,15 +21,21 @@ It is good to have Qt documentation and Qt development tools like [Qt Designer]( ## Limitations -> **NOTE:** First I have to mention that I do not know much about QML development, only bits here and there. +> **NOTE:** First I have to mention that I do not know much about QML +development, only bits here and there. -* The instance of FalkonAction (toolbar button) is shared between all +* The instance of `FalkonAction` (toolbar button) is shared between all Falkon windows in the same instance. This makes it unsuitable for showing live status of website since it will be totaly broken the moment another window is opened and I do not want to see that happening to my -extentions. +extensions. +* The button created with `FalkonAction` always requires to have `popup` +property present or it will not work properly (e.g. icon will be +missing from the button, maybe more). * The Graphical User Interface created by QML extensions is not styled according to system color settings and looks awkward on my machine. +* The extennsion settings window cannot be closed from within QML code +(e.g. by pressing a "Cancel" button). ## Falkon module