You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Interestingly, this doesn't occur when opening the editor settings in the kanban view, there it just opens and closes fine as a popup instead of a separate window.
@zjeffer It's that way since when you're in the text mode the right pane is using QWidgets and when in Kanban mode the right pane is in QML. And since the editor settings is written in QML, in order to open it while the QWidgets right pane is still showing, i.e. in order to open the editor settings as a popup, we need to create a new QWindowContainer that behaves like a popup and renders the QML. If the Kanban is open we simply wrap the EditorSettings component with Popup in QML and show it inside the QML view.
The proper solution (which must be done in any case IMO) is to re-create the right pane in QML. It should be fairly easy, I did that already for Daino Notes (the plain text view).
Activity
zjeffer commentedon Feb 8, 2025
Interestingly, this doesn't occur when opening the editor settings in the kanban view, there it just opens and closes fine as a popup instead of a separate window.
nuttyartist commentedon Feb 15, 2025
@zjeffer It's that way since when you're in the text mode the right pane is using QWidgets and when in Kanban mode the right pane is in QML. And since the editor settings is written in QML, in order to open it while the QWidgets right pane is still showing, i.e. in order to open the editor settings as a popup, we need to create a new QWindowContainer that behaves like a popup and renders the QML. If the Kanban is open we simply wrap the EditorSettings component with
Popup
in QML and show it inside the QML view.The proper solution (which must be done in any case IMO) is to re-create the right pane in QML. It should be fairly easy, I did that already for Daino Notes (the plain text view).