[Libreoffice-bugs] [Bug 60251] [META] ACCESSIBILITY: Tracking Windows OS accessibility and AT issues

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60251
Bug 60251 depends on bug 156679, which changed state.

Bug 156679 Summary: nvda#15264: NVDA keeps saying "file ///C/.../myfile.ods" in 
LibreOffice Calc
https://bugs.documentfoundation.org/show_bug.cgi?id=156679

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

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

[Libreoffice-commits] core.git: sc/qa

2023-08-08 Thread Tomaž Vajngerl (via logerrit)
 sc/qa/unit/tiledrendering/tiledrendering.cxx |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 3dcf2acadb847ec76d7e1dff3b4b730a64b52c41
Author: Tomaž Vajngerl 
AuthorDate: Tue Aug 8 23:15:59 2023 +0200
Commit: Tomaž Vajngerl 
CommitDate: Wed Aug 9 07:33:26 2023 +0200

sc: fix tiledrendering test execution order issue with comment IDs

ScPostIt::mnLastPostItId is a static variable, which is used for
generated the comment ID. In the test we depend that the ID are
consistent and start with 1, but as we have more tests that insert
comments this can be a problem.

testCommentCallback and testCommentCellCopyPaste, both add comments
and the expected execution order is testCommentCallback and then
testCommentCellCopyPaste, so the latter test resets the mnLastPostItId
variable to 1, so the IDs are consistent. In a LO 7.6 build for
Fedora, it happened that the testCommentCellCopyPaste was executed
first and testCommentCallback afterwards, but in testCommentCallback
we do not reset the mnLastPostItId and the build failed.

This change resets the mnLastPostItId also in testCommentCallback.

Change-Id: I123b2f47b0d6177b2f5bdefcf6d8e9c301a7413b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155498
Tested-by: Tomaž Vajngerl 
Reviewed-by: Tomaž Vajngerl 

diff --git a/sc/qa/unit/tiledrendering/tiledrendering.cxx 
b/sc/qa/unit/tiledrendering/tiledrendering.cxx
index c0fc36968c58..35304683e724 100644
--- a/sc/qa/unit/tiledrendering/tiledrendering.cxx
+++ b/sc/qa/unit/tiledrendering/tiledrendering.cxx
@@ -1079,6 +1079,9 @@ CPPUNIT_TEST_FIXTURE(ScTiledRenderingTest, 
testCommentCallback)
 // Comments callback are emitted only if tiled annotations are off
 comphelper::LibreOfficeKit::setTiledAnnotations(false);
 
+// FIXME: Hack because previous tests do not destroy ScDocument(with 
annotations) on exit (?).
+ScPostIt::mnLastPostItId = 1;
+
 {
 ScModelObj* pModelObj = createDoc("small.ods");
 ViewCallback aView1;


[Libreoffice-bugs] [Bug 156675] unhelpful appearing message when changing sheet

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156675

Joseph Hipp  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |NOTOURBUG

--- Comment #2 from Joseph Hipp  ---
I am very glad of the content of your response, which is almost correct. I
tested myself and found out that I definately do not doubleclick. This problem
is a problem that is a not-always-problem. So I put your idea in my head and
tried, started the computer again, then only writer calc. The problem was there
again. But I thought better and remembered that the doubleclick also exists
sometimes elsewhere, for example when I change programs with the mouse, it is
as if I make twice alt-tab, which then works correcly. So I put another mouse
in the usb. And the problem has gone. So the problem is resolved.

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

[Libreoffice-bugs] [Bug 156689] Deleting Columns May Remove Styling

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156689

ady  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from ady  ---
I can confirm.

Additionally, after the STR from comment 0, I add some steps to show how this
is some quirk:

1. Enter "aaa" in cell A1
2. Set a style to cell/column A1 (e.g. Heading 1)
3. Delete column B (note: this is to the right side of the right-most column)

As pointed, the style in A1 is no longer there.

4. Undo all the 3 actions ([CTRL]+[Z] times 3)
5. Redo all the 3 actions ([CTRL]+[Y] times 3)

Now the style _is_ still applied.

Please also note that the following slightly different steps do not show the
problem:

1. Enter "aaa" in cell A1
2. Set a style to cell/column A1 (e.g. Heading 1)

3. Cell C1: 1

4. Delete column B (note: this is to the _left_ side of the right-most column;
i.e. some middle column).

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

[Libreoffice-commits] core.git: 3 commits - winaccessibility/source

2023-08-08 Thread Michael Weghorn (via logerrit)
 winaccessibility/source/UAccCOM/AccTextBase.cxx |   16 -
 winaccessibility/source/UAccCOM/MAccessible.cxx |   76 ++--
 2 files changed, 48 insertions(+), 44 deletions(-)

New commits:
commit d1d07992a89ba503f1d457a8f79926063f4d3f9c
Author: Michael Weghorn 
AuthorDate: Tue Aug 8 19:43:09 2023 +0100
Commit: Michael Weghorn 
CommitDate: Wed Aug 9 06:14:52 2023 +0200

tdf#156679 wina11y: Convert screen to local coords as needed

When `AccTextBase::get_offsetAtPoint` gets called with
screen coordinates, convert them to local coordinates
within the text object first, because that is what
`XAccessibleText::getIndexAtPoint` expects.

Not doing so resulted in NVDA failing to create
a TextInfo object in the mouse event handler [1]
when hovering over a Calc cell containing text,
because the method would always return an offset
of -1.

With this change in place, NVDA now announces the
text when hovering over the text and mouse tracking
is enabled in NVDA (which is the case by default).
Other than with Microsoft Excel, the text is only
announced when the mouse is actually over the text,
not over free space in the cell, which might be
because Excel uses UIA and the UIA equivalent,
`ITextProvider::RangeFromPoint` [2] shall also return
the index of the closest character when the point
itself is not over the actual bounds of any
character.

[1] 
https://github.com/nvaccess/nvda/blob/a198c9b5f27e47ff2830f77c833eec584078dfd8/source/NVDAObjects/__init__.py#L1209
[2] 
https://learn.microsoft.com/en-us/windows/win32/api/uiautomationcore/nf-uiautomationcore-itextprovider-rangefrompoint

Change-Id: I1e4ab2dd3dace5fea1de2eef67a91fe3c31218a9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155492
Tested-by: Jenkins
Reviewed-by: Michael Weghorn 

diff --git a/winaccessibility/source/UAccCOM/AccTextBase.cxx 
b/winaccessibility/source/UAccCOM/AccTextBase.cxx
index 183ec3467655..b70b13c0a980 100644
--- a/winaccessibility/source/UAccCOM/AccTextBase.cxx
+++ b/winaccessibility/source/UAccCOM/AccTextBase.cxx
@@ -417,7 +417,7 @@ COM_DECLSPEC_NOTHROW STDMETHODIMP 
CAccTextBase::get_nSelections(long * nSelectio
* @param offset Variant to accept offset.
* @return Result.
 */
-COM_DECLSPEC_NOTHROW STDMETHODIMP CAccTextBase::get_offsetAtPoint(long x, long 
y, IA2CoordinateType, long * offset)
+COM_DECLSPEC_NOTHROW STDMETHODIMP CAccTextBase::get_offsetAtPoint(long x, long 
y, IA2CoordinateType coordType, long * offset)
 {
 SolarMutexGuard g;
 
@@ -432,6 +432,20 @@ COM_DECLSPEC_NOTHROW STDMETHODIMP 
CAccTextBase::get_offsetAtPoint(long x, long y
 css::awt::Point point;
 point.X = x;
 point.Y = y;
+
+if (coordType == IA2_COORDTYPE_SCREEN_RELATIVE)
+{
+// convert from screen to local coordinates
+Reference xContext = 
pUNOInterface->getAccessibleContext();
+Reference xComponent(xContext, UNO_QUERY);
+if (!xComponent.is())
+return S_FALSE;
+
+css::awt::Point aObjectPos = xComponent->getLocationOnScreen();
+point.X -= aObjectPos.X;
+point.Y -= aObjectPos.Y;
+}
+
 *offset = GetXInterface()->getIndexAtPoint(point);
 return S_OK;
 
commit 39302875c27d4cf4246bb7520ed90abcf0af777a
Author: Michael Weghorn 
AuthorDate: Tue Aug 8 18:27:16 2023 +0100
Commit: Michael Weghorn 
CommitDate: Wed Aug 9 06:14:44 2023 +0200

tdf#156679 wina11y: Implement accHitTest via UNO equivalent

Instead of manually iterating over the children
and checking whether the given position is in the location
that they're in in `CMAccessible::accHitTest`, use
`XAccessibleComponent::XAccessibleComponent`, which
provides exactly the functionality that's needed.
(This is similar to what the Qt-based VCL plugins
on Linux do, s. `QtAccessibleWidget::childAt`.)

This also drops the need to limit this to objects
that have at most a certain amount of children
for performance reasons (previously 256) and thus
makes this work e.g. also to identify a Calc cell
that the mouse pointer is currently over while previously
the document was returned, as could be seen also in
NVDA's Python console:

1) start NVDA
2) hover over a Calc cell
3) press NVDA+Ctrl+Z to capture snapshot variables
4) check what NVDA identifies as the mouse object
   via the Python Console:

Before:

>>> mouse

>>> mouse.name
'Untitled 1 - LibreOfficeDev Spreadsheets'
>>> mouse.role


With this change in place:

>>> mouse


>>> mouse.name
>>> mouse.role


The cell's text still isn't announced by NVDA even
with mouse tracking enabled, but that's another issue.

Change-Id: Ib821020cef6303ab786c4c3fc3ccd917398214f1
Reviewed-on: 

[Libreoffice-bugs] [Bug 156689] New: Deleting Columns May Remove Styling

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156689

Bug ID: 156689
   Summary: Deleting Columns May Remove Styling
   Product: LibreOffice
   Version: 7.5.5.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: yosi3260+li...@gmail.com

Description:
Deleting columns to the right of the rightmost column in a used cell range can
revert the style of the rightmost column.

Steps to Reproduce:
1.Enter "aaa" in cell A1
2.Set a style to cell A1 (e.g. Heading 1)
3.delete column B

Actual Results:
Column A has been unstyled

Expected Results:
Don't undo the style of the irrelevant column A .


Reproducible: Sometimes


User Profile Reset: No

Additional Info:
Sometimes it doesn't happen when you insert a column

Deleting multiple columns may remove styles for columns other than the
rightmost column


Version: 7.5.5.2 (X86_64) / LibreOffice Community
Build ID: ca8fe7424262805f223b9a2334bc7181abbcbf5e
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: ja-JP (ja_JP); UI: ja-JP
Calc: CL threaded

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

[Libreoffice-bugs] [Bug 156688] Test

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156688

m.a.riosv  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

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

[Libreoffice-bugs] [Bug 156688] Test

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156688

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID

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

[Libreoffice-bugs] [Bug 156687] PNG with alpha, flip and set transparency, shows original image shadow during present

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156687

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #3 from m.a.riosv  ---
Created attachment 188861
  --> https://bugs.documentfoundation.org/attachment.cgi?id=188861=edit
Screen shoot

I think I can't see the extra shadow.

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

[Libreoffice-bugs] [Bug 156684] Crashes when saving xlsx or docx

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156684

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #2 from m.a.riosv  ---
Please attach a sample file where it happens.

Please test in safe mode, Menu/Help/Restart in Safe Mode

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

[Libreoffice-bugs] [Bug 156683] Crash in: comphelper::AccessibleEventNotifier::revokeClientNotifyDisposing(unsigned int, com::sun::star::uno::Reference const&)

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156683

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #2 from m.a.riosv  ---
I can't repro
Version: 7.6.0.2 (X86_64) / LibreOffice Community
Build ID: 41d6f628ba3f046f16b5fa9fa8db8d4c2ab3b582
CPU threads: 16; OS: Windows 10.0 Build 22621; 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.

[Libreoffice-bugs] [Bug 156501] Calc View Headers setting is not saved to file

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156501

ady  changed:

   What|Removed |Added

 CC||er...@redhat.com,
   ||heiko.tietze@documentfounda
   ||tion.org

--- Comment #9 from ady  ---
(In reply to raal from comment #8)
> 147914: tdf#97551 Added marker and hint for formula to Calc |
> https://gerrit.libreoffice.org/c/core/+/147914

Considering that tdf#97551 is related to Calc's UI (and UX), and that Heiko and
Eike (among others) participated in that gerrit issue, I am CC'ing both of them
to this bug 156501. That is, even though this bug 156501 is about SAVING (and a
behavior that is worse than it was before LO 7.6).

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

[Libreoffice-bugs] [Bug 156451] Search updates

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156451

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Libreoffice-bugs] [Bug 156464] FIREBIRD: AutoValue shows 0 for all new Entries in Query with Alias

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156464

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 156652] Export to pdf increases size by 6

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156652

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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

[Libreoffice-bugs] [Bug 156646] When using fonts other than pure English fonts, the font height appears to be an unintended height

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156646

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.

[Libreoffice-bugs] [Bug 156652] Export to pdf increases size by 6

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156652

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

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

[Libreoffice-bugs] [Bug 156443] Windows: alt+numpad doesn't work for Unicode decimal codes, like in WordPad/Word

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156443

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 156646] When using fonts other than pure English fonts, the font height appears to be an unintended height

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156646

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

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

[Libreoffice-bugs] [Bug 156623] - Android Viewer can't open any office files and crashed

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156623

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

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

[Libreoffice-bugs] [Bug 156623] - Android Viewer can't open any office files and crashed

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156623

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.

[Libreoffice-bugs] [Bug 152951] LibreCalc - Cntrl+C from keyboard puts program in a stall, then (Not Responding) mode

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152951

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

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.

[Libreoffice-bugs] [Bug 152951] LibreCalc - Cntrl+C from keyboard puts program in a stall, then (Not Responding) mode

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152951

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 149448] Line spacing

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149448

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 149448] Line spacing

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149448

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

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.

[Libreoffice-bugs] [Bug 148809] Animation (wipe) is corrupted by flickering that resembles a QR code!

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148809

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 148750] Installation crashes

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148750

--- Comment #4 from QA Administrators  ---
Dear wnezwisky,

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.

[Libreoffice-bugs] [Bug 148746] spell checker is distracted by upper/lower case

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148746

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 148809] Animation (wipe) is corrupted by flickering that resembles a QR code!

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148809

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

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.

[Libreoffice-bugs] [Bug 148738] Selected all object does not resize to the same size.[CALC]

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148738

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 148738] Selected all object does not resize to the same size.[CALC]

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148738

--- Comment #3 from QA Administrators  ---
Dear MARINA-SODA,

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.

[Libreoffice-bugs] [Bug 148746] spell checker is distracted by upper/lower case

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148746

--- Comment #6 from QA Administrators  ---
Dear soloturn,

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.

[Libreoffice-bugs] [Bug 148439] Business card alignment and spacing problem

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148439

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 148439] Business card alignment and spacing problem

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148439

--- Comment #6 from QA Administrators  ---
Dear Thomas Törnblom,

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.

[Libreoffice-bugs] [Bug 129661] [META] Right-To-Left (RTL) user interface issues

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129661
Bug 129661 depends on bug 104318, which changed state.

Bug 104318 Summary: CTL, CJK, and Western Language controls in the GUI cause 
confusion, handling languages and script selection needs rework--comfortable 
for a "Global" user community
https://bugs.documentfoundation.org/show_bug.cgi?id=104318

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 112139] [META] Options dialog's Language settings bugs and enhancements

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112139
Bug 112139 depends on bug 104318, which changed state.

Bug 104318 Summary: CTL, CJK, and Western Language controls in the GUI cause 
confusion, handling languages and script selection needs rework--comfortable 
for a "Global" user community
https://bugs.documentfoundation.org/show_bug.cgi?id=104318

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 104318] CTL, CJK, and Western Language controls in the GUI cause confusion, handling languages and script selection needs rework--comfortable for a "Global" user community

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104318

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 104318] CTL, CJK, and Western Language controls in the GUI cause confusion, handling languages and script selection needs rework--comfortable for a "Global" user community

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104318

--- Comment #31 from QA Administrators  ---
Dear Toby Anderson,

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.

[Libreoffice-bugs] [Bug 153473] Program crashes when scrolling using Kensington Slimblade trackball or scrollbars

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153473

--- Comment #2 from QA Administrators  ---
Dear Joseph Cardana,

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.

[Libreoffice-bugs] [Bug 153428] Elements Sidebar area should be open itself when I insert Math formula into Writer document

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153428

--- Comment #3 from QA Administrators  ---
Dear Roman Kuznetsov,

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.

[Libreoffice-bugs] [Bug 50434] Text and connecting lines disappear when saving docx files

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=50434

--- Comment #24 from QA Administrators  ---
Dear Arno,

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.

[Libreoffice-bugs] [Bug 123783] Figure from .docx looses the top text

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123783

--- Comment #5 from QA Administrators  ---
Dear Marco A.G.Pinto,

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.

[Libreoffice-bugs] [Bug 156658] Problem with one embedded Calc table in writer documents

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156658

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #2 from m.a.riosv  ---
Maybe you have not resize properly.

It's not the same, resize the object in writer, than enter in the object and
resize it in calc.

Please take a look it this can solve your issue.

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

[Libreoffice-bugs] [Bug 156655] Long text in merged cells not painted

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156655

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #2 from m.a.riosv  ---
I'm sure what we must expect when the first cell of a merged range is hidden.

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

[Libreoffice-bugs] [Bug 156650] Secondary Y-axis does not get saved

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156650

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m.a.riosv  ---
What file format to you use to save?
Can you attach a sample file in which adding the Y axes doesn't get save.

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

[Libreoffice-bugs] [Bug 156632] [PRINTING] Print right after Replace All tries to prints an empty selection

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156632

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #3 from m.a.riosv  ---
Maybe related to
Menu/Tools/Options/LibreOffice Writer/Others – Print automatically inserted
blank pages.

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

[Libreoffice-bugs] [Bug 156667] Calc: setting number of decimal places to 0 directly has no effect, unless you set it to 1 first

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156667

--- Comment #3 from bobby.1.de...@gmail.com ---
Agreed - this works normally in Windows. Could someone please try this in
Linux?

Here is a Linux-specific quirk that seems related: select Format => Cells then
Alt-D (decimal). Type 0 (zero) and press enter. Nothing happens. In Windows,
pressing Enter is equivalent to clicking OK.

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

[Libreoffice-bugs] [Bug 156623] - Android Viewer can't open any office files and crashed

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156623

--- Comment #22 from eric li  ---
and I found every phone and every first time to install it by android studio
there are some error message below ,,but second time installtion always
disappear

- beginning of crash
2023-08-07 11:17:12.793 15639-15639 DEBUG   pid-15639  
 A  Process name is org.example.libreoffice, not key_process
2023-08-07 11:17:12.793 15639-15639 DEBUG   pid-15639  
 A  Cmdline: org.example.libreoffice
2023-08-07 11:17:12.793 15639-15639 DEBUG   pid-15639  
 A  pid: 3400, tid: 15629, name: Thread-3  >>>
org.example.libreoffice <<<
2023-08-07 11:17:12.793 15639-15639 DEBUG   pid-15639  
 A#02 pc 07059f83 
/data/app/~~Xu529EASU2X5uTjW_EAVKw==/org.example.libreoffice-8RSFLQ1eiEysGXcniuxLjg==/lib/arm/liblo-native-code.so
(BuildId: be1dd2076c6e0c7957e47bebade93e27b4527802)
2023-08-07 11:17:12.793 15639-15639 DEBUG   pid-15639  
 A#03 pc 0705a107 
/data/app/~~Xu529EASU2X5uTjW_EAVKw==/org.example.libreoffice-8RSFLQ1eiEysGXcniuxLjg==/lib/arm/liblo-native-code.so
(BuildId: be1dd2076c6e0c7957e47bebade93e27b4527802)
2023-08-07 11:17:12.793 15639-15639 DEBUG   pid-15639  
 A#04 pc 0705a015 
/data/app/~~Xu529EASU2X5uTjW_EAVKw==/org.example.libreoffice-8RSFLQ1eiEysGXcniuxLjg==/lib/arm/liblo-native-code.so
(BuildId: be1dd2076c6e0c7957e47bebade93e27b4527802)
2023-08-07 11:17:12.793 15639-15639 DEBUG   pid-15639  
 A#05 pc 07059b89 
/data/app/~~Xu529EASU2X5uTjW_EAVKw==/org.example.libreoffice-8RSFLQ1eiEysGXcniuxLjg==/lib/arm/liblo-native-code.so
(BuildId: be1dd2076c6e0c7957e47bebade93e27b4527802)
2023-08-07 11:17:12.793 15639-15639 DEBUG   pid-15639  
 A#06 pc 03e3672d 
/data/app/~~Xu529EASU2X5uTjW_EAVKw==/org.example.libreoffice-8RSFLQ1eiEysGXcniuxLjg==/lib/arm/liblo-native-code.so
(BuildId: be1dd2076c6e0c7957e47bebade93e27b4527802)
2023-08-07 11:17:12.793 15639-15639 DEBUG   pid-15639  
 A#07 pc 03e369e7 
/data/app/~~Xu529EASU2X5uTjW_EAVKw==/org.example.libreoffice-8RSFLQ1eiEysGXcniuxLjg==/lib/arm/liblo-native-code.so
(BuildId: be1dd2076c6e0c7957e47bebade93e27b4527802)
- beginning of system
2023-08-09 10:37:33.159  2701-3205  PackageInstallerSession system_server  
 E  com.android.packageinstaller drops manifest attribute
android:installLocation in base.apk for org.example.libreoffice
2023-08-09 10:37:33.403  2701-3071  PackageMan...ilsExtImpl system_server  
 E  Fix up user restrict data of pkg: org.example.libreoffice
2023-08-09 10:37:33.465  2701-3071  ArtManagerService   system_server  
 E  Failed to prepare profile for
org.example.libreoffice:/data/app/~~6nr69JgFgjPPC9aVDi8NMA==/org.example.libreoffice-pCxmG8Z2c76_jli9vfA3SQ==/base.apk
2023-08-09 10:37:33.470  2701-3071  ArtManagerService   system_server  
 E  Failed to prepare profile for
org.example.libreoffice:/data/app/~~6nr69JgFgjPPC9aVDi8NMA==/org.example.libreoffice-pCxmG8Z2c76_jli9vfA3SQ==/base.apk
2023-08-09 10:37:34.811  2701-2926  OplusThermalStats   system_server  
 E  Error getting package info: org.example.libreoffice
2023-08-09 10:37:35.008 29140-29140 Quality
org.example.libreoffice  I  Odex status:io-error-no-oat
filter:run-from-apk reason:unknown
location:/data/app/~~6nr69JgFgjPPC9aVDi8NMA==/org.example.libreoffice-pCxmG8Z2c76_jli9vfA3SQ==/base.apk
cost:157
2023-08-09 10:37:35.083 29140-29140 ConfigurationController
org.example.libreoffice  I  handleConfigurationChanged: true,
config: {1.0 ??mcc??mnc [zh_CN] ldltr sw360dp w360dp h748dp 480dpi nrml long
hdr widecg port finger -keyb/v/h -nav/h winConfig={ mBounds=Rect(0, 0 - 1080,
2400) mAppBounds=Rect(0, 107 - 1080, 2352) mMaxBounds=Rect(0, 0 - 1080, 2400)
mDisplayRotation=ROTATION_0 mWindowingMode=fullscreen
mDisplayWindowingMode=fullscreen mActivityType=undefined mAlwaysOnTop=undefined
mRotation=ROTATION_0} as.2 s.24279 fontWeightAdjustment=0mThemeChanged= 0,
mThemeChangedFlags= 0, mFlipFont= 0, mAccessibleChanged= -1, mUxIconConfig=
3468921665126662176, mMaterialColor= 0, mUserId= 0, mFontUserId= 0,
mFontVariationSettings= 226, mFoldingAngle = -1.0, mIconPackName= ,
mDarkModeBackgroundMaxL= 0.0, mDarkModeDialogBgMaxL= 27.0,
mDarkModeForegroundMinL= 100.0, mOplusConfigType= 1, mOplusChangedConfigs= 0,
OpSans= 0, mBurmeseFontFlag= 2, mFlag= 0} 
   
, curconfig: {1.0 ??mcc??mnc [zh_CN] ldltr sw360dp w360dp
h748dp 480dpi nrml long hdr widecg port finger -keyb/v/h 

[Libreoffice-bugs] [Bug 156623] - Android Viewer can't open any office files and crashed

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156623

--- Comment #21 from eric li  ---
(In reply to eric li from comment #19)
> (In reply to Michael Weghorn from comment #18)
> > (In reply to eric li from comment #17)
> >  
> > > Process: org.example.libreoffice, PID: 12476
> > >   
> > >   
> > > java.lang.UnsatisfiedLinkError: dlopen failed: library "libnspr4.so" not
> > > found
> > 
> > What does your autogen.input look like oOr what arguments to you pass to
> > `./autogen.sh` manually) and what is the device that the app is running on?
> > 
> > I've seen similar error messages when running the app on a device of a
> > different architecture than the app was built for (e.g. running on an x86_64
> > AVD when the app was built for x86).
> 
> 
> 
> the phone I used mostly is Honor 60/Android 12/Qualcomm snapdragon 778G
> 
> the autogen.input is below:
> 
> shanreal@eric-Inspiron-7559:/home/eric/libreoffice$ more autogen.input
> --with-distro=LibreOfficeAndroid
> --with-android-sdk=/home/eric/Android/Sdk
> --with-android-ndk=/home/eric/Android/Sdk/ndk/25.2.9519653
> --with-jdk-home=/usr/lib/jvm/java-17-openjdk-amd64

and I actully tried many different phone with android studio ,,the results are
same,,like oppo reno8 pro5G/android 13/  etc

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

[Libreoffice-bugs] [Bug 156688] Test

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156688

--- Comment #1 from ss  ---
123

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

[Libreoffice-commits] core.git: framework/source

2023-08-08 Thread Justin Luth (via logerrit)
 framework/source/services/autorecovery.cxx |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit c3cf88f73e29a79f890782b31d1ecc6ed1c376ea
Author: Justin Luth 
AuthorDate: Tue Aug 8 11:44:48 2023 -0400
Commit: Justin Luth 
CommitDate: Wed Aug 9 04:10:48 2023 +0200

tdf#144512 autorecovery: only wait once for user idle

If we currently are in a user idle state, then don't delay
any recovery / autosave's until a future idle timeout.

Change-Id: Ie3953bb7456370d046b76a4cad816498dbfc85e5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155462
Tested-by: Jenkins
Reviewed-by: Justin Luth 

diff --git a/framework/source/services/autorecovery.cxx 
b/framework/source/services/autorecovery.cxx
index dbf0c803aab6..b4e898952aad 100644
--- a/framework/source/services/autorecovery.cxx
+++ b/framework/source/services/autorecovery.cxx
@@ -2327,7 +2327,9 @@ IMPL_LINK_NOARG(AutoRecovery, implts_timerExpired, Timer 
*, void)
 // force save of all currently open documents
 // The called method returns an info, if and how this
 // timer must be restarted.
-AutoRecovery::ETimerType eSuggestedTimer = 
implts_saveDocs(true/*bAllowUserIdleLoop*/, false);
+const bool bIsAlreadyIdle(m_eTimerType == 
AutoRecovery::E_POLL_FOR_USER_IDLE);
+AutoRecovery::ETimerType eSuggestedTimer
+= implts_saveDocs(/*AllowUserIdleLoop=*/!bIsAlreadyIdle, 
/*RemoveLockFiles=*/false);
 
 // If timer is not used for "short callbacks" (means polling
 // for special states) ... reset the handle state of all


[Libreoffice-bugs] [Bug 156688] New: Test

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156688

Bug ID: 156688
   Summary: Test
   Product: LibreOffice
   Version: 3.3.0 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: shelan...@gmail.com

Description:
Test Description

Steps to Reproduce:
1.11
2.22
3.33

Actual Results:
123

Expected Results:
456


Reproducible: Always


User Profile Reset: No

Additional Info:
789

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

[Libreoffice-bugs] [Bug 156623] - Android Viewer can't open any office files and crashed

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156623

--- Comment #20 from eric li  ---
below is the libosetting.gradle,,you see the directory is wrong:
// created by Makefile.shared - your changes will be overridden
ext {
liboSrcRoot = '/home/shanreal/libreoffice/core-master'
liboJniLibsdir  =
'/home/shanreal/libreoffice/core-master/android/jniLibs'
liboWorkdir = '/home/shanreal/libreoffice/core-master/workdir'
liboInstdir = '/home/shanreal/libreoffice/core-master/instdir'
liboEtcFolder   = 'program'
liboUreMiscFolder   = 'program'
liboSharedResFolder = 'program/resource'
liboUREJavaFolder   = 'program/classes'
liboShareJavaFolder = 'program/classes'
liboExampleDocument =
'/home/shanreal/libreoffice/core-master/android/default-document/example.odt'
liboVersionMajor= '24'
liboVersionMinor= '2'
liboGitFullCommit   = ''
}
android {
ndkPath '/home/shanreal/Android/Sdk/ndk/25.2.9519653'
}
android.defaultConfig {
applicationId 'org.example.libreoffice'
archivesBaseName = 'LibreOfficeViewer'
minSdkVersion = 19
versionCode project.hasProperty('cmdVersionCode') ?
cmdVersionCode.toInteger() : 1
versionName '24.2.0.0.alpha0+//shanreal'
}


I modified the liboJniLibsdir  =
'/home/shanreal/libreoffice/core-master/android/jniLibs/armeabi-v7a'

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

[Libreoffice-bugs] [Bug 156623] - Android Viewer can't open any office files and crashed

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156623

--- Comment #19 from eric li  ---
(In reply to Michael Weghorn from comment #18)
> (In reply to eric li from comment #17)
>  
> > Process: org.example.libreoffice, PID: 12476
> > 
> > java.lang.UnsatisfiedLinkError: dlopen failed: library "libnspr4.so" not
> > found
> 
> What does your autogen.input look like oOr what arguments to you pass to
> `./autogen.sh` manually) and what is the device that the app is running on?
> 
> I've seen similar error messages when running the app on a device of a
> different architecture than the app was built for (e.g. running on an x86_64
> AVD when the app was built for x86).



the phone I used mostly is Honor 60/Android 12/Qualcomm snapdragon 778G

the autogen.input is below:

shanreal@eric-Inspiron-7559:/home/eric/libreoffice$ more autogen.input
--with-distro=LibreOfficeAndroid
--with-android-sdk=/home/eric/Android/Sdk
--with-android-ndk=/home/eric/Android/Sdk/ndk/25.2.9519653
--with-jdk-home=/usr/lib/jvm/java-17-openjdk-amd64

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

[Libreoffice-bugs] [Bug 156646] When using fonts other than pure English fonts, the font height appears to be an unintended height

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156646

--- Comment #4 from Kyeongrak Choi  ---
(In reply to ⁨خالد حسني⁩ from comment #2)
> Please attach a test document.

Here's a document for testing.
Along with Docx and ODT documents, files converted to PDF in Msoffice,
Libreoffice 5.3.0.0 alpha, Libreoffice 5.3.0.0 beta 1, and Libreoffice 7.6.0.3
are also uploaded.
I uploaded it by including the font in the docx file. (Malgun gothic)

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

[Libreoffice-bugs] [Bug 156646] When using fonts other than pure English fonts, the font height appears to be an unintended height

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156646

--- Comment #3 from Kyeongrak Choi  ---
Created attachment 188860
  --> https://bugs.documentfoundation.org/attachment.cgi?id=188860=edit
Font test set with PDF converted.

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

[Libreoffice-bugs] [Bug 156607] Lost footnotes in DOCX file

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156607

--- Comment #6 from m.a.riosv  ---
Es que contestar a nadie.

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

[Libreoffice-bugs] [Bug 156675] unhelpful appearing message when changing sheet

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156675

Rafael Lima  changed:

   What|Removed |Added

 CC||rafael.palma.l...@gmail.com
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from Rafael Lima  ---
Aren't you accidentally double-clicking the sheet name when switching to
another sheet? This triggers the "Rename sheet" dialog.

BTW what LO version are you using?

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

[Libreoffice-bugs] [Bug 156687] PNG with alpha, flip and set transparency, shows original image shadow during present

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156687

--- Comment #2 from DLLee  ---
Created attachment 188859
  --> https://bugs.documentfoundation.org/attachment.cgi?id=188859=edit
Present Result screenshot

The present result screenshot.

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

[Libreoffice-bugs] [Bug 156671] Icon needed for "?" help button in the sidebar

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156671

Rafael Lima  changed:

   What|Removed |Added

 Blocks||122247


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=122247
[Bug 122247] [META] Icon requests
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 122247] [META] Icon requests

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122247

Rafael Lima  changed:

   What|Removed |Added

 Depends on||156671


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=156671
[Bug 156671] Icon needed for "?" help button in the sidebar
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 156687] PNG with alpha, flip and set transparency, shows original image shadow during present

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156687

DLLee  changed:

   What|Removed |Added

 CC||dllee...@gmail.com

--- Comment #1 from DLLee  ---
Created attachment 188858
  --> https://bugs.documentfoundation.org/attachment.cgi?id=188858=edit
sample odp file

open the sample odp file, and press F5 to present, the filp + set transparency
image will show extra shadow.

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

[Libreoffice-bugs] [Bug 156686] AutoFilter arrows have white background in kf5

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156686

Rafael Lima  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=15
   ||6629

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

[Libreoffice-bugs] [Bug 156629] Font and highlighting color buttons in sidebar have white background after transparency -> alpha change

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156629

Rafael Lima  changed:

   What|Removed |Added

 CC||rafael.palma.l...@gmail.com
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=15
   ||6686

--- Comment #11 from Rafael Lima  ---
Maybe the same thing is happening here? (bug 156686)

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

[Libreoffice-bugs] [Bug 156687] New: PNG with alpha, flip and set transparency, shows original image shadow during present

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156687

Bug ID: 156687
   Summary: PNG with alpha, flip and set transparency, shows
original image shadow during present
   Product: LibreOffice
   Version: 7.5.4.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: dllee...@gmail.com

Description:
PNG with alpha, flip and set transparency, shows normal during editing, but
shows the original image shadow during present.
If only flip without set transparency, the result is OK. Both flip and set
transparency will cause the problem. 
If the png image flips twice, the result is OK.

Steps to Reproduce:
1. insert a png image with alpha channel
2. copy it and paste a new instance
3. set the new instance to transparency, like 50%, and flip it H or V.
4. present F5 to present this slide
(or open the sample odp file and press F5)

Actual Results:
The flip + set transparency image shows the extra shadow, its shape is the
original image.

Expected Results:
The flip + set transparency image should show normal during present, just like
during editing.


Reproducible: Always


User Profile Reset: Yes

Additional Info:
Version: 7.5.4.2 (x86) / LibreOffice Community
Build ID: 36ccfdc35048b057fd9854c757a8b67ec53977b6
CPU threads: 8; OS: Windows 10.0 Build 22621; UI render: Skia/Raster; VCL: win
Locale: zh-TW (zh_TW); UI: zh-TW
Calc: CL threaded

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

[Libreoffice-bugs] [Bug 156686] AutoFilter arrows have white background in kf5

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156686

Rafael Lima  changed:

   What|Removed |Added

   Keywords||bibisectRequest,
   ||possibleRegression

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

[Libreoffice-bugs] [Bug 156686] New: AutoFilter arrows have white background in kf5

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156686

Bug ID: 156686
   Summary: AutoFilter arrows have white background in kf5
   Product: LibreOffice
   Version: 24.2.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rafael.palma.l...@gmail.com

Created attachment 188857
  --> https://bugs.documentfoundation.org/attachment.cgi?id=188857=edit
Screenshot showing the problem

Using kf5 in LO 24.2 the arrows in the AutoFilter are black with an unnecessary
white background. In gtk3 there's no such white background.

The problem does not happen in LO 7.5.x.

See attached image for more info.

System info

Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 3ce30d6a1ea1cd3e392cb21fa37102795578eeb7
CPU threads: 16; OS: Linux 6.2; UI render: default; VCL: kf5 (cairo+xcb)
Locale: pt-BR (pt_BR.UTF-8); UI: en-US
Calc: CL threaded

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

[Libreoffice-bugs] [Bug 85660] FILESAVE: Improve source control compatibility of flat ODF files

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85660

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||mj66l...@duck.com

--- Comment #6 from Stéphane Guillou (stragu) 
 ---
*** Bug 156428 has been marked as a duplicate of this bug. ***

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

[Libreoffice-bugs] [Bug 156428] fodt format borks on git merging

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156428

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Whiteboard| QA:needsComment|
 Status|UNCONFIRMED |RESOLVED
 CC||stephane.guillou@libreoffic
   ||e.org

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
Thank you for the suggestion. Improving flat ODF for easier version control is
already tracked in bug 85660, so marking as a duplicate.

*** This bug has been marked as a duplicate of bug 85660 ***

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

[Libreoffice-bugs] [Bug 104844] Writer split table function when more than one row header. Only one row is picked for next table

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104844

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||will.fried...@gmail.com

--- Comment #5 from Stéphane Guillou (stragu) 
 ---
*** Bug 156678 has been marked as a duplicate of this bug. ***

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

[Libreoffice-bugs] [Bug 156678] Table | Split Table | Copy Heading only copies first heading row instead of all heading rows

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156678

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||stephane.guillou@libreoffic
   ||e.org
 Resolution|--- |DUPLICATE
 Status|UNCONFIRMED |RESOLVED

--- Comment #2 from Stéphane Guillou (stragu) 
 ---
Thank you William for the clear report.
The issue is already tracked in bug 104844, so marking as duplicate.

*** This bug has been marked as a duplicate of bug 104844 ***

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

[Libreoffice-bugs] [Bug 156334] Switching to another slide should hide the Table toolbar

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156334

Aaron  changed:

   What|Removed |Added

 CC||aaronth...@gmail.com

--- Comment #2 from Aaron  ---
Thank you for reporting the bug. I can not reproduce the bug in

Version: 7.5.5.2 (X86_64) / LibreOffice Community
Build ID: ca8fe7424262805f223b9a2334bc7181abbcbf5e
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: fr-FR (fr_FR); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 142489] Do not display "Table" toolbar by default in Impress

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142489

Rafael Lima  changed:

   What|Removed |Added

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

--- Comment #5 from Rafael Lima  ---
This patch fixes this issue:
https://gerrit.libreoffice.org/c/core/+/155473

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

[Libreoffice-bugs] [Bug 153131] Copy causes Calc to Freeze on Windows 11

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153131

Aaron  changed:

   What|Removed |Added

 CC||judithfee...@gmail.com

--- Comment #29 from Aaron  ---
*** Bug 156500 has been marked as a duplicate of this bug. ***

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

[Libreoffice-bugs] [Bug 156500] EDITING Copy (Ctrl-C or from menu) causes Calc to freeze

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156500

Aaron  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|UNCONFIRMED |RESOLVED
 CC||aaronth...@gmail.com

--- Comment #12 from Aaron  ---
Thank you for reporting the bug. This seems to be a duplicate of Bug 153131. I
will be closing this as RESOLVED DUPLICATE as the other thread provides some
more information.

*** This bug has been marked as a duplicate of bug 153131 ***

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

[Libreoffice-bugs] [Bug 156685] New: Default font color in tables is white over white background (font color should be black)

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156685

Bug ID: 156685
   Summary: Default font color in tables is white over white
background (font color should be black)
   Product: LibreOffice
   Version: 24.2.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rafael.palma.l...@gmail.com

For some reason, in master (24.2) the default font color of tables in Impress
changed to white. It should be black (as it has always been).

Steps to reproduce
0) Open Impress on a clear profile, with default settings
1) Create a blank presentation in Impress
2) Insert a table (Insert - Table) with any size
3) Type something inside the table
4) Notice that the font color is white over a white background

This seems a regression to me. It appears the default table template has
changed to using white font color, but I have to check it out.

Tested with

Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 3ce30d6a1ea1cd3e392cb21fa37102795578eeb7
CPU threads: 16; OS: Linux 6.2; UI render: default; VCL: kf5 (cairo+xcb)
Locale: pt-BR (pt_BR.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 156684] Crashes when saving xlsx or docx

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156684

--- Comment #1 from Michael  ---
It only seems to happen in Windows 11, not in Windows 10.
My Windows 11 is a fresh install from scratch.

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

[Libreoffice-bugs] [Bug 156665] Submit button is not working

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156665

--- Comment #2 from LeroyG  ---
It seems related with Form Design.

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

[Libreoffice-bugs] [Bug 156684] New: Crashes when saving xlsx or docx

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156684

Bug ID: 156684
   Summary: Crashes when saving xlsx or docx
   Product: LibreOffice
   Version: 7.5.5.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mikwin...@hotmail.com

Description:
These crashes only appear on version 7.5.x, not on Version 7.4.x . Every time I
try to save a document (or spreadsheet) Office crashes and tries to recover the
file which crashes again while saving again even if "saved as". 
I have currently uninstalled Version 7.5.5 and installed 7.4.5 again.
My computer is running Windows 11 latest Version (22H2 -22621.2134).

Steps to Reproduce:
1.open spreadsheet as xlsx
2.save spreadsheet as xlsx (crashes)
3.saving as XLS works

Actual Results:
Office successfully recovers the changed file but crashes again when saving as
xlsx, but not as xls.

Expected Results:
file is saved as xls, but not as xlsx


Reproducible: Always


User Profile Reset: No

Additional Info:
no longer available as I have installed an older version in 7.4.5

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

[Libreoffice-bugs] [Bug 156678] Table | Split Table | Copy Heading only copies first heading row instead of all heading rows

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156678

LeroyG  changed:

   What|Removed |Added

Version|7.5.3.2 release |7.4.7.2 release

--- Comment #1 from LeroyG  ---
Reproducible with:

Version: 7.4.7.2 (x64) / LibreOffice Community
Build ID: 723314e595e8007d3cf785c16538505a1c878ca5
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: es-MX (es_ES); UI: en-US
Calc: CL

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

[Libreoffice-bugs] [Bug 156667] Calc: setting number of decimal places to 0 directly has no effect, unless you set it to 1 first

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156667

--- Comment #2 from LeroyG  ---
Not reproducible on Windows 10.0 with:

Version: 7.4.7.2 (x64) / LibreOffice Community
Build ID: 723314e595e8007d3cf785c16538505a1c878ca5
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: es-MX (es_ES); UI: en-US
Calc: CL

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

[Libreoffice-bugs] [Bug 35538] Handling of fonts with more than 4 styles (R/B/I/BI) is suboptimal

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=35538

--- Comment #78 from Eyal Rozenberg  ---
(In reply to João Paulo from comment #77)
Not quite following you... There is no "Book" variant at the link you gave. LO
splits Merriweather Sans into 3 families: the original name, "ExtraBold" and
"Light", with the ExtraBold having two styles (ExtraBold and ExtraBold Italic)
with the others having 4 styles (R/B/I/BI).

(PS - At the link, it tells you to follow a link to a newer and up-to-date
version of the fonts: https://github.com/SorkinType/Merriweather-Sans )

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

[Libreoffice-bugs] [Bug 156681] The underline line in Writer doesn't match the length of the sentence, even in simple cases.

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156681

--- Comment #3 from LeroyG  ---
Related question:

https://ask.libreoffice.org/t/problema-con-la-sottolineatura-del-testo-errore-di-visualizzazione/94045/18

I can confirm that there is an issue with the zoom level.

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

[Libreoffice-bugs] [Bug 66792] UI: Better integration of font styles into the toolbar

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=66792

--- Comment #29 from Eyal Rozenberg  ---
(In reply to ⁨خالد حسني⁩ from comment #28)

One is allowed to file an enhancement request dependent on a capability which
has been recognized as missing, and depend on it existing (which is why this
issue was marked NEW before you closed it). However - I'll let it go because:
1. This is a minor technicality and 2. The place to argue is indeed the main
bug.

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

[Libreoffice-bugs] [Bug 156683] Crash in: comphelper::AccessibleEventNotifier::revokeClientNotifyDisposing(unsigned int, com::sun::star::uno::Reference const&)

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156683

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
(no repro in 7.5.5.2)

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

[Libreoffice-bugs] [Bug 155149] Crash when exiting cell edit mode in Calc (Tab, Enter or click out)

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155149

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=15
   ||6683

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

[Libreoffice-bugs] [Bug 156209] Font size increases when copying from cell in edit mode and pasting into another in non-edit mode

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156209

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=15
   ||6683

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

[Libreoffice-bugs] [Bug 133092] [META] Crash bugs

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133092

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||156683


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=156683
[Bug 156683] Crash in:
comphelper::AccessibleEventNotifier::revokeClientNotifyDisposing(unsigned int,
com::sun::star::uno::Reference const&)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 103182] [META] GTK3-specific bugs

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103182

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||156683


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=156683
[Bug 156683] Crash in:
comphelper::AccessibleEventNotifier::revokeClientNotifyDisposing(unsigned int,
com::sun::star::uno::Reference const&)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 156683] New: Crash in: comphelper::AccessibleEventNotifier::revokeClientNotifyDisposing(unsigned int, com::sun::star::uno::Reference const&)

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156683

Bug ID: 156683
   Summary: Crash in:
comphelper::AccessibleEventNotifier::revokeClientNotif
yDisposing(unsigned int,
com::sun::star::uno::Reference const&)
   Product: LibreOffice
   Version: 7.6.0.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: notBibisectable, regression
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: stephane.guil...@libreoffice.org
Blocks: 103182, 133092

Created attachment 188856
  --> https://bugs.documentfoundation.org/attachment.cgi?id=188856=edit
backtrace without debug symbols

This bug was filed from the crash reporting server and is
br-5dddbbb0-0ccd-4622-b1e4-8632bf974151.
=

Steps:
1. Open Calc
2. Write some text in cell A1
3. Select all text in formula bar, Ctrl + C
4. Paste into cell B1
5. Close LO, don't save
6. Reopen: crash reporter dialog

Repro in:

Version: 7.6.0.2 (X86_64) / LibreOffice Community
Build ID: 41d6f628ba3f046f16b5fa9fa8db8d4c2ab3b582
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

But not in a recent master build.

7.6 crash report:
https://crashreport.libreoffice.org/stats/crash_details/5dddbbb0-0ccd-4622-b1e4-8632bf974151

No crash with gen VCL. No crash with bibisect repo or debug build, so no
bibisect nor debug symbols in backtrace.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103182
[Bug 103182] [META] GTK3-specific bugs
https://bugs.documentfoundation.org/show_bug.cgi?id=133092
[Bug 133092] [META] Crash bugs
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 137080] LibreOffice should use built-in OpenType Feature Small Capitals (smcp tag) when the typeface has it instead of simulated Small Capitals

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137080

João Paulo  changed:

   What|Removed |Added

Summary|Make LibreOffice use|LibreOffice should use
   |built-in OpenType Feature   |built-in OpenType Feature
   |Small Capitals (smcp tag)   |Small Capitals (smcp tag)
   |when the typeface has it|when the typeface has it
   |instead of simulated Small  |instead of simulated Small
   |Capitals|Capitals
 CC||joaopauloag-freedesktop@yah
   ||oo.com.br

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

[Libreoffice-bugs] [Bug 128883] FORMATTING A custom character style with regular text, applied to a word in a custom paragraph style with bold text: the word remains bold.

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128883

João Paulo  changed:

   What|Removed |Added

 CC||joaopauloag-freedesktop@yah
   ||oo.com.br

--- Comment #7 from João Paulo  ---
I can confirm that this bug is still present on:

Version: 7.5.5.2 (X86_64) / LibreOffice Community
Build ID: ca8fe7424262805f223b9a2334bc7181abbcbf5e
CPU threads: 8; OS: Windows 10.0 Build 22621; UI render: Skia/Raster; VCL: win
Locale: pt-BR (pt_BR); UI: pt-BR
Calc: threaded

The steps I did to reproduce it:

1. Download and install Merriweather Sans font family from
"https://www.fontsquirrel.com/fonts/merriweather-sans;;
2. Create a new text document and change the Default Paragraph Style to
Merriweather Sans Bold, Book, Extra Bold or anything that is not Regular;
3. Type something as "1) This text is shown in bold, 2) this text will be shown
as Regular";
4. Create a new character style "Regular character style" and set the typeface
to be Merriweather Sans Regular;
5. Apply the newly created "Regular character style" to the "2) this text will
be shown as Regular" already typed;
6. It should show the text with the Regular character style instead of the
Bold/Book/Extra Bold or anything that was set in Step 2.

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

[Libreoffice-bugs] [Bug 156209] Font size increases when copying from cell in edit mode and pasting into another in non-edit mode

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156209

--- Comment #9 from Stéphane Guillou (stragu) 
 ---
I can also repro from a new file:

1. Open Calc
2. Write something in A1
3. Copy from cell or formula bar
4. Paste B1 without entering edit mode

Original is 10 points, pasted as 17.6 pt on a cell that has the default 10 pt.

Also reproduced with gen VCL.

I also see it starting with 0558926c2f9201a12b4c46efc36b8a4080af4d46 (commit
9c584e98f5658f58dc0348a1745c6f8512161155 in linux-64-7.6 bibisect repo)

Noel, can you please have a look?

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

Re: Tests failures trying to package LO in Fedora

2023-08-08 Thread Tomaž Vajngerl
Hi,

On Mon, Aug 7, 2023 at 10:26 AM  wrote:
>
> Hi,
>
> I'm one of the new Fedora maintainers for LibreOffice.  In preparation
> for including LibreOffice 7.6.x in Fedora 39, we're working on 7.6.0.2.
> We've worked out some updated dependency issues and adopted a few
> patches from git, but are hitting some test failures. For example:
>
> [_RUN_] testCommentCallback::TestBody
> /builddir/build/BUILD/libreoffice-7.6.0.1/sc/qa/unit/tiledrendering/tiledrendering.cxx:1105:testCommentCallback::TestBody
> equality assertion failed
> - Expected: 1
> - Actual  : 10

I think I found what's the issue here and [1] should fix it and [2]
and [3] are backports to libreoffice-7-6 and libreoffice-7-6-0
branches. Please review libreoffice-7-6, libreoffice-7-6-0 (ASAP).

The issue seems to be the test execution order. To get the wrong
comment ID there must be some previous tests that deal with comments
executed before the test, something which would influence the
mnLastPostItId static variable. There are 2 tests in that test class
- testCommentCallback and testCommentCellCopyPaste that both add
comments and would influence the variable. I checked and indeed the
testCommentCellCopyPaste is run before testCommentCallback - which is
probably strange because testCommentCallback is defined after
testCommentCellCopyPaste. This is confirmed as
testCommentCellCopyPaste resets the static variable to 1 as the
incremented IDs were probably the issue in the past, but
testCommentCallback doesn't do this - so normally testCommentCallback
is executed before testCommentCellCopyPaste, but in this case the
order is different for some reason. As the test should depend on the
order anyway I have just reset the mnLastPostItId also in the
testCommentCallback and this should fix the problem here.

I wonder if the testFormulaRefUpdate could also be influenced by a
change in execution order? Might be good to investigate...

[1] https://gerrit.libreoffice.org/c/core/+/155498
[2] https://gerrit.libreoffice.org/c/core/+/155471
[3] https://gerrit.libreoffice.org/c/core/+/155472


> Thank you.
>
> Mattia

Best Regards, Tomaž


[Libreoffice-bugs] [Bug 35538] Handling of fonts with more than 4 styles (R/B/I/BI) is suboptimal

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=35538

João Paulo  changed:

   What|Removed |Added

 CC||joaopauloag-freedesktop@yah
   ||oo.com.br

--- Comment #77 from João Paulo  ---
(In reply to ⁨خالد حسني⁩ from comment #74)
> We only support R/B/I/BI font family model for various legacy and
> compatibility reasons, and that is why families with styles other than these
> four get handles as separate font families. This is intentional and not a
> bug.

As of Version: 7.5.5.2 (X86_64) / LibreOffice Community, Build ID:
ca8fe7424262805f223b9a2334bc7181abbcbf5e, (or even earlier) LibreOffice
supports more than the R/B/I/BI, as it supports Book / Book Italic / Regular /
Italic / Bold / Bold Italic / Extra Bold / Extra Bold Italic when the
Merriweather Sans font family is selected (available at
"https://www.fontsquirrel.com/fonts/merriweather-sans; and at
"https://github.com/EbenSorkin/Merriweather-Sans;).

However, it doesn't handle the font family well when the character style
applied changes the typeface from Book (a lighter variant) to Regular (a bolder
variant):  It keeps the typeface as Book instead of changing it to Regular.

Steps to reproduce:

1. Create a new document and change the Default Paragraph Style to use the
Merriweather Sans Book typeface.
2. Create or modify a Character Style to use the Merriweather Sans Regular
typeface.
3. Type some text and then apply the new or modified Character Style and see
that the typeface does not change.
4. Directly apply the change to the character by going to Menu, Format,
Character, Font, and select Merriweather Sans Regular, then the typeface will
change.

Is it the same bug as the original poster wrote about or is it a new, but
related, bug?

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

[Libreoffice-bugs] [Bug 62032] Cannot specify a Paragraph Style to use a numbering level (over 1) for a chosen Numbering (List) style (See comment 35)

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=62032

--- Comment #64 from Justin L  ---
(In reply to Buovjaga from comment #63)
> Any other change needed or can this be closed as fixed?

More changes are needed. The UI is only experimental (comment 56)

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

[Libreoffice-bugs] [Bug 156682] New: Floating table "loops" back to top of the cell, hangs when continuing inserting paragraphs

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156682

Bug ID: 156682
   Summary: Floating table "loops" back to top of the cell, hangs
when continuing inserting paragraphs
   Product: LibreOffice
   Version: 7.6.0.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: stephane.guil...@libreoffice.org
CC: vmik...@collabora.com
Blocks: 139532

Following up from bug 156349:

1. Open attachment attachment 188431
2. Place cursor at the end of cell B1
3. Press enter many times

Results:
- Row 8 spills to second page, OK
- Once row 7 is supposed to split over the two pages, the second part
disappears
- Once cursor reaches the bottom of the page, it then "loops" back to the top
of the cell
- Press enter once more when it reaches below "Eins": cursor disappears,
LibreOffice hangs.

Repro in recent master build:

Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 42364fbfafaa95773c073cc080142b64ec1786fb
CPU threads: 8; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Calc: threaded

As well as 7.6.0.2.

No repro in 7.5.5.2 (cell would continue spilling below the page indefinitely,
in the background) but won't mark as a regression given that floating table
support is new.

Miklos, can you please have a look?


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=139532
[Bug 139532] [META] DOCX Floating table related issues
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 139532] [META] DOCX Floating table related issues

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139532

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||156682


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=156682
[Bug 156682] Floating table "loops" back to top of the cell, hangs when
continuing inserting paragraphs
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 156492] Alt+Enter in last (rightmost merged) cell in a table doesn't add paragraph below the table

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156492

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=15
   ||6515

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

[Libreoffice-ux-advise] [Bug 156515] Writer tables exit from table shortcut Alt+Enter must be type twice to exit table

2023-08-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156515

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

Version|5.4.0.3 release |Inherited From OOo
 OS|Windows (All)   |All
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=15
   ||6492
 CC||stephane.guillou@libreoffic
   ||e.org

--- Comment #11 from Stéphane Guillou (stragu) 
 ---
My guess is that a conflict in shortcuts is reason enough to look for a fix.
But it's true that opening a new ticket might be a good idea, with clear steps,
a link to attachment 188669, and a preferred solution.

Conflict already existed in OOo 3.3.

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

  1   2   3   4   >