core.git: Branch 'distro/vector/vector-7.5.9' - 9 commits - vcl/inc vcl/qa vcl/qt5 vcl/quartz vcl/skia vcl/source vcl/unx vcl/win vcl/workben

2024-04-07 Thread Mike Kaganski (via logerrit)
 vcl/inc/font/LogicalFontInstance.hxx   |5 -
 vcl/inc/impfontcache.hxx   |8 +-
 vcl/inc/impglyphitem.hxx   |6 +-
 vcl/inc/pdf/pdfbuildin_fonts.hxx   |2 
 vcl/inc/qt5/QtFont.hxx |1 
 vcl/inc/quartz/salgdi.h|2 
 vcl/inc/unx/freetype_glyphcache.hxx|2 
 vcl/inc/unx/glyphcache.hxx |1 
 vcl/inc/win/DWriteTextRenderer.hxx |   15 -
 vcl/inc/win/winlayout.hxx  |4 -
 vcl/qa/cppunit/cjktext.cxx |2 
 vcl/qa/cppunit/fontmocks.hxx   |3 -
 vcl/qa/cppunit/logicalfontinstance.cxx |   67 +
 vcl/qt5/QtFont.cxx |7 --
 vcl/quartz/ctfonts.cxx |   21 ---
 vcl/skia/gdiimpl.cxx   |   15 ++---
 vcl/skia/win/gdiimpl.cxx   |   33 +---
 vcl/skia/x11/textrender.cxx|   10 +--
 vcl/source/font/LogicalFontInstance.cxx|   36 +++--
 vcl/source/font/fontcache.cxx  |4 -
 vcl/source/gdi/CommonSalLayout.cxx |6 +-
 vcl/source/gdi/pdfbuildin_fonts.cxx|5 -
 vcl/source/gdi/pdfwriter_impl.cxx  |   29 +-
 vcl/source/gdi/sallayout.cxx   |   37 +
 vcl/source/outdev/font.cxx |6 +-
 vcl/unx/generic/glyphs/freetype_glyphcache.cxx |   38 --
 vcl/unx/generic/glyphs/glyphcache.cxx  |8 --
 vcl/win/gdi/DWriteTextRenderer.cxx |   28 ++
 vcl/win/gdi/salfont.cxx|   53 ---
 vcl/win/gdi/winlayout.cxx  |   18 --
 vcl/workben/listglyphs.cxx |2 
 31 files changed, 204 insertions(+), 270 deletions(-)

New commits:
commit 36e8e419d022a9c43302efe5e702a704dea39e76
Author: Mike Kaganski 
AuthorDate: Mon Apr 8 02:45:28 2024 +0500
Commit: Mike Kaganski 
CommitDate: Mon Apr 8 10:40:50 2024 +0500

Exclude getHScale from DirectWrite font rendering

... and drop it, since it's unused now.
Unkike with Skia, where the ratio produces a visible effect, in
DirectWrite the effect seems cancelled by transformations. Yet,
it produced computational instability, noticable in small vertical
text.

Change-Id: I2f3b20913075d1338dc75c5a04c9cc0ef29c75ce
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165877
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/vcl/inc/win/DWriteTextRenderer.hxx 
b/vcl/inc/win/DWriteTextRenderer.hxx
index 67094052ebb5..a655df6459ea 100644
--- a/vcl/inc/win/DWriteTextRenderer.hxx
+++ b/vcl/inc/win/DWriteTextRenderer.hxx
@@ -72,21 +72,6 @@ private:
 D2DTextAntiAliasMode meTextAntiAliasMode;
 };
 
-/**
- * Sets and unsets the needed DirectWrite transform to support the font's 
horizontal scaling and
- * rotation.
- */
-class WinFontTransformGuard
-{
-public:
-WinFontTransformGuard(ID2D1RenderTarget* pRenderTarget, float fHScale, 
const GenericSalLayout& rLayout, const D2D1_POINT_2F& rBaseline, bool 
bIsVertical);
-~WinFontTransformGuard();
-
-private:
-ID2D1RenderTarget* mpRenderTarget;
-D2D1::Matrix3x2F maTransform;
-};
-
 #endif // INCLUDED_VCL_INC_WIN_DWRITERENDERER_HXX
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/vcl/inc/win/winlayout.hxx b/vcl/inc/win/winlayout.hxx
index 0f253230c1b4..ac70e42b66cf 100644
--- a/vcl/inc/win/winlayout.hxx
+++ b/vcl/inc/win/winlayout.hxx
@@ -36,8 +36,6 @@ class WinFontInstance : public LogicalFontInstance
 public:
 ~WinFontInstance() override;
 
-float getHScale() const;
-
 void SetGraphics(WinSalGraphics*);
 WinSalGraphics* GetGraphics() const { return m_pGraphics; }
 
diff --git a/vcl/win/gdi/DWriteTextRenderer.cxx 
b/vcl/win/gdi/DWriteTextRenderer.cxx
index b7d7c03e9995..321587db8137 100644
--- a/vcl/win/gdi/DWriteTextRenderer.cxx
+++ b/vcl/win/gdi/DWriteTextRenderer.cxx
@@ -97,6 +97,20 @@ HRESULT checkResult(HRESULT hr, const char* file, size_t 
line)
 #endif
 
 
+// Sets and unsets the needed DirectWrite transform to support the font's 
rotation.
+class WinFontTransformGuard
+{
+public:
+WinFontTransformGuard(ID2D1RenderTarget* pRenderTarget,
+  const GenericSalLayout& rLayout, const 
D2D1_POINT_2F& rBaseline,
+  bool bIsVertical);
+~WinFontTransformGuard();
+
+private:
+ID2D1RenderTarget* mpRenderTarget;
+D2D1::Matrix3x2F maTransform;
+};
+
 } // end anonymous namespace
 
 D2DWriteTextOutRenderer::D2DWriteTextOutRenderer(bool bRenderingModeNatural)
@@ -218,7 +232,6 @@ bool 
D2DWriteTextOutRenderer::performRender(GenericSalLayout const & rLayout, Sa
 }
 
 const WinFontInstance& rWinFont = static_cast(rLayout.GetFont());
-float fHScale = 

[Bug 152336] Improve CSV field separator detection/behavior when several separators are selected on import

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152336

--- Comment #13 from Mike Kaganski  ---
(In reply to m_a_riosv from comment #12)

This is a very important issue. Please file it as a regression bug.
Gabriel: please consider making this an opt-in (an option in filter option; a
"detect me" kind of a button in the dialog...) What do you think?

-- 
You are receiving this mail because:
You are the assignee for the bug.

core.git: vcl/inc vcl/win

2024-04-07 Thread Mike Kaganski (via logerrit)
 vcl/inc/win/DWriteTextRenderer.hxx |   15 ---
 vcl/inc/win/winlayout.hxx  |2 --
 vcl/win/gdi/DWriteTextRenderer.cxx |   28 ++--
 vcl/win/gdi/winlayout.cxx  |8 
 4 files changed, 18 insertions(+), 35 deletions(-)

New commits:
commit 8557ea84c9336ba8061246f1f46ddb6e02f413a1
Author: Mike Kaganski 
AuthorDate: Mon Apr 8 02:45:28 2024 +0500
Commit: Mike Kaganski 
CommitDate: Mon Apr 8 07:12:18 2024 +0200

Exclude getHScale from DirectWrite font rendering

... and drop it, since it's unused now.
Unkike with Skia, where the ratio produces a visible effect, in
DirectWrite the effect seems cancelled by transformations. Yet,
it produced computational instability, noticable in small vertical
text.

Change-Id: I2f3b20913075d1338dc75c5a04c9cc0ef29c75ce
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165877
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/vcl/inc/win/DWriteTextRenderer.hxx 
b/vcl/inc/win/DWriteTextRenderer.hxx
index d4bb45e5895b..b822a6bca488 100644
--- a/vcl/inc/win/DWriteTextRenderer.hxx
+++ b/vcl/inc/win/DWriteTextRenderer.hxx
@@ -71,19 +71,4 @@ private:
 D2DTextAntiAliasMode meTextAntiAliasMode;
 };
 
-/**
- * Sets and unsets the needed DirectWrite transform to support the font's 
horizontal scaling and
- * rotation.
- */
-class WinFontTransformGuard
-{
-public:
-WinFontTransformGuard(ID2D1RenderTarget* pRenderTarget, float fHScale, 
const GenericSalLayout& rLayout, const D2D1_POINT_2F& rBaseline, bool 
bIsVertical);
-~WinFontTransformGuard();
-
-private:
-ID2D1RenderTarget* mpRenderTarget;
-D2D1::Matrix3x2F maTransform;
-};
-
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/vcl/inc/win/winlayout.hxx b/vcl/inc/win/winlayout.hxx
index cfb36e825b54..31066a7db28a 100644
--- a/vcl/inc/win/winlayout.hxx
+++ b/vcl/inc/win/winlayout.hxx
@@ -36,8 +36,6 @@ class WinFontInstance : public LogicalFontInstance
 public:
 ~WinFontInstance() override;
 
-float getHScale() const;
-
 void SetGraphics(WinSalGraphics*);
 WinSalGraphics* GetGraphics() const { return m_pGraphics; }
 
diff --git a/vcl/win/gdi/DWriteTextRenderer.cxx 
b/vcl/win/gdi/DWriteTextRenderer.cxx
index bb0f7e6b7661..633dcf82b13b 100644
--- a/vcl/win/gdi/DWriteTextRenderer.cxx
+++ b/vcl/win/gdi/DWriteTextRenderer.cxx
@@ -93,6 +93,20 @@ HRESULT checkResult(HRESULT hr, const char* location)
 #endif
 
 
+// Sets and unsets the needed DirectWrite transform to support the font's 
rotation.
+class WinFontTransformGuard
+{
+public:
+WinFontTransformGuard(ID2D1RenderTarget* pRenderTarget,
+  const GenericSalLayout& rLayout, const 
D2D1_POINT_2F& rBaseline,
+  bool bIsVertical);
+~WinFontTransformGuard();
+
+private:
+ID2D1RenderTarget* mpRenderTarget;
+D2D1::Matrix3x2F maTransform;
+};
+
 } // end anonymous namespace
 
 D2DWriteTextOutRenderer::D2DWriteTextOutRenderer(bool bRenderingModeNatural)
@@ -214,7 +228,6 @@ bool 
D2DWriteTextOutRenderer::performRender(GenericSalLayout const & rLayout, Sa
 }
 
 const WinFontInstance& rWinFont = static_cast(rLayout.GetFont());
-float fHScale = rWinFont.getHScale();
 
 float lfEmHeight = 0;
 IDWriteFontFace* pFontFace = GetDWriteFace(rWinFont, );
@@ -247,11 +260,11 @@ bool 
D2DWriteTextOutRenderer::performRender(GenericSalLayout const & rLayout, Sa
 while (rLayout.GetNextGlyph(, aPos, nStart))
 {
 UINT16 glyphIndices[] = { static_cast(pGlyph->glyphId()) };
-FLOAT glyphAdvances[] = { static_cast(pGlyph->newWidth()) / 
fHScale };
+FLOAT glyphAdvances[] = { static_cast(pGlyph->newWidth()) };
 DWRITE_GLYPH_OFFSET glyphOffsets[] = { { 0.0f, 0.0f }, };
-D2D1_POINT_2F baseline = { static_cast(aPos.getX() - 
bounds.Left()) / fHScale,
+D2D1_POINT_2F baseline = { static_cast(aPos.getX() - 
bounds.Left()),
static_cast(aPos.getY() - 
bounds.Top()) };
-WinFontTransformGuard aTransformGuard(mpRT, fHScale, rLayout, 
baseline, pGlyph->IsVertical());
+WinFontTransformGuard aTransformGuard(mpRT, rLayout, baseline, 
pGlyph->IsVertical());
 DWRITE_GLYPH_RUN glyphs = {
 pFontFace,
 lfEmHeight,
@@ -302,7 +315,7 @@ IDWriteFontFace* 
D2DWriteTextOutRenderer::GetDWriteFace(const WinFontInstance& r
 return pFontFace;
 }
 
-WinFontTransformGuard::WinFontTransformGuard(ID2D1RenderTarget* pRenderTarget, 
float fHScale,
+WinFontTransformGuard::WinFontTransformGuard(ID2D1RenderTarget* pRenderTarget,
  const GenericSalLayout& rLayout,
  const D2D1_POINT_2F& rBaseline,
  bool bIsVertical)
@@ -310,11 +323,6 @@ 

[Bug 160488] VIEWING - Characters extending below the baseline are cut off as drop caps

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160488

--- Comment #5 from Naresh  ---
Created attachment 193561
  --> https://bugs.documentfoundation.org/attachment.cgi?id=193561=edit
screenshot

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160488] VIEWING - Characters extending below the baseline are cut off as drop caps

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160488

--- Comment #4 from Naresh  ---
Thank you for the update. I tried the same but was not able to reproduce the
issue. attaching screenshot.

Version: 24.2.0.3 (X86_64) / LibreOffice Community
Build ID: da48488a73ddd66ea24cf16bbc4f7b9c08e9bea1
CPU threads: 4; OS: Windows 10.0 Build 22621; UI render: Skia/Vulkan; VCL: win
Locale: en-IN (en_IN); UI: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160566] formula object crops subscript

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160566

--- Comment #4 from potassi...@protonmail.com ---
Version: 7.6.5.2 (X86_64)
Build ID: 60(Build:2)
CPU threads: 16; OS: Linux 6.8; UI render: default; VCL: gtk3
Locale: ko-KR (ko_KR.UTF-8); UI: ko-KR
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160205] WRITER: page number display in Application background

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160205

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Bug 160203] Add ability to reference total number of list items

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160203

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160182] Short cut to next page (ELEMENT)

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160182

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160304] Manage direct changes dialog is confusing in case of deleted table rows

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160304

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160205] WRITER: page number display in Application background

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160205

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160008] let's make Master Document window look different...

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160008

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160047] Writer - CLI search format / backquotes

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160047

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 159977] footnotes style does not correct paragraph

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159977

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 156933] Data going missing from saves

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156933

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160546] crash unknown trigger causing data loss

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160546

--- Comment #4 from QA Administrators  ---
[Automated Action] NeedInfo-To-Unconfirmed

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 159942] Cross reference "Refer using" cannot select definitive artlce versions if the Name is non-local (eg. in master document setup)

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159942

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160546] crash unknown trigger causing data loss

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160546

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 157151] specify size of graphic objects in pixel instead of inch/cm

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157151

QA Administrators  changed:

   What|Removed |Added

 Resolution|--- |INSUFFICIENTDATA
 Status|NEEDINFO|RESOLVED

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 157151] specify size of graphic objects in pixel instead of inch/cm

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157151

--- Comment #3 from QA Administrators  ---
Dear Zerstreuter.Forum,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 103369] [META] Bullet, numbered, and outline list bugs and enhancements

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103369
Bug 103369 depends on bug 148798, which changed state.

Bug 148798 Summary: Add to list: unable to 'detected' a list directly below/or 
above.. you always need to place cursor in the list
https://bugs.documentfoundation.org/show_bug.cgi?id=148798

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 156933] Data going missing from saves

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156933

--- Comment #3 from QA Administrators  ---
Dear adam_braithwaite,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 148798] Add to list: unable to 'detected' a list directly below/or above.. you always need to place cursor in the list

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148798

QA Administrators  changed:

   What|Removed |Added

 Resolution|--- |INSUFFICIENTDATA
 Status|NEEDINFO|RESOLVED

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 148798] Add to list: unable to 'detected' a list directly below/or above.. you always need to place cursor in the list

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148798

--- Comment #8 from QA Administrators  ---
Dear Telesto,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 148391] Deleted text with backspace moving a space out of visible range

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148391

--- Comment #7 from QA Administrators  ---
Dear Telesto,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 157676] Shift Enter

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157676

--- Comment #2 from QA Administrators  ---
Dear FG,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 148391] Deleted text with backspace moving a space out of visible range

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148391

QA Administrators  changed:

   What|Removed |Added

 Resolution|--- |INSUFFICIENTDATA
 Status|NEEDINFO|RESOLVED

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 157678] LibreOffice very low frame rate on second screen

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157678

--- Comment #2 from QA Administrators  ---
Dear thibaud88501,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 157673] Library Office Writer crashes.

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157673

--- Comment #2 from QA Administrators  ---
Dear pand,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 127705] DOCX TABLE: Layout disorder after copy/pasted into a new Writer file

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127705

--- Comment #11 from QA Administrators  ---
Dear zexcel,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 97050] Setting a combobox to read-only disables the control

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97050

--- Comment #11 from QA Administrators  ---
Dear libreoffice,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 94712] EPSIs don't print to PS or export to PDF properly

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94712

--- Comment #18 from QA Administrators  ---
Dear ted.carnevale,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 93749] New password protected library lose code after reload

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93749

--- Comment #8 from QA Administrators  ---
Dear Laurent Godard,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 148367] EDITING MS Access through 64-bit ODBC doesn't work and returns an Invalid Bookmark error

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148367

--- Comment #6 from QA Administrators  ---
Dear Claude von Roesgen,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 90186] Right-click on unfocused comment does not focus it and shows wrong context menu

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90186

--- Comment #7 from QA Administrators  ---
Dear Gordo,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 143114] Libclplug: kf5 support errors

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143114

--- Comment #26 from QA Administrators  ---
Dear Armin Le Grand,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 137045] Unwanted scroll after switching multi page view to one page view

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137045

--- Comment #7 from QA Administrators  ---
Dear Telesto,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 132106] CELL() function "format" should include more date formats to return "D1" (or a new "D0")

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132106

--- Comment #17 from QA Administrators  ---
Dear Eike Rathke,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 135244] Document (still) scrolling to cursor position on different occurrences

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135244

--- Comment #34 from QA Administrators  ---
Dear Telesto,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 121557] Printing document with frame and controls

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121557

--- Comment #7 from QA Administrators  ---
Dear libreoffice,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160580] New: "Wraparound" of next/previous sheet shortcut in Calc

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160580

Bug ID: 160580
   Summary: "Wraparound" of next/previous sheet shortcut in Calc
   Product: LibreOffice
   Version: 24.2.1.2 release
  Hardware: x86-64 (AMD64)
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: a...@patternjugglers.co.nz

Description:
I’m a long-time Calc fan and user, and in a relatively recent update I’ve
noticed that the CTRL-PGUP/CTRL-PGDN shortcuts for switching sheets behave
differently.

Previously (as recently as 7.6.4.1), once on the very first or last sheet of a
workbook, using the shortcut CTRL-PGUP or CTRL-PGDN would stop.
This behaviour was:
* Consistent the GUI buttons for “Scroll to next/previous sheet”, which do
nothing once you are at the “end” of the strip.
* A convenient and long standing way to return to the start/end by holding the
keyboard shortcut - essentially a shortcut to “Scroll to last/first sheet”.

In a recent update, this keyboard shortcut now “wraps around”, so that the
selected sheet infinitely returns from the start to the other end.
This is inconsistent with the GUI, and breaks prior behaviour for no reason.

Is there any setting to revert this, or is it simply a bug that needs fixing?

Steps to Reproduce:
1. Create a Calc workbook with multiple sheets
2. Use the CTRL-PGDN (To next sheet) shortcut repeatedly to move to the last
sheet of the workbook
3. Once on the last sheet, press CTRL-PGDN again

Actual Results:
The first sheet of the the workbook is selected, unlike if you attempt to click
the gui button for "Scroll to next sheet".

Expected Results:
The "To next sheet" shortcut should not move focus if there is no next sheet to
move to.
The same applies to "To previous sheet"


Reproducible: Always


User Profile Reset: No

Additional Info:
Version: 24.2.2.2 (X86_64) / LibreOffice Community
Build ID: 420(Build:2)
CPU threads: 16; OS: Linux 6.8; UI render: default; VCL: kf5 (cairo+xcb)
Locale: en-NZ (en_NZ.UTF-8); UI: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 43220] UI: The Navigation Toolbox (top left of Navigator dialog) in Writer can incorrectly launch multiple instances

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=43220

--- Comment #19 from John  ---
I was not able to reproduce this issue on the version that I am using. Perhaps
this issue has been dealt with.
Version: 24.2.0.3 (X86_64) / LibreOffice Community
Build ID: da48488a73ddd66ea24cf16bbc4f7b9c08e9bea1
CPU threads: 24; OS: Windows 10.0 Build 22631; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160188] Installation of Libre Office 24.2 has altered my system

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160188

--- Comment #2 from John  ---
I cannot confirm this issue. I am using the US version so it is unknown if this
particular issue would cause a US style keymapping to become remapped to
another regional standard.

Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 6a064b1967e06e40be40817deff99d00c1a8554f
CPU threads: 24; OS: Windows 10.0 Build 22631; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 150102] LibreOffice Impress has white line on bottom and right edge of projection monitor

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150102

--- Comment #26 from John  ---
I was not able to reproduce this issue in the version I was using. No white
lines are presents when I am in presentation mode:

Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 6a064b1967e06e40be40817deff99d00c1a8554f
CPU threads: 24; OS: Windows 10.0 Build 22631; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL threaded

>From my testing, this issue appears to be resolved.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 154293] "create a direct PDF" causes crash - alway since new update

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154293

--- Comment #4 from John  ---
I was able to export a png file as PDF in writer.

Version: 24.2.0.3 (X86_64) / LibreOffice Community
Build ID: da48488a73ddd66ea24cf16bbc4f7b9c08e9bea1
CPU threads: 24; OS: Windows 10.0 Build 22631; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 120294] "Combine single line paragraphs" autocorrect option does not work

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120294

--- Comment #15 from John  ---
I was unable to confirm this with:

Version: 24.2.0.3 (X86_64) / LibreOffice Community
Build ID: da48488a73ddd66ea24cf16bbc4f7b9c08e9bea1
CPU threads: 24; OS: Windows 10.0 Build 22631; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 115461] Exporting 3D scenes results in bad quality

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115461

--- Comment #8 from John  ---
When I export a 3D image the quality appears as expected in my testing.
Version: 24.2.0.3 (X86_64) / LibreOffice Community
Build ID: da48488a73ddd66ea24cf16bbc4f7b9c08e9bea1
CPU threads: 24; OS: Windows 10.0 Build 22631; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 159380] UNO command to close all documents

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159380

wildgugu2...@gmail.com changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |wildgugu2...@gmail.com
   |desktop.org |
 Status|NEW |ASSIGNED

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160569] Dotted line is wrongly rendered in presentation mode if Skia is disabled

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160569

m_a_riosv  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #4 from m_a_riosv  ---
Sorry, you are right, too quick on my side.
Reproducible.
Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 5ebdcc60701ca5f2d267f92fa69ac06202309c52
CPU threads: 16; OS: Windows 10.0 Build 22631; UI render: default; VCL: win
Locale: es-ES (es_ES); UI: en-US
Calc: CL threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160569] Dotted line is wrongly rendered in presentation mode if Skia is disabled

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160569

--- Comment #3 from Regina Henschel  ---
(In reply to m_a_riosv from comment #2)
> Created attachment 193560 [details]
> Screenshot without skia.
> 
> Not reproducible 

Your screenshot shows the edit mode. The error is in running presentation.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160579] Printing doesn't work with overlapped objects

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160579

m_a_riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #1 from m_a_riosv  ---
Please attach a sample file, reduce the size as much as possible without
private information, and paste the information in Menu/Help/About LibreOffice,
there is a copy icon.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160574] Exportfilter Homepage / HTML does not work any more in 24.2.x release

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160574

m_a_riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #1 from m_a_riosv  ---
Please attach a sample file, reduce the size as much as possible without
private information, and paste the information in Menu/Help/About LibreOffice,
there is a copy icon.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 132618] The diagram Items with numbers 2 has an error

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132618

--- Comment #21 from Julien Nabet  ---
If I remember well these files can be opened only with Staroffice old filter?
If I'm not wrong, shouldn't it be converted to another format? (svg or whatever
which can be read without to undig old softwares)

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160571] FILEOPEN: Cropped SVG in .docx file (from winword) is rendered uncropped in Writer

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160571

m_a_riosv  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #4 from m_a_riosv  ---
Reproducible
Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 5ebdcc60701ca5f2d267f92fa69ac06202309c52
CPU threads: 16; OS: Windows 10.0 Build 22631; UI render: Skia/Raster; VCL: win
Locale: es-ES (es_ES); UI: en-US
Calc: CL threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 89673] EDITING - can't use the regular context menu on misspelled words

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89673

--- Comment #12 from daniel.scha...@gmail.com ---
Still extremely annoying in version 24.2.2.2 ... 9 years later ...

I like how Mozilla solved the problem in Firefox: Language options are on the
top of the context menu, all the rest (including copy/cut/paste/delete!) is
still available below.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160569] Dotted line is wrongly rendered in presentation mode if Skia is disabled

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160569

m_a_riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #2 from m_a_riosv  ---
Created attachment 193560
  --> https://bugs.documentfoundation.org/attachment.cgi?id=193560=edit
Screenshot without skia.

Not reproducible with
Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 5ebdcc60701ca5f2d267f92fa69ac06202309c52
CPU threads: 16; OS: Windows 10.0 Build 22631; UI render: default; VCL: win
Locale: es-ES (es_ES); UI: en-US
Calc: CL threaded
Version: 24.2.2.2 (X86_64) / LibreOffice Community
Build ID: d56cc158d8a96260b836f100ef4b4ef25d6f1a01
CPU threads: 16; OS: Windows 10.0 Build 22631; UI render: default; VCL: win
Locale: es-ES (es_ES); UI: en-US
Calc: CL threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160577] Enable OpenCL with Apple Silicon

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160577

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #1 from Julien Nabet  ---
If interested in code contributing, you may start with this page:
https://wiki.documentfoundation.org/Development/GetInvolved

First thing would be to build LO locally.
For macOS, this page may help:
https://wiki.documentfoundation.org/Development/BuildingOnMac

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160566] formula object crops subscript

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160566

m_a_riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #3 from m_a_riosv  ---
Please attach a sample file, reduce the size as much as possible without
private information, and paste the information in Menu/Help/About LibreOffice,
there is a copy icon.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 152336] Improve CSV field separator detection/behavior when several separators are selected on import

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152336

m_a_riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #12 from m_a_riosv  ---
Created attachment 193559
  --> https://bugs.documentfoundation.org/attachment.cgi?id=193559=edit
Sample file csv

With
Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 5ebdcc60701ca5f2d267f92fa69ac06202309c52
CPU threads: 16; OS: Windows 10.0 Build 22631; UI render: Skia/Raster; VCL: win
Locale: es-ES (es_ES); UI: en-US
Calc: CL threaded

The issue is that now, locale setting is not preserved in the import window. As
was the case until 24.2.
Seems it is reset to the default locale in my case es-ES.

-- 
You are receiving this mail because:
You are the assignee for the bug.

core.git: Branch 'distro/vector/vector-7.5.9' - 19 commits - basctl/source basic/source editeng/source embeddedobj/source filter/source fpicker/source include/editeng include/filter include/oox includ

2024-04-07 Thread Mike Kaganski (via logerrit)
 basctl/source/basicide/unomodel.cxx  |2 
 basic/source/basmgr/basicmanagerrepository.cxx   |2 
 basic/source/basmgr/basmgr.cxx   |   18 
 basic/source/uno/scriptcont.cxx  |2 
 editeng/source/misc/svxacorr.cxx |   34 -
 embeddedobj/source/inc/oleembobj.hxx |   28 +
 embeddedobj/source/msole/olecomponent.cxx|  529 +--
 embeddedobj/source/msole/olecomponent.hxx|   12 
 embeddedobj/source/msole/oleembed.cxx|   28 -
 embeddedobj/source/msole/olepersist.cxx  |   19 
 embeddedobj/source/msole/olevisual.cxx   |7 
 filter/source/msfilter/msdffimp.cxx  |   30 -
 filter/source/msfilter/msoleexp.cxx  |8 
 filter/source/msfilter/rtfutil.cxx   |6 
 filter/source/msfilter/svdfppt.cxx   |   22 
 filter/source/msfilter/svxmsbas2.cxx |8 
 fpicker/source/win32/VistaFilePickerImpl.cxx |1 
 include/editeng/svxacorr.hxx |5 
 include/filter/msfilter/msdffimp.hxx |6 
 include/filter/msfilter/svdfppt.hxx  |4 
 include/filter/msfilter/svxmsbas.hxx |2 
 include/oox/ole/olehelper.hxx|8 
 include/sfx2/event.hxx   |9 
 include/sfx2/objsh.hxx   |   13 
 include/sot/object.hxx   |6 
 include/sot/storage.hxx  |6 
 include/svx/gallerybinaryengine.hxx  |4 
 include/vcl/scheduler.hxx|7 
 include/vcl/svapp.hxx|   12 
 oox/source/ole/olehelper.cxx |   18 
 oox/source/ole/vbaexport.cxx |   12 
 sc/inc/global.hxx|4 
 sc/inc/rangelst.hxx  |1 
 sc/inc/tablink.hxx   |7 
 sc/source/core/data/global.cxx   |2 
 sc/source/filter/excel/excel.cxx |   32 -
 sc/source/filter/excel/excimp8.cxx   |6 
 sc/source/filter/excel/expop2.cxx|4 
 sc/source/filter/excel/xepivot.cxx   |4 
 sc/source/filter/excel/xeroot.cxx|2 
 sc/source/filter/excel/xestream.cxx  |4 
 sc/source/filter/excel/xiescher.cxx  |2 
 sc/source/filter/excel/xipivot.cxx   |4 
 sc/source/filter/excel/xiroot.cxx|2 
 sc/source/filter/excel/xlroot.cxx|   12 
 sc/source/filter/ftools/ftools.cxx   |   16 
 sc/source/filter/inc/XclImpChangeTrack.hxx   |2 
 sc/source/filter/inc/ftools.hxx  |   10 
 sc/source/filter/inc/xcl97esc.hxx|2 
 sc/source/filter/inc/xeroot.hxx  |2 
 sc/source/filter/inc/xiescher.hxx|2 
 sc/source/filter/inc/xiroot.hxx  |2 
 sc/source/filter/inc/xlroot.hxx  |   16 
 sc/source/filter/xcl97/XclExpChangeTrack.cxx |4 
 sc/source/filter/xcl97/XclImpChangeTrack.cxx |2 
 sc/source/filter/xcl97/xcl97rec.cxx  |2 
 sc/source/ui/app/drwtrans.cxx|   15 
 sc/source/ui/app/seltrans.cxx|6 
 sc/source/ui/app/transobj.cxx|   19 
 sc/source/ui/docshell/arealink.cxx   |5 
 sc/source/ui/docshell/docsh4.cxx |3 
 sc/source/ui/docshell/externalrefmgr.cxx |   15 
 sc/source/ui/docshell/tablink.cxx|   18 
 sc/source/ui/inc/docsh.hxx   |2 
 sc/source/ui/inc/drwtrans.hxx|2 
 sc/source/ui/inc/instbdlg.hxx|5 
 sc/source/ui/inc/linkarea.hxx|3 
 sc/source/ui/inc/transobj.hxx|2 
 sc/source/ui/miscdlgs/instbdlg.cxx   |5 
 sc/source/ui/miscdlgs/linkarea.cxx   |9 
 sc/source/ui/unoobj/exceldetect.cxx  |2 
 sc/source/ui/unoobj/unodoc.cxx   |2 
 sc/source/ui/view/drawvie4.cxx   |6 
 sc/source/ui/view/viewfun3.cxx   |4 
 sd/inc/drawdoc.hxx   |2 
 sd/inc/sdfilter.hxx  |4 
 sd/inc/sdmod.hxx |4 
 sd/source/filter/eppt/eppt.cxx   |   20 
 sd/source/filter/eppt/eppt.hxx   |   10 
 sd/source/filter/eppt/epptso.cxx |4 
 sd/source/filter/ppt/pptin.cxx   |8 
 sd/source/filter/ppt/pptin.hxx   |4 
 sd/source/filter/ppt/propread.hxx|3 
 sd/source/filter/sdpptwrp.cxx|   24 -
 sd/source/ui/app/sdmod.cxx   |4 
 sd/source/ui/app/sdmod1.cxx

[Bug 45315] [UI] Some relation elements (precedes and following) shown with different font

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45315

--- Comment #25 from john david  ---
IGram on Download Instagram videos easily with IGram. This free online tool
lets you save Instagram video posts directly to your device.https://igram.bar/

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 45315] [UI] Some relation elements (precedes and following) shown with different font

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45315

--- Comment #24 from john david  ---
Pikashow APK offers HD streaming of entertainment. Includes TV shows and
movies. Download the latest version for Android, PC or iOS.
https://pikashowhd.net.in

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 45315] [UI] Some relation elements (precedes and following) shown with different font

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=45315

--- Comment #23 from john david  ---
Photoleap MOD APK lets you edit photos like a pro! Download it to get awesome
filters, effects, and cool AI tools for free. Make your pics look amazing with
easy editing. https://photoleapmod.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160088] Conditional formatting not working with dates <1900

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160088

ady  changed:

   What|Removed |Added

 Resolution|--- |NOTABUG
 Status|UNCONFIRMED |RESOLVED

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 140727] text format toolbar highlight color selector button causes scroll

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140727

--- Comment #4 from John  ---
I found that this does not happen to me unless text is selected on multiple
pages. I assume that this would be the desired result, but I am uncertain.

Version: 24.2.0.3 (X86_64) / LibreOffice Community
Build ID: da48488a73ddd66ea24cf16bbc4f7b9c08e9bea1
CPU threads: 24; OS: Windows 10.0 Build 22631; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160203] Add ability to reference total number of list items

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160203

William Friedman  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160203] Add ability to reference total number of list items

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160203

--- Comment #2 from William Friedman  ---
(In reply to Dieter from comment #1)
> William, thank you for your report. Just for clarificatio. Idea is, that you
> have a list of let's say 8 items (bullets, numbers, ...) and you want to
> insert a field, that displays numbers of items, correct? And if number of
> items increases or discreases, filed should be updated, correct?
> => NEEDINFO

Yes on all counts. But please note that it won't work just to implement a field
that counts the total number of instances of list items, since they are
currently all lumped together as if they're a single list. Individual lists
would have to be identified somehow.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160394] PIVOTTABLE: Grouping in a 2nd table removes grouping in the first table

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160394

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on|160393  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=160393
[Bug 160393] PIVOTTABLE: with Grouping: no Drilldown and Datasets missing
-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.

[Bug 103381] [META] Pivot table (aka Data Pilot) bugs and enhancements

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103381

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||160393


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=160393
[Bug 160393] PIVOTTABLE: with Grouping: no Drilldown and Datasets missing
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160395] PIVOTTABLE: Result Field can be deleted with the Del key

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160395

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on|160393  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=160393
[Bug 160393] PIVOTTABLE: with Grouping: no Drilldown and Datasets missing
-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.

[Bug 160393] PIVOTTABLE: with Grouping: no Drilldown and Datasets missing

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160393

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks|160394, 160395  |103381


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103381
[Bug 103381] [META] Pivot table (aka Data Pilot) bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=160394
[Bug 160394] PIVOTTABLE: Grouping in a 2nd table removes grouping in the first
table
https://bugs.documentfoundation.org/show_bug.cgi?id=160395
[Bug 160395] PIVOTTABLE: Result Field can be deleted with the Del key
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160394] PIVOTTABLE: Grouping in a 2nd table removes grouping in the first table

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160394

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 CC||79045_79...@mail.ru
 Blocks||103381


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103381
[Bug 103381] [META] Pivot table (aka Data Pilot) bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.

[Bug 103381] [META] Pivot table (aka Data Pilot) bugs and enhancements

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103381

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||160394


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=160394
[Bug 160394] PIVOTTABLE: Grouping in a 2nd table removes grouping in the first
table
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160394] PIVOTTABLE: Grouping in a 2nd table removes grouping in the first table

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160394

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on|160395  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=160395
[Bug 160395] PIVOTTABLE: Result Field can be deleted with the Del key
-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.

[Bug 103381] [META] Pivot table (aka Data Pilot) bugs and enhancements

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103381

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||160395


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=160395
[Bug 160395] PIVOTTABLE: Result Field can be deleted with the Del key
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160395] PIVOTTABLE: Result Field can be deleted with the Del key

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160395

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks|160394  |103381


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103381
[Bug 103381] [META] Pivot table (aka Data Pilot) bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=160394
[Bug 160394] PIVOTTABLE: Grouping in a 2nd table removes grouping in the first
table
-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.

[Bug 103381] [META] Pivot table (aka Data Pilot) bugs and enhancements

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103381

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||160396


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=160396
[Bug 160396] PIVOTTABLE: Row Field's drop down menus missing when last Row
Field set to Compact layout
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160397] PIVOTTABLE: Compact layout missing Text values in Row Field

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160397

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on|160396  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=160396
[Bug 160396] PIVOTTABLE: Row Field's drop down menus missing when last Row
Field set to Compact layout
-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.

[Bug 160396] PIVOTTABLE: Row Field's drop down menus missing when last Row Field set to Compact layout

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160396

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks|160397  |103381


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103381
[Bug 103381] [META] Pivot table (aka Data Pilot) bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=160397
[Bug 160397] PIVOTTABLE: Compact layout missing Text values in Row Field
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 103381] [META] Pivot table (aka Data Pilot) bugs and enhancements

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103381

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||160397


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=160397
[Bug 160397] PIVOTTABLE: Compact layout missing Text values in Row Field
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160397] PIVOTTABLE: Compact layout missing Text values in Row Field

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160397

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||103381


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103381
[Bug 103381] [META] Pivot table (aka Data Pilot) bugs and enhancements
-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.

[Bug 154715] "Edit Fields" for cross-reference fields should open on the type, format, and selection of the inserted field

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154715

Caolán McNamara  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

--- Comment #11 from Caolán McNamara  ---
I think what the bisect identified is the commit that restored the ability of
this dialog to read the previous saved settings used in that page.

What I think is then funky is that the page has "IsFieldEdit" which
distinguishes between the page used to edit a field, vs the other case when its
for inserting a field.

But even if "IsFieldEdit" is set, then it uses the saved settings to restore
the last used settings. What is particularly off is

https://cgit.freedesktop.org/libreoffice/core/tree/sw/source/ui/fldui/fldref.cxx#n270

where we have: if( !IsRefresh() ) used twice, one inside the other, but if was
true in the outer use, it would be true in the inner (all the way back to the
initial commit). And IsRefresh is only true I think for the case of using the
"next/back" button to go to edit another field.

Which suggests that if you click next and then back that you then get the right
results

I think one of those IsRefresh was intended to be IsFieldEdit

https://gerrit.libreoffice.org/c/core/+/165876

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160577] Enable OpenCL with Apple Silicon

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160577

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||97391


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=97391
[Bug 97391] [META] OpenCL and "Software Interpreter" issues in Calc
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 97391] [META] OpenCL and "Software Interpreter" issues in Calc

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97391

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||160577


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=160577
[Bug 160577] Enable OpenCL with Apple Silicon
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 97391] [META] OpenCL and "Software Interpreter" issues in Calc

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97391

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Depends on||160550


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=160550
[Bug 160550] Can't enable OpenCL even though it's supported by the hardware
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 160550] Can't enable OpenCL even though it's supported by the hardware

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=160550

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 Blocks||97391


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=97391
[Bug 97391] [META] OpenCL and "Software Interpreter" issues in Calc
-- 
You are receiving this mail because:
You are the assignee for the bug.

core.git: Branch 'libreoffice-24-2' - sc/source

2024-04-07 Thread Tibor Nagy (via logerrit)
 sc/source/ui/view/output2.cxx |   14 --
 1 file changed, 8 insertions(+), 6 deletions(-)

New commits:
commit 09a055c7457b005e1d7c733dc951dd8469c75411
Author: Tibor Nagy 
AuthorDate: Wed Mar 13 08:28:41 2024 +0100
Commit: Thorsten Behrens 
CommitDate: Sun Apr 7 21:38:18 2024 +0200

tdf#156655 sc: fix disappear text in merged cell

The text does not appear if the first row or column of the merged cell
is hidden.

Change-Id: I398f0d572226e44ffaa4e33c066b51480ad124cb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/164757
Tested-by: Jenkins
Reviewed-by: Nagy Tibor 
(cherry picked from commit d5f25d9c0026ec06a0b46e1560e26adba2725290)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165835
Reviewed-by: Thorsten Behrens 

diff --git a/sc/source/ui/view/output2.cxx b/sc/source/ui/view/output2.cxx
index d419981d8edb..877675c0ac48 100644
--- a/sc/source/ui/view/output2.cxx
+++ b/sc/source/ui/view/output2.cxx
@@ -1877,8 +1877,7 @@ void ScOutputData::LayoutStrings(bool bPixelToLogic)
 //  Cells to the left are marked directly, cells to the
 //  right are handled by the flag for nX2
 SCCOL nMarkX = ( nCellX <= nX2 ) ? nCellX : nX2;
-RowInfo* pMarkRowInfo = ( nCellY == nY ) ? pThisRowInfo : 
[0];
-pMarkRowInfo->basicCellInfo(nMarkX).bEditEngine = true;
+pThisRowInfo->basicCellInfo(nMarkX).bEditEngine = true;
 bDoCell = false;// don't draw here
 }
 if ( bDoCell )
@@ -4429,14 +4428,17 @@ void ScOutputData::DrawEdit(bool bPixelToLogic)
 SCROW nCellY = nY;
 bool bDoCell = false;
 
+// if merged cell contains hidden row or column or both
+const ScMergeFlagAttr* pMergeFlag = mpDoc->GetAttr(nX, nY, 
nTab, ATTR_MERGE_FLAG);
+bool bOverlapped = (pMergeFlag->IsHorOverlapped() || 
pMergeFlag->IsVerOverlapped());
+
 tools::Long nPosY = nRowPosY;
-if ( nArrY == 0 )
+if (bOverlapped)
 {
-nPosY = nScrY;
-nY = pRowInfo[1].nRowNo;
+nY = pRowInfo[nArrY].nRowNo;
 SCCOL nOverX;   // start of the merged 
cells
 SCROW nOverY;
-if (GetMergeOrigin( nX,nY, 1, nOverX,nOverY, true ))
+if (GetMergeOrigin( nX,nY, nArrY, nOverX,nOverY, true 
))
 {
 nCellX = nOverX;
 nCellY = nOverY;


[Bug 155388] Context menu in SlideShow mode temporarily disables SlideShow mode

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155388

--- Comment #11 from Armondo Lopez  ---
I'm unable to reproduce the same behavior in

Version: 24.2.1.2 (X86_64) / LibreOffice Community
Build ID: db4def46b0453cc22e2d0305797cf981b68ef5ac
CPU threads: 8; OS: Windows 10.0 Build 19045; UI render: default; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded

or 

Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: a2265e8faa099d9652efd12392c2877c2df1d1eb
CPU threads: 8; OS: Windows 10.0 Build 19045; UI render: default; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 146940] Libreoffice became increadibly slow on using emoticons

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146940

--- Comment #7 from Armondo Lopez  ---
I'm unable to reproduce the same behavior in 

Version: 24.2.1.2 (X86_64) / LibreOffice Community
Build ID: db4def46b0453cc22e2d0305797cf981b68ef5ac
CPU threads: 8; OS: Windows 10.0 Build 19045; UI render: default; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded

or

Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: a2265e8faa099d9652efd12392c2877c2df1d1eb
CPU threads: 8; OS: Windows 10.0 Build 19045; UI render: default; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 148116] Cannot download/install extensions in Libreoffice Writer.

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148116

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #6 from Buovjaga  ---
lmart121: do you still reproduce with version 24.2?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 54908] printing when a selection is active should take in account it and activate the "print selection" radio button

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=54908

--- Comment #39 from John  ---
When text is selected, the print selection radio is till not highlighted by
default.
Version: 24.2.0.3 (X86_64) / LibreOffice Community
Build ID: da48488a73ddd66ea24cf16bbc4f7b9c08e9bea1
CPU threads: 24; OS: Windows 10.0 Build 22631; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 71990] Freezes on Font Dropdown

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71990

--- Comment #14 from John  ---
I am also unable to reproduce this issue and I also do not have access to the
Google doc. Version 24.2

-- 
You are receiving this mail because:
You are the assignee for the bug.

core.git: Branch 'libreoffice-7-6' - desktop/source

2024-04-07 Thread Patrick Luby (via logerrit)
 desktop/source/deployment/registry/package/dp_package.cxx |   17 +-
 1 file changed, 16 insertions(+), 1 deletion(-)

New commits:
commit 47ca58be2941e67c9304cf47d4beba93bdf74ffc
Author: Patrick Luby 
AuthorDate: Wed Apr 3 17:34:49 2024 -0400
Commit: Noel Grandin 
CommitDate: Sun Apr 7 20:12:16 2024 +0200

tdf#159790 temporarily release mutex for child packages

This code is normally run on a separate thread so if a
child package tries to acquire the solar mutex, a deadlock
can occur if the main thread calls isRegistered() on this
package or any of its parents. So, temporarily release
this package's mutex while registering the child package.

Change-Id: I45b534c44d5946637a5441927ed01a68aad4c448
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165766
Tested-by: Jenkins
Reviewed-by: Noel Grandin 
(cherry picked from commit cab028121bd9b620529b6492b3247ac48ac2082b)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165832
Reviewed-by: Patrick Luby 

diff --git a/desktop/source/deployment/registry/package/dp_package.cxx 
b/desktop/source/deployment/registry/package/dp_package.cxx
index 0eb02321a74f..6bd8b02bc7d7 100644
--- a/desktop/source/deployment/registry/package/dp_package.cxx
+++ b/desktop/source/deployment/registry/package/dp_package.cxx
@@ -781,7 +781,7 @@ uno::Reference< graphic::XGraphic > 
BackendImpl::PackageImpl::getIcon( sal_Bool
 
 
 void BackendImpl::PackageImpl::processPackage_(
-::osl::ResettableMutexGuard &,
+::osl::ResettableMutexGuard & guard,
 bool doRegisterPackage,
 bool startup,
 ::rtl::Reference const & abortChannel,
@@ -802,10 +802,20 @@ void BackendImpl::PackageImpl::processPackage_(
 xPackage->createAbortChannel() );
 AbortChannel::Chain chain( abortChannel, xSubAbortChannel );
 try {
+// tdf#159790 temporarily release mutex for child packages
+// This code is normally run on a separate thread so if a
+// child package tries to acquire the solar mutex, a deadlock
+// can occur if the main thread calls isRegistered() on this
+// package or any of its parents. So, temporarily release
+// this package's mutex while registering the child package.
+guard.clear();
 xPackage->registerPackage( startup, xSubAbortChannel, xCmdEnv 
);
+guard.reset();
 }
 catch (const Exception &)
 {
+guard.reset();
+
//We even try a rollback if the user cancelled the action 
(CommandAbortedException)
 //in order to prevent invalid database entries.
 Any exc( ::cppu::getCaughtException() );
@@ -856,6 +866,11 @@ void BackendImpl::PackageImpl::processPackage_(
 ::cppu::throwException(exc);
 }
 }
+catch (...) {
+guard.reset();
+throw;
+}
+
 data.items.emplace_back(xPackage->getURL(),
  xPackage->getPackageType()->getMediaType());
 }


[Bug 148098] Libre Office Thumbnails (Win10) not showing file type icon

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148098

Armondo Lopez  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #4 from Armondo Lopez  ---
Thanks for submitting this bug. I can confirm that this behavior is apparent in 

Version: 24.2.1.2 (X86_64) / LibreOffice Community
Build ID: db4def46b0453cc22e2d0305797cf981b68ef5ac
CPU threads: 8; OS: Windows 10.0 Build 19045; UI render: default; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded

as well as

Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: a2265e8faa099d9652efd12392c2877c2df1d1eb
CPU threads: 8; OS: Windows 10.0 Build 19045; UI render: default; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 110433] UNDO is creating a duplicate item

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=110433

--- Comment #9 from John  ---
I am unable to reproduce this in version 24.2 or 24.8.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 147087] Automatic filling changes merged state of target cells

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147087

--- Comment #6 from Armondo Lopez  ---
I'm unable to reproduce the same behavior in

Version: 24.2.1.2 (X86_64) / LibreOffice Community
Build ID: db4def46b0453cc22e2d0305797cf981b68ef5ac
CPU threads: 8; OS: Windows 10.0 Build 19045; UI render: default; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded

or

Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: a2265e8faa099d9652efd12392c2877c2df1d1eb
CPU threads: 8; OS: Windows 10.0 Build 19045; UI render: default; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 148116] Cannot download/install extensions in Libreoffice Writer.

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148116

--- Comment #5 from Armondo Lopez  ---
I was unable to reproduce the same behavior in 

Version: 24.2.1.2 (X86_64) / LibreOffice Community
Build ID: db4def46b0453cc22e2d0305797cf981b68ef5ac
CPU threads: 8; OS: Windows 10.0 Build 19045; UI render: default; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded

or

Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: a2265e8faa099d9652efd12392c2877c2df1d1eb
CPU threads: 8; OS: Windows 10.0 Build 19045; UI render: default; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded

I was able to install the Yaru Theme, although the program did hang for a while
before actually installing it.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 134297] Drag and drop of media files always links/never embeds

2024-04-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134297

--- Comment #9 from Armondo Lopez  ---
Hi, I can confirm that this bug is present in

Version: 24.2.1.2 (X86_64) / LibreOffice Community
Build ID: db4def46b0453cc22e2d0305797cf981b68ef5ac
CPU threads: 8; OS: Windows 10.0 Build 19045; UI render: default; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.

core.git: sd/source

2024-04-07 Thread Jim Raykowski (via logerrit)
 sd/source/ui/dlg/navigatr.cxx  |5 +
 sd/source/ui/view/drviews4.cxx |9 +
 2 files changed, 6 insertions(+), 8 deletions(-)

New commits:
commit 748561425774fa40ab685fed80d113f7e8301158
Author: Jim Raykowski 
AuthorDate: Thu Mar 21 22:15:08 2024 -0800
Commit: Jim Raykowski 
CommitDate: Sun Apr 7 19:22:05 2024 +0200

SdNavigator: speed up notifications to update the Navigator state

Change-Id: I191cd83ffce3f1ded9c67abcdf319034972a0b16
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165151
Tested-by: Jenkins
Reviewed-by: Jim Raykowski 

diff --git a/sd/source/ui/dlg/navigatr.cxx b/sd/source/ui/dlg/navigatr.cxx
index af0e37e36d3a..893732f86662 100644
--- a/sd/source/ui/dlg/navigatr.cxx
+++ b/sd/source/ui/dlg/navigatr.cxx
@@ -460,6 +460,11 @@ IMPL_LINK_NOARG(SdNavigatorWin, ClickObjectHdl, 
weld::TreeView&, bool)
 pDrawView->MarkObj(pCursorEntryObject, 
pDrawView->GetSdrPageView(), true);
 }
 
+// SID_NAVIGATOR_STATE invalidate is done in 
DrawViewShell::ExecNavigatorWin
+// and DrawDocShell::GotoBookmark. Update the bindings here to 
speed up Navigator
+// state update.
+mpBindings->Update();
+
 // moved here from SetGetFocusHdl. Reset the
 // focus only if something has been selected in the
 // document.
diff --git a/sd/source/ui/view/drviews4.cxx b/sd/source/ui/view/drviews4.cxx
index 12a734a6ca45..8c547d8525fc 100644
--- a/sd/source/ui/view/drviews4.cxx
+++ b/sd/source/ui/view/drviews4.cxx
@@ -306,16 +306,9 @@ void DrawViewShell::FreshNavigatrTree()
 SfxViewFrame *pViewFrame = GetViewFrame();
 if (!pViewFrame)
 return;
-SfxChildWindow* pWindow = pViewFrame->GetChildWindow( SID_NAVIGATOR );
-if( pWindow )
-{
-SdNavigatorFloat* pNavWin = static_cast( 
pWindow->GetWindow() );
-if( pNavWin )
-pNavWin->FreshTree( GetDoc() );
-}
-// sidebar version
 SfxBindings& rBindings = pViewFrame->GetBindings();
 rBindings.Invalidate(SID_NAVIGATOR_STATE, true);
+rBindings.Update();
 }
 
 void DrawViewShell::MouseButtonDown(const MouseEvent& rMEvt,


core.git: 3 commits - sw/qa sw/source

2024-04-07 Thread Mike Kaganski (via logerrit)
 sw/qa/extras/layout/data/i84870.fodt|   61 +++
 sw/qa/extras/layout/data/tdf160526.fodt |   47 ++
 sw/qa/extras/layout/data/tdf160549.fodt |   60 +++
 sw/qa/extras/layout/layout3.cxx |   29 +
 sw/qa/extras/uiwriter/uiwriter3.cxx |5 +
 sw/source/core/text/frmform.cxx |  101 +++-
 6 files changed, 290 insertions(+), 13 deletions(-)

New commits:
commit ae9e8f3f6d10b0be2fe5b9b238a531b17e0d67da
Author: Mike Kaganski 
AuthorDate: Sun Apr 7 18:23:52 2024 +0500
Commit: Mike Kaganski 
CommitDate: Sun Apr 7 18:46:59 2024 +0200

tdf#160526, tdf#160549: fix split conditions at page start

A single large object in a paragraph must be moved down, when the page
has other content before this. On the other hand, there must not be
moving down, when an unsuccessful attempt to move was already done (so
the master frame is empty), or even the first time, when the frame is
at the page body start.

Change-Id: Ib8e2fe7b77c622d9cfac22722ca6b55dba7ad8ae
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165869
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/sw/qa/extras/layout/data/tdf160526.fodt 
b/sw/qa/extras/layout/data/tdf160526.fodt
new file mode 100644
index ..37cf73fb8e18
--- /dev/null
+++ b/sw/qa/extras/layout/data/tdf160526.fodt
@@ -0,0 +1,47 @@
+
+
+
+ 
+  
+ 
+ 
+  
+   
+   
+  
+  
+   
+   
+  
+  
+ 
+ 
+  
+   
+  
+  
+   
+   
+  
+  
+   
+  
+  
+   
+  
+  
+ 
+ 
+  
+ 
+ 
+  
+   
+ 
+Foo
+   
+ 
+
+  
+ 
+
\ No newline at end of file
diff --git a/sw/qa/extras/layout/data/tdf160549.fodt 
b/sw/qa/extras/layout/data/tdf160549.fodt
new file mode 100644
index ..fd8425eedd86
--- /dev/null
+++ b/sw/qa/extras/layout/data/tdf160549.fodt
@@ -0,0 +1,60 @@
+
+
+
+ 
+  
+ 
+ 
+  
+   
+   
+   
+  
+  
+   
+   
+  
+  
+  
+   
+  
+  
+   
+  
+  
+   
+  
+ 
+ 
+  
+   
+  
+  
+   
+  
+  
+   
+   
+
+   
+  
+ 
+ 
+  
+   
+
+  
+   foobar
+  
+ 
+   
+  
+ 
+ 
+  
+   
+ 
+
+  
+ 
+
\ No newline at end of file
diff --git a/sw/qa/extras/layout/layout3.cxx b/sw/qa/extras/layout/layout3.cxx
index d198b327df3a..b73cff5a32fc 100644
--- a/sw/qa/extras/layout/layout3.cxx
+++ b/sw/qa/extras/layout/layout3.cxx
@@ -2491,6 +2491,27 @@ CPPUNIT_TEST_FIXTURE(SwLayoutWriter3, test_i84870)
 CPPUNIT_ASSERT_EQUAL(2, getPages());
 }
 
+CPPUNIT_TEST_FIXTURE(SwLayoutWriter3, testTdf160549)
+{
+// Given a document with a large as-char object, alone in its paragraph, 
shifted down by a
+// header object: it must not hang in a layout loop on import (similar to 
i84870, but not
+// fixed by its fix)
+createSwDoc("tdf160549.fodt");
+// The object is the first in the document; it must not move to the next 
page
+CPPUNIT_ASSERT_EQUAL(1, getPages());
+}
+
+CPPUNIT_TEST_FIXTURE(SwLayoutWriter3, testTdf160526)
+{
+// Given a document with a large as-char object, alone in its paragraph, 
shifted down by
+// another body object
+createSwDoc("tdf160526.fodt");
+// It must move to the next page
+CPPUNIT_ASSERT_EQUAL(2, getPages());
+auto pExportDump = parseLayoutDump();
+assertXPath(pExportDump, 
"//page[2]/body/txt/anchored/SwAnchoredDrawObject"_ostr);
+}
+
 } // end of anonymous namespace
 
 CPPUNIT_PLUGIN_IMPLEMENT();
diff --git a/sw/source/core/text/frmform.cxx b/sw/source/core/text/frmform.cxx
index e19b834a5618..97eff3e607ec 100644
--- a/sw/source/core/text/frmform.cxx
+++ b/sw/source/core/text/frmform.cxx
@@ -1081,6 +1081,54 @@ void SwTextFrame::ChangeOffset( SwTextFrame* pFrame, 
TextFrameIndex nNew )
 MoveFlyInCnt( pFrame, nNew, TextFrameIndex(COMPLETE_STRING) );
 }
 
+static bool isFirstVisibleFrameInBody(const SwTextFrame* pFrame)
+{
+const SwFrame* pBodyFrame = pFrame->FindBodyFrame();
+if (!pBodyFrame)
+return false;
+for (const SwFrame* pCur = pFrame;;)
+{
+for (const SwFrame* pPrev = pCur->GetPrev(); pPrev; pPrev = 
pPrev->GetPrev())
+if (!pPrev->IsHiddenNow())
+return false;
+pCur = pCur->GetUpper();
+assert(pCur); // We found pBodyFrame, right?
+if (pCur->IsBodyFrame())
+return true;
+}
+}
+
+static bool hasFly(const SwTextFrame* pFrame)
+{
+if (auto pDrawObjs = pFrame->GetDrawObjs(); pDrawObjs && pDrawObjs->size())
+{
+auto anchorId = 
(*pDrawObjs)[0]->GetFrameFormat()->GetAnchor().GetAnchorId();
+if (anchorId == RndStdIds::FLY_AT_PARA || anchorId == 
RndStdIds::FLY_AT_CHAR)
+return true;
+}
+return false;
+}
+
+static bool hasAtPageFly(const SwFrame* pFrame)
+{
+auto pPageFrame = pFrame->FindPageFrame();
+if (!pPageFrame)
+return false;
+auto pPageDrawObjs = pPageFrame->GetDrawObjs();
+if (pPageDrawObjs)
+{
+for (const auto pObject : 

  1   2   >