svx/source/svdraw/svdfmtf.cxx | 1 + sw/uiconfig/swriter/ui/textgridpage.ui | 5 +++++ 2 files changed, 6 insertions(+)
New commits: commit 3881b68a5a92d6672327cb7c7b473bf945e8c1c0 Author: Caolán McNamara <[email protected]> AuthorDate: Tue Jan 6 21:13:03 2026 +0000 Commit: Xisco Fauli <[email protected]> CommitDate: Fri Jan 9 08:55:29 2026 +0100 add a11y name to preview widget Change-Id: Ie1d4ffa6453336760e7af922e42f3c701344bc99 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/196672 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> (cherry picked from commit d8451e3a33c0b851c3cd8b0dd48a92dd7d178624) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/196846 Reviewed-by: Xisco Fauli <[email protected]> diff --git a/sw/uiconfig/swriter/ui/textgridpage.ui b/sw/uiconfig/swriter/ui/textgridpage.ui index aa2a3c6b001e..5db73401fcc0 100644 --- a/sw/uiconfig/swriter/ui/textgridpage.ui +++ b/sw/uiconfig/swriter/ui/textgridpage.ui @@ -150,6 +150,11 @@ <property name="can-focus">False</property> <property name="halign">center</property> <property name="valign">center</property> + <child internal-child="accessible"> + <object class="AtkObject" id="drawingareaWN_EXAMPLE-atkobject"> + <property name="AtkObject::accessible-name" translatable="yes" context="textgridpage|drawingareaWN_EXAMPLE-atkobject">Preview</property> + </object> + </child> </object> <packing> <property name="expand">True</property> commit c115cd238ce2a31ae57184c375f4606f831f5b89 Author: Andreas Heinisch <[email protected]> AuthorDate: Sun Jan 4 14:01:32 2026 +0100 Commit: Xisco Fauli <[email protected]> CommitDate: Fri Jan 9 08:55:20 2026 +0100 tdf#169813 - Reset default dash option during GDIMetaFileImport Change-Id: Ibb85a649594c8edbce1b624bed1a6c7942a3d183 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/196519 Tested-by: Jenkins Reviewed-by: Andreas Heinisch <[email protected]> Signed-off-by: Xisco Fauli <[email protected]> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/196563 diff --git a/svx/source/svdraw/svdfmtf.cxx b/svx/source/svdraw/svdfmtf.cxx index 69a7dfcd36dd..fa77ec8898d1 100644 --- a/svx/source/svdraw/svdfmtf.cxx +++ b/svx/source/svdraw/svdfmtf.cxx @@ -88,6 +88,7 @@ ImpSdrGDIMetaFileImport::ImpSdrGDIMetaFileImport( mnLineWidth(0), maLineJoin(basegfx::B2DLineJoin::NONE), maLineCap(css::drawing::LineCap_BUTT), + maDash(css::drawing::DashStyle_RECT, 0, 0, 0, 0, 0), mbMov(false), mbSize(false), maOfs(0, 0),
