cui/uiconfig/ui/widgettestdialog.ui | 1 + vcl/jsdialog/enabled.cxx | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-)
New commits: commit 6179026d162a4281ae158ccca7897f6059f1338c Author: Skyler Grey <skyler3...@gmail.com> AuthorDate: Wed Jul 27 16:46:24 2022 +0000 Commit: Szymon Kłos <szymon.k...@collabora.com> CommitDate: Sun Nov 20 10:42:36 2022 +0100 Add a title to the widget test dialog - Previously the widget test dialog didn't have a title, however most of the other dialogs do. This commit adds a title to the dialog Signed-off-by: Skyler Grey <skyler3...@gmail.com> Change-Id: I8b61e00e93cd71a6a7bf068537d9cbcdc735753d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137534 Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoff...@gmail.com> Reviewed-by: Rashesh Padia <rashesh.pa...@collabora.com> Reviewed-by: Pedro Silva <pedro.si...@collabora.com> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/142975 Tested-by: Jenkins Reviewed-by: Szymon Kłos <szymon.k...@collabora.com> diff --git a/cui/uiconfig/ui/widgettestdialog.ui b/cui/uiconfig/ui/widgettestdialog.ui index ce8e52879fec..787deda37171 100644 --- a/cui/uiconfig/ui/widgettestdialog.ui +++ b/cui/uiconfig/ui/widgettestdialog.ui @@ -4,6 +4,7 @@ <requires lib="gtk+" version="3.20"/> <object class="GtkDialog" id="WidgetTestDialog"> <property name="can-focus">False</property> + <property name="title" translatable="yes" context="widgettestdialog|WidgetTestDialog">Test Widgets</property> <property name="type-hint">dialog</property> <child internal-child="vbox"> <object class="GtkBox"> commit 318d6175f2cf4328bbd6e88f4f64adfe314d759b Author: Skyler Grey <skyler3...@gmail.com> AuthorDate: Thu Aug 4 11:24:19 2022 +0100 Commit: Szymon Kłos <szymon.k...@collabora.com> CommitDate: Sun Nov 20 10:42:24 2022 +0100 Enable JSDialogs on the split cells dialog - This dialog works properly when JSDialog rendering is enabled for it - This dialog is already async, so there aren't multi-user issues like there are on some other dialogs Signed-off-by: Skyler Grey <skyler3...@gmail.com> Change-Id: I036ca7ab15e0ab472ff961ef643053f8f6771c0f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137791 Reviewed-by: Szymon Kłos <szymon.k...@collabora.com> Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoff...@gmail.com> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/142973 Tested-by: Jenkins diff --git a/vcl/jsdialog/enabled.cxx b/vcl/jsdialog/enabled.cxx index 3d830d07cf56..6cad5ecad14e 100644 --- a/vcl/jsdialog/enabled.cxx +++ b/vcl/jsdialog/enabled.cxx @@ -64,7 +64,8 @@ bool isBuilderEnabled(std::u16string_view rUIFile, bool bMobile) || rUIFile == u"cui/ui/widgettestdialog.ui" || rUIFile == u"modules/swriter/ui/contentcontroldlg.ui" || rUIFile == u"modules/swriter/ui/contentcontrollistitemdlg.ui" - || rUIFile == u"modules/swriter/ui/splittable.ui") + || rUIFile == u"modules/swriter/ui/splittable.ui" + || rUIFile == u"cui/ui/splitcellsdialog.ui") { return true; }