cui/uiconfig/ui/toolbartabpage.ui | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-)
New commits: commit bd2f38c919b9dbf8f89ab72c226e598741981f6c Author: Michael Weghorn <[email protected]> AuthorDate: Tue May 27 09:03:25 2025 +0200 Commit: Michael Weghorn <[email protected]> CommitDate: Tue May 27 11:55:51 2025 +0200 tdf#130857 cui: Use separate columns in toolbar tab page Use a separate GtkTreeViewColumn for each of the cell renderers in the "View" -> "User Interface" dialog's new "Toolbars" tab page introduced in commit 4ab26f4ea0c627844531144a6a903c357a604a5e Date: Mon May 26 12:03:40 2025 +0200 Resolves tdf#158880 - Let users select multiple toolbars at once The weld::TreeView API also uses separate columns, and the Qt implementation in QtInstanceTreeView relies on those also being separate columns in the .ui file. This prepares for declaring support for that tab page in QtInstanceBuilder in an upcoming commit. Change-Id: I2f73518e17a34f22b79b563af7ec818692f3edb6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/185882 Tested-by: Jenkins Reviewed-by: Michael Weghorn <[email protected]> diff --git a/cui/uiconfig/ui/toolbartabpage.ui b/cui/uiconfig/ui/toolbartabpage.ui index fa4195c9ecbf..9b01043b1dc7 100644 --- a/cui/uiconfig/ui/toolbartabpage.ui +++ b/cui/uiconfig/ui/toolbartabpage.ui @@ -53,14 +53,19 @@ <child> <object class="GtkTreeViewColumn" id="column1"> <property name="resizable">True</property> - <property name="expand">True</property> <child> <object class="GtkCellRendererToggle" id="cbRender"/> <attributes> - <attribute name="active">0</attribute> <attribute name="visible">3</attribute> + <attribute name="active">0</attribute> </attributes> </child> + </object> + </child> + <child> + <object class="GtkTreeViewColumn" id="column2"> + <property name="resizable">True</property> + <property name="expand">True</property> <child> <object class="GtkCellRendererText" id="lbRender"/> <attributes>
