From 8a594c1626a5e7af2ee9bc21c517975ad4d01ca5 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sun, 1 Mar 2026 15:32:21 +0100 Subject: [PATCH] Doc update --- src/layview/layview/gsiDeclLayLayoutView_qt.cc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/layview/layview/gsiDeclLayLayoutView_qt.cc b/src/layview/layview/gsiDeclLayLayoutView_qt.cc index aa8d4a47d..c39b2fc50 100644 --- a/src/layview/layview/gsiDeclLayLayoutView_qt.cc +++ b/src/layview/layview/gsiDeclLayLayoutView_qt.cc @@ -156,9 +156,13 @@ Class decl_LayoutView (decl_LayoutViewBase, "lay", "LayoutView" gsi::constructor ("new", &new_view, gsi::arg ("editable", false), gsi::arg ("manager", (db::Manager *) 0, "nil"), gsi::arg ("options", (unsigned int) 0), "@brief Creates a standalone view\n" "\n" - "This constructor is for special purposes only. To create a view in the context of a main window, " + "This constructor creates a non-GUI, standalone layout view. It is not attached to a Qt object and can be used for generating " + "images through the screenshot method for example. To create a view in the context of a main window, " "use \\MainWindow#create_view and related methods.\n" "\n" + "A standalone layout view has a default configuration that is different from a standard view - for example the " + "color scheme is not initialized according to screen settings.\n" + "\n" "@param editable True to make the view editable\n" "@param manager The \\Manager object to enable undo/redo\n" "@param options A combination of the values in the LV_... constants from \\LayoutViewBase\n"