[Bug 159023] Crash in SwTextFrame::MapModelToView(SwTextNode const*, int) const after pasting table and navigating left in footnote

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159023

Michael Stahl (allotropia)  changed:

   What|Removed |Added

 Resolution|--- |FIXED
   Keywords|wantBacktrace   |
 Status|NEW |RESOLVED
   Assignee|libreoffice-b...@lists.free |michael.st...@allotropia.de
   |desktop.org |

--- Comment #8 from Michael Stahl (allotropia)  ---
okay thanks not sure what i did, perhaps used the wrong cursor key :)

turns out the table is in fact pasted, but as just 4 paragraphs, and the
problem was that the layout frames for those paragraphs were not created.

fixed on master

next problem is that after pasting, Undo will crash with 

sw/source/core/txtnode/thints.cxx:1346: bool
SwTextNode::InsertHint(SwTextAttr*, SetAttrMode): Assertion `pAttr &&
pAttr->GetStart() <= Len()' failed.

apparently this is the crash that
https://bugs.documentfoundation.org/show_bug.cgi?id=159025#c6 is about and it's
a pre-existing one (can repro in LO 6.1) so should be tracked there, not here.

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

[Bug 103164] [META] Footnote and Endnote bugs and enhancements

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103164
Bug 103164 depends on bug 159023, which changed state.

Bug 159023 Summary: Crash in SwTextFrame::MapModelToView(SwTextNode const*, 
int) const after pasting table and navigating left in footnote
https://bugs.documentfoundation.org/show_bug.cgi?id=159023

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

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

[Bug 133092] [META] Crash bugs

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133092
Bug 133092 depends on bug 159023, which changed state.

Bug 159023 Summary: Crash in SwTextFrame::MapModelToView(SwTextNode const*, 
int) const after pasting table and navigating left in footnote
https://bugs.documentfoundation.org/show_bug.cgi?id=159023

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

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

[Bug 159023] Crash in SwTextFrame::MapModelToView(SwTextNode const*, int) const after pasting table and navigating left in footnote

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159023

--- Comment #7 from Commit Notification 
 ---
Michael Stahl committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/4b68824d18316762a6afc35d355221e0228aebf8

tdf#159023 sw_redlinehide: fix layout frames copying table into footer

It will be available in 24.8.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

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

[Bug 159023] Crash in SwTextFrame::MapModelToView(SwTextNode const*, int) const after pasting table and navigating left in footnote

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159023

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:24.8.0

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

[Bug 159082] Calc INDIRECT() links faulty in folders other than ~/documents on FILEOPEN

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159082

--- Comment #4 from Jochen Schüttler  ---
The warning I described is flaky. The other issue is not.

So using my testfiles, you should see 2 links in ->edit->"links to external
files" (or whatever it is called in English). You say there is only one link?
Then maybe filesystem Btrfs is necessary to see the bug, or it is related to
the German localization.

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

[Bug 146619] Remove unused #includes from C/C++ files

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146619

--- Comment #25 from Commit Notification 
 ---
Gabor Kelemen committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/f351faa3f71f3a1f6225b3d3c015b4d3a1373e38

tdf#146619 Recheck xmloff/*hxx with IWYU

It will be available in 24.8.0.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

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

[Bug 159316] New: Really help assigning alternating formats to table rows and columns

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159316

Bug ID: 159316
   Summary: Really help assigning alternating formats to table
rows and columns
   Product: LibreOffice
   Version: 7.5.7.1 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: u20230...@gmail.com

Trying to format table rows with alternating backgrounds (or generally:
alternating row formats), I realized that It's *very hard* to do:
The only way to do it seems to be using "auto format" of tables, so I tried it.
However none of the predefined formats did fir my needs, so I wondered:
How does "auto format" actually work? Unfortunately you cannot "edit" any of
the pre-existing autoformat templates, and when adding a custom autoformat, it
simply copies the existing table format (it seems).

So I tried applying a pre-existing "auto format" to my table, then inspecting
the formats to see how it is done (to be able to modify it before saving it as
my new "auto format").  However I was not able to find the magic that
implements the format assigned, not even in macros.

In contrast considering current HTML and CSS, it's rather easy to do it there:
table tbody tr:nth-of-type(even) { background-color: #ccc }
(Assign a different background color to all even table rows that make the
"body" of a table)

I think Writer should have similar possibilities: For rows and for columns.
Autoformat as it is now may be a nice idea, but the current implementation is
close to being useless.

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

[Bug 146487] FILEOPEN PPTX: empty chart title shows as text "chart title" in Impress (while not in 365)

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146487

--- Comment #12 from Commit Notification 
 ---
Samuel Mehrbrodt committed a patch related to this issue.
It has been pushed to "libreoffice-24-2":

https://git.libreoffice.org/core/commit/13be76e4d58db7ff892dff900e7734ac424bd8dd

tdf#146487 Don't show generic diagram title when there is an empty title given

It will be available in 24.2.1.

The patch should be included in the daily builds available at
https://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
https://wiki.documentfoundation.org/Testing_Daily_Builds

Affected users are encouraged to test the fix and report feedback.

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

[Bug 146487] FILEOPEN PPTX: empty chart title shows as text "chart title" in Impress (while not in 365)

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146487

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:24.8.0   |target:24.8.0 target:24.2.1

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

[Bug 146487] FILEOPEN PPTX: empty chart title shows as text "chart title" in Impress (while not in 365)

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146487

--- Comment #11 from Samuel Mehrbrodt (allotropia) 
 ---
(In reply to Gerald Pfeifer from comment #10)

> Samuel, are you planning to also push this into 24.02?

Yes, backport is pending: https://gerrit.libreoffice.org/c/core/+/162270

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

[Bug 159313] Saving word completion options is broken

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159313

Mike Kaganski  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |mikekagan...@hotmail.com
   |desktop.org |
 Ever confirmed|0   |1
 Status|UNCONFIRMED |ASSIGNED

--- Comment #1 from Mike Kaganski  ---
https://gerrit.libreoffice.org/c/core/+/162359

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

[Bug 158177] Refresh cart page and it's count should not be cleared

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158177

--- Comment #1 from Ghenappa  ---
Refresh page and cart count should not be cleared

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

[Bug 159289] Libre Office Writer does not handle/render Watermark B for Legal Pleadings when opening WPD Files (FILEOPEN)

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159289

--- Comment #7 from Zach Simmons  ---
Versions I used are libwpd 0.10.3 and librevenge 0.0.5, since no version field
is available for Document Liberation Project.

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

[Bug 156983] Autocorrect > Word Completion not working on Windows 11

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156983

Buovjaga  changed:

   What|Removed |Added

   See Also|https://bugs.documentfounda |
   |tion.org/show_bug.cgi?id=15 |
   |8139|
 Resolution|WORKSFORME  |DUPLICATE

--- Comment #12 from Buovjaga  ---


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

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

[Bug 156983] Autocorrect > Word Completion not working on Windows 11

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156983

--- Comment #11 from Mike Kaganski  ---
(In reply to HK from comment #10)
> In the meantime we detected, that Word Completion is well functioning if
> Windows 11 is cleanly installed.
> So i have a problem with my Win11 Image, that we distributes by our clients.

I believe that this is not correct. Your problem is definitely a duplicate of
bug 158139; it is debugged, the cause is identified, and fixed. The analysis
have shown that the problem was a changed Windows-specific function, that
started to take more window messages into account. That means, that *in some
cases* (there there is no messages from the extended list in the queue), the
function will continue working; but that is not stable, and a bit changed
situation (like heavier system load, or faster typing, or infinite other
factors) can easily break it.

Anyway, either WORKSFORME or FIXED (bug 158139), this should be OK now.

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

[Bug 159135] With "outline folding", strange cursor beavihor

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159135

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

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

[Bug 155618] table behaviour can't be customized

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155618

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

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

[Bug 159006] Font size change during Japanese input

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159006

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.

[Bug 159135] With "outline folding", strange cursor beavihor

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159135

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.

[Bug 159006] Font size change during Japanese input

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159006

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

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

[Bug 156382] table border display at the top of pages

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156382

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

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

[Bug 136434] FORMATTING: redundancy in content.xml

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136434

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 156044] Spacing dialog does not appear on click when in compressed/dropdown toolbar

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156044

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 156044] Spacing dialog does not appear on click when in compressed/dropdown toolbar

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156044

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

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 156049] Mouse Cursor freezing when Acrobat open in another visible window.

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156049

--- Comment #2 from QA Administrators  ---
Dear Wil Hostman,

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 154910] Converting a pdf from A3 word file with page breaks using libre office overlaps the pages and makes it hard to read

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154910

--- Comment #9 from QA Administrators  ---
Dear shridhar.sanjeevi,

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 149357] Libre office Menu items tic marc icon nor clear while using 4K display

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=149357

--- Comment #3 from QA Administrators  ---
Dear Paul Arakkal Joseph,

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 158485] difficulty of adjusting row height with borders

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158485

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

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

[Bug 136434] FORMATTING: redundancy in content.xml

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136434

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

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

[Bug 146478] vcldemo and other vcl examples exit with: "Aborted (core dumped)"

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146478

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

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 143635] Ambiguous meaning of 'Original size' in Image Properties type tab

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143635

--- Comment #8 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 129920] FILEOPEN DOCX Raised subscript characters top part not visible

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129920

--- Comment #6 from QA Administrators  ---
Dear NISZ LibreOffice Team,

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 87906] Insert > Image should allow adding ODG

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87906

Aron Budea  changed:

   What|Removed |Added

 Blocks||108437
 CC||aron.bu...@gmail.com


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108437
[Bug 108437] [META] Image bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 108437] [META] Image bugs and enhancements

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108437

Aron Budea  changed:

   What|Removed |Added

 Depends on||87906


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=87906
[Bug 87906] Insert > Image should allow adding ODG
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 155875] [LOCALHELP] - Writer - Help pages about dialogs should provide instructions for the Tabbed UI

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155875

--- Comment #83 from Commit Notification 
 ---
Olivier Hallot committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/help/commit/3ca8deeebd0d2a5840ded258be060d59c2f2dd39

tdf#155875 UI cmds Format Text (cont)

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

[Bug 159315] New: Page Header : Image Width and Height are not saved

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159315

Bug ID: 159315
   Summary: Page Header : Image Width and Height are not saved
   Product: LibreOffice
   Version: 7.6.4.1 release
  Hardware: All
OS: macOS (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ibrahim.elsha...@gmail.com

Description:
When I set an image as background for the page with specific dimensions, the
changes does not take effect.

Steps to Reproduce:
1. Go to the Format Page dialog window -> Header tab
2. Click “More…"
3. Click the Background tab
4. Click Image
5. Click Add/Import -> Choose an image
6. Select the image from Image section
7. Style: Custom Position/size
8. Width: 1.00 cm
9. Height: 1.00 cm
10. Position: Top Left
11. Click OK
12. Go to Print Preview

Actual Results:
1. In the Print Preview: The image is showing in its original size.
2. Go back to where I set the settings: The Width and Height values are reset
to the image original size.

Expected Results:
The values set for the Width and Height should be stored.


Reproducible: Always


User Profile Reset: No

Additional Info:
Version: 7.6.4.1 (AARCH64) / LibreOffice Community
Build ID: e19e193f88cd6c0525a17fb7a176ed8e6a3e2aa1
CPU threads: 10; OS: Mac OS X 14.2.1; UI render: Skia/Metal; VCL: osx
Locale: en-CA (en_CA.UTF-8); UI: en-US
Calc: threaded

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

[Bug 84831] some icons not have a information message box

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84831

--- Comment #12 from kledo5  ---
Drift Hunters https://drift-hunters.co . Show all your skills extreme driving
and drifting burn rubber on the race track.

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

[Bug 159307] "Cannot find a Certificate Manager" shows up even though a certificate manager IS installed.

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159307

Patrick Luby  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |plub...@libreoffice.org
   |desktop.org |

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

[Bug 159314] New: Change thickness/styling of the selection cell highlight

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159314

Bug ID: 159314
   Summary: Change thickness/styling of the selection cell
highlight
   Product: LibreOffice
   Version: 7.5.8.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: hel...@tretas.org

Description:
The selection cell highlight (references) is very thin and difficult to see.
Example: https://i.imgur.com/4zIOH7o.png (linux).

At least from my experience the display DPI does not influence this.

It would help to be able to configure this thickness and, possibly, further
style this, for example with area coloring, or use animated borders seen in
excel ( https://i.imgur.com/lXAkVpH.png ). The color we can already change in
the options dialog.

Steps to Reproduce:
1. Open a spreadsheet in calc
2. Type '=' or '+' in a cell and use the mouse or arrow keys to select another
cell


Actual Results:
The selection cell highlight is very thin (for me)

Expected Results:
I would like to spot the selection cell highlight without effort even if I'm
distracted by something else.


Reproducible: Always


User Profile Reset: Yes

Additional Info:
Tested in:

Version: 7.5.8.2 (X86_64) / LibreOffice Community
Build ID: f718d63693263970429a68f568db6046aaa9df01
CPU threads: 8; OS: Linux 6.5; UI render: default; VCL: qt5 (cairo+xcb)
Locale: en-DK (en_DK.UTF-8); UI: en-US
Calc: threaded

And:

Version: 7.4.5.1 (x64) / LibreOffice Community
Build ID: 9c0871452b3918c1019dde9bfac75448afc4b57f
CPU threads: 6; OS: Windows 10.0 Build 19045; UI render: default; VCL: win
Locale: pt-PT (pt_PT); UI: pt-PT
Calc: threaded

Windows screenshot: https://i.imgur.com/5jKac9m.png

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

[Bug 159307] "Cannot find a Certificate Manager" shows up even though a certificate manager IS installed.

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159307

Patrick Luby  changed:

   What|Removed |Added

 CC||arnaud.versini@libreoffice.
   ||org, noelgran...@gmail.com
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #2 from Patrick Luby  ---
OK. I looked at the source code for that button and it appears to me that macOS
was never implemented properly. It looks like this button can only handle
Windows and Linux executable paths and it cannot handle launching any macOS
applications like /Applications/GPG Keychain.app. Instead, the code tries to
launch a ".app" like it is a Terminal command such as "gpg" and that always
fails.

Note: launching of macOS applications needs to be launched using the
/usr/bin/open command. Also on macOS, if no preferred application is found, the
LibreOffice help documentation for that dialog states that the Keychain Access
application should be launched. But macOS is currently using Linux code:

https://cgit.freedesktop.org/libreoffice/core/commit/xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx?id=0c4913e03e8427a576138601958f2dbf13b8c37b

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

[Bug 136434] FORMATTING: redundancy in content.xml

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136434

--- Comment #24 from Christian Lehmann  ---
I have finally gotten around to do the test. To my understanding, there are
more than one issue involved here:

1) Can one shrink the size of an ODT file by saving it in ODF Format Version
1.3?
2) Does the content.xml of an ODT file contain redundant styles of the kind
"











[Paragraph breaks added for clarity!]

b) Adjacent stretches of running text are separately formated by the same
style, e.g.: 
xxx xxx xx xxx xxx

This should be: 
xxx xxx xx xxx xxx

I offer to continue this search for redundancies on condition that somebody is
willing to take care of them.

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

[Bug 159239] Closing the app while running a macro is silently blocked

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159239

Rafael Lima  changed:

   What|Removed |Added

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

--- Comment #1 from Rafael Lima  ---
So I tested the following from within the Basic IDE:

1) In the Basic IDE, I created a Sub and placed a breakpoint inside of it
2) I ran the macro and the breakpoint was reached
3) If I try to close the window via the X button, I get the message "The window
cannot be closed while BASIC is running." (this is OK)
4) If I try to close the window via File - Exit, nothing happens and I do not
get a message (a message should be shown as when the "X" button was clicked)

Then I ran the following test from within Calc (or any other LO application)

1) Open the Basic IDE and place a breakpoint in a Sub
2) From within Calc, run the macro (Tools - Macros - Run macro)
3) The breakpoint will be reached
4) If I click "X" in the Calc window, the window will close (I guess it
shouldn't close, right?)
5) Then I went back to the Basic IDE and pressed the Stop button (to stop the
running macro)
6) CRASH

Many things to fix here.

Tested with

Version: 7.6.4.1 (X86_64) / LibreOffice Community
Build ID: 60(Build:1)
CPU threads: 16; OS: Linux 6.5; UI render: default; VCL: kf5 (cairo+xcb)
Locale: pt-BR (pt_BR.UTF-8); UI: en-US
Ubuntu package version: 4:7.6.4-0ubuntu0.23.10.1
Calc: threaded

The exact same result happens in current master

Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 7850a7deb59b890c73dfd52bd5aced6a538e6349
CPU threads: 16; OS: Linux 6.5; 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.

[Bug 159307] "Cannot find a Certificate Manager" shows up even though a certificate manager IS installed.

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159307

Patrick Luby  changed:

   What|Removed |Added

 CC||plub...@libreoffice.org

--- Comment #1 from Patrick Luby  ---
I installed GPGTools and I see the same bug in LibreOffice 7.6.4.1.
Interestingly, in LibreOffice 24.2 (to be released in February 2024), the
"Start Certificate Manager" button is disabled.

One question: if you press the "Sign Document" button in the same dialog, do
you see a list of keys? Or is the list empty?

For me, after I launched GPGTools from the Finder, pressed the "New" toolbar
button, and created a key, pressing the "Sign Document" document showed the
keys that I had just added.

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

[Bug 159006] Font size change during Japanese input

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159006

--- Comment #2 from koutei-r@posteo.de ---
I already tested it with version 7.6 when I reported this and it still shows
this behaviour. As I said, 7.3.7.2 is the last version where it doesn’t happen.

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

[Bug 159302] In LO 24.2.0.2 writer, if you place an equation editor object in a line of text, is aligned way too low

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159302

raal  changed:

   What|Removed |Added

 OS|Windows (All)   |All
 CC||r...@post.cz
   Keywords|bibisectRequest |bibisected, bisected
  Regression By||Khaled Hosny

--- Comment #4 from raal  ---
This seems to have begun at the below commit in bibisect repository/OS
linux-64-24.2.
Adding Cc: to Khaled Hosny ; Could you possibly take a look at this one?
Thanks

d2575c3ead80bd3952b16690cf5ea4d817138dcd is the first bad commit
commit d2575c3ead80bd3952b16690cf5ea4d817138dcd
Author: Jenkins Build User 
Date:   Tue Sep 19 14:35:48 2023 +0200

source sha:9e92a17cb6e03beedeeca40bfc8524c2623d31eb

157044: starmath: Improve glyph positioning |
https://gerrit.libreoffice.org/c/core/+/157044

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

[Bug 159310] Serious problem: impossible to enter characters by Alt+NumericKeypad

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159310

--- Comment #2 from Mike Kaganski  ---
(In reply to Szasz-Fabian Jozsef from comment #0)
> 2. Try to enter the an ANSI symbol by typing Alt+numeric-keycode (eg.
> degree, Alt+0176)

... But indeed, it would be reasonable to consider a better method (available
both in LibreOffice, and e.g. in MS Word), which is typing the widely-known
hexadecimal Unicode of the symbol: U+B0, then pressing Alt+X. In unambiguous
cases, it's even enough to type B0 (without U+), and then Alt+X. The decimal
codes is just a legacy from pre-Unicode era (even though I have implemented
full Unicode range for Alt codes now).

The method is available since LibreOffice 5.1:
https://wiki.documentfoundation.org/ReleaseNotes/5.1#Unicode_character_input_with_Alt_+_X

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

[Bug 159313] New: Saving word completion options is broken

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159313

Bug ID: 159313
   Summary: Saving word completion options is broken
   Product: LibreOffice
   Version: 24.2.0.0 alpha0+
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: bisected, regression
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mikekagan...@hotmail.com

Since commit c4fc18308074634e9578ad12d94d937f259aa22a (Autocorrect: Add option
for autoformat bulleted lists after space, 2023-09-07), changing word
completion checkboxes (Enable word completion, Append space, Show tooltip) or
min. word length, pressing OK, and restarting LibreOffice gives the old values,
or some unexpected values.

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

[Bug 141578] Libreoffice unusable with different scale factors used for different screens in multimonitor setup (on kf5/qt5/qt6 vcl + wayland)

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141578

--- Comment #44 from Callegar  ---
Might be a good idea to default to gtk3 even on KDE, at least temporarily.

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

[Bug 155877] [LOCALHELP] - DRAW - Help pages about dialogs should provide instructions for the Tabbed UI

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=155877

--- Comment #8 from Commit Notification 
 ---
Dione Maddern committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/help/commit/367d8c48fc3d48aa9e08ac384b8f3b0c066bbea7

tdf#155877 Fix broken links in Format menu help pages

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

[Bug 158997] Calc Format>Columns>Optimal Width [OK] causes some columns to be too narrow

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158997

--- Comment #25 from OfficeUser  ---
Added testkit.

@Caolán: Please check and report calculated optimal width of columns B with
your patch.

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

[Bug 158997] Calc Format>Columns>Optimal Width [OK] causes some columns to be too narrow

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158997

--- Comment #24 from OfficeUser  ---
Created attachment 192092
  --> https://bugs.documentfoundation.org/attachment.cgi?id=192092&action=edit
kerning_optimal_cell_width_testkit.ods

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

[Bug 140293] first start under windows to startcenter fails

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140293

Mike Kaganski  changed:

   What|Removed |Added

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

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

[Bug 158139] Writer, Word Completion does not function

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158139

Mike Kaganski  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=14
   ||0293
   Assignee|libreoffice-b...@lists.free |mikekagan...@hotmail.com
   |desktop.org |

--- Comment #20 from Mike Kaganski  ---
https://gerrit.libreoffice.org/c/core/+/162350

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

[Bug 159312] New: FILESAVE Big tables that have been resized return to their original size when reloading

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159312

Bug ID: 159312
   Summary: FILESAVE Big tables that have been resized return to
their original size when reloading
   Product: LibreOffice
   Version: 7.6.4.1 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: p.cas@protonmail.com

Created attachment 192091
  --> https://bugs.documentfoundation.org/attachment.cgi?id=192091&action=edit
odp file with a tall table

A table usually can't be shrunk vertically below a certain point (i.e. the rows
can't be shrunk below a minimum height). This can be circumvented by selecting
the table and changing its point size (say, to 10pt): after this, the table can
be shrunk more than it could before.

After this resizing, when the file is saved, closed, and opened again, the
table returns to its original point size and to its original overall size (even
if the table with the new size is too big and partially goes below the edge of
the slide).

The problem might also be with the file _loading_, I can't be sure. The
attached file has been saved with a table that fits completely in the slide,
and with point size 10 (for the table itself), but goes back to 18pt table that
goes partially out of the slide when reloading the file.

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

[Bug 157135] LibreOffice 7.6 stalls/crashes under Windows 11 with Norwegian (Bokmål) locale when opening file dialog

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157135

--- Comment #53 from anilozturk1...@gmail.com ---
I'm having the identical issue with LibreOffice 7.6.4.1 on Windows 11, Turkish
locale.

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

[Bug 99671] [META] Gallery bugs and enhancements

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99671
Bug 99671 depends on bug 132810, which changed state.

Bug 132810 Summary: Gallery: Crash swlo!SwFEShell::SelectObj+0x46a when 
inserting a new shape with cursor still in textbox 
SwFrame::AppendDrawObj(SwAnchoredObject &)
https://bugs.documentfoundation.org/show_bug.cgi?id=132810

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |---

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

[Bug 105537] [META] Assertion failed crashes

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105537
Bug 105537 depends on bug 132810, which changed state.

Bug 132810 Summary: Gallery: Crash swlo!SwFEShell::SelectObj+0x46a when 
inserting a new shape with cursor still in textbox 
SwFrame::AppendDrawObj(SwAnchoredObject &)
https://bugs.documentfoundation.org/show_bug.cgi?id=132810

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |---

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

[Bug 122886] [META] Bugs with textboxes in shapes

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122886
Bug 122886 depends on bug 132810, which changed state.

Bug 132810 Summary: Gallery: Crash swlo!SwFEShell::SelectObj+0x46a when 
inserting a new shape with cursor still in textbox 
SwFrame::AppendDrawObj(SwAnchoredObject &)
https://bugs.documentfoundation.org/show_bug.cgi?id=132810

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|FIXED   |---

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

[Bug 158485] difficulty of adjusting row height with borders

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158485

--- Comment #4 from ksso  ---
Created attachment 192090
  --> https://bugs.documentfoundation.org/attachment.cgi?id=192090&action=edit
adjustment of cells with border

adjustment of cells with border

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

[Bug 158485] difficulty of adjusting row height with borders

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158485

--- Comment #3 from ksso  ---
Hi, just upload another video

https://drive.google.com/file/d/1ypxGRI41FWuSX_KFgQax7znkxZ-StU5-/view?usp=drive_link


thank you
also file attach

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

[Bug 156382] table border display at the top of pages

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156382

--- Comment #7 from ksso  ---
Created attachment 192089
  --> https://bugs.documentfoundation.org/attachment.cgi?id=192089&action=edit
file with table border

file with table border

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

[Bug 156382] table border display at the top of pages

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156382

--- Comment #6 from ksso  ---
Hi, I just uploaded another video in order to explain the event

https://drive.google.com/file/d/19iBjkKTpNFP459S8eROGqdPOOVijPCj5/view?usp=sharing

also attach

Thank you

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

[Bug 150641] Libre Office Modules crashed after data input and restart in recovery mode

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150641

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Resolution|FIXED   |---
 Status|RESOLVED|UNCONFIRMED

--- Comment #4 from Stéphane Guillou (stragu) 
 ---
MarRol, thanks for testing. However, if you never had reproduced the issue
before, we can't be sure the issue is indeed resolved for AndreD.
Setting back to unconfirmed. If AndreD can't reproduce anymore in a more recent
version, we can then close as "resolved - worksforme".

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

[Bug 159311] New: Use xdg-desktop portals instead of static filesystem permissions

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159311

Bug ID: 159311
   Summary: Use xdg-desktop portals instead of static filesystem
permissions
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: filters and storage
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: amanita+libreoff...@mailbox.org

The Flatpak needs very broad permissions over the Filesystem.

Files launched from a File Manager can always be opened by an app, and "Ctrl+O"
should invoke the Desktops xdg-portal for filepicker, mainly GNOME or KDE.

This would allow users to restrict any storage permissions of Libreoffice and
reduce attack surface.

As the Flatpak is now officially supported and distros like RHEL are starting
to deprecate their native packages, I think many people would be happy about
this change!

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

[Bug 72604] Fax-Wizard - Personal Data are only partial adopted

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=72604

Andreas Mantke  changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

--- Comment #19 from Andreas Mantke  ---
1: start Writer
2. choose wizards - fax
3. choose business fax - modern design
4. next dialog page of the wizard: deactivate the logo option
5. run the next steps of the wizard without any changes
6. save the created template

You will get a fax template without your name, phone number and your email
address in the head of the fax. The order of city and zip code is also wrong
(not localized).

Tested again with LibreOffice 7.6.

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

[Bug 41652] "NO-BREAK SPACE" (U+00A0) interpreted as fixed-width space

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=41652

dolez...@cvut.cz changed:

   What|Removed |Added

   Assignee|dolez...@cvut.cz|libreoffice-b...@lists.free
   ||desktop.org

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

[Bug 148702] In Arrow Styles tab of Line dialog, place Arrow Styles control first (before "title" control)

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148702

Akshay Warrier  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |aksmen...@gmail.com
   |desktop.org |

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

[Bug 148702] In Arrow Styles tab of Line dialog, place Arrow Styles control first (before "title" control)

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148702

Akshay Warrier  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED

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

[Bug 158139] Writer, Word Completion does not function

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158139

Buovjaga  changed:

   What|Removed |Added

Version|7.6.2.1 release |7.2.0.0.alpha0+
  Regression By||Luboš Luňák
   Keywords|possibleRegression  |bibisectNotNeeded,
   ||regression

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

[Bug 159308] When converting a docx file to pdf (using soffice -convert-to pdf), hyperlinks on the pictures are broken.

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159308

m_a_riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #5 from m_a_riosv  ---
Test if some link options to export with soffice can help.

https://help.libreoffice.org/latest/en-US/text/shared/guide/pdf_params.html?&DbPAR=SHARED&System=UNIX#:~:text=specifies%20that%20the%20bookmarks%20contained%20in%20the%20source%20libreoffice%20file%20should%20be%20exported%20to%20the%20pdf%20file%20as%20named%20destination.

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

[Bug 159173] Touchpad Scrolling not working in windows

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159173

--- Comment #10 from m_a_riosv  ---
Maybe there is some parameter in the touchpad driver, that affects.

Just in case, test modifying Menu/Tools/Options/LibreOffice/View - Graphics
output, deactivating/modifying skia options.

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

[Bug 159305] Word doc 2007 unordered list bug - tab from base level converts to ordered list

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159305

m_a_riosv  changed:

   What|Removed |Added

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

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

[Bug 159135] With "outline folding", strange cursor beavihor

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159135

Duns  changed:

   What|Removed |Added

 CC||fberto...@tiscali.it

--- Comment #2 from Duns  ---
Created attachment 192088
  --> https://bugs.documentfoundation.org/attachment.cgi?id=192088&action=edit
example file

if you open this file, and you try to apply the Block quotation style to a
paragraph (I use ctrl+q shortcut), the style will be applied to the desired
paragraph, but immediately the cursor will go to the header above (that
paragraph).
Provided that you have outline folding activated, of course.

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

[Bug 153117] Crash when opening a document associated with Writer from file browser (ARM Windows 11)

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153117

--- Comment #6 from MarRol777  ---
Unfortunately this Problem still exists in the latest 24.2 RC2.

Version: 24.2.0.2 (AARCH64) / LibreOffice Community
Build ID: b1fd3a6f0759c6f806568e15c957f97194bbec8f
CPU threads: 8; OS: Windows 10.0 Build 22621; UI render: default; VCL: win
Locale: de-DE (de_DE); UI: de-DE
Calc: threaded

OS: Windows 11 22H2 on arm64

Regards,
Marc

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

[Bug 159170] After adding extra slides FILESAVE gives error and causes a file which can't be repaired

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159170

--- Comment #1 from Freek de Kruijf  ---
I did some further experiments found that quite a large amount of space in the
/tmp folder was needed. With a presentation that contains first only one text
slide with three .png files and the 7 slides with an .mp4 (total 700MB), adding
a few simple text slides caused the problem I described.

I needed to start all over and got a presentation where the last 2 slides with
.mp4 did not fit anymore. Loading this presentation I found that 2.7GB of space
in /tmp was used out of 3.9GB available. Trying to add a 224MB .mp4 was
possible, but saving that presentation did not succeed.
I found in /tmp copies of the 6 .mp4 files and a folder, apparently with a
number (3) of copies of the presentation.

Most likely the problem is that extra space in /tmp is needed when saving the
presentation. That space is in this case not available.

Shouldn't the program recognize that not enough space is available and warn the
user and at least not damage the already present presentation. After the
warning the user can delete a slide and safely save the presentation.

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

[Bug 159173] Touchpad Scrolling not working in windows

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159173

--- Comment #9 from pahina8...@talmetry.com ---
(In reply to m_a_riosv from comment #8)
> Does this happen with any LibreOffice application?

just with libreoffice writer. all other libreoffice apps and libreoffice main
app (where all the previous document are shown) work fine.

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

[Bug 150641] Libre Office Modules crashed after data input and restart in recovery mode

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150641

MarRol777  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

--- Comment #3 from MarRol777  ---
Hello Andre,

again, after the Installation of 24.2 RC2 I can NOT reproduce this issue.
OS: Windows 11 on arm64

Version: 24.2.0.2 (AARCH64) / LibreOffice Community
Build ID: b1fd3a6f0759c6f806568e15c957f97194bbec8f
CPU threads: 8; OS: Windows 10.0 Build 22621; UI render: default; VCL: win
Locale: de-DE (de_DE); UI: de-DE
Calc: threaded

Regards,
Marc

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

[Bug 159305] Word doc 2007 unordered list bug - tab from base level converts to ordered list

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159305

--- Comment #7 from G Riggs  ---
Agreed. If this is expected Microsoft behavior, it's not a bug  It's dilly, but
not a bug.

Please close as resolved, and many thanks for the head's up.

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

[Bug 156400] FILEOPEN PPTX: rogue image element appears (in presentation mode only)

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156400

--- Comment #5 from Gerald Pfeifer  ---
(In reply to Samuel Mehrbrodt (allotropia) from comment #4)
> Probably a duplicate of bug 140912.

It looks like this still happens even with bug #140912 fixed:

  Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
  Build ID: 73bd04a71e741788a2f2f3b26cc46ddb6a361372
  CPU threads: 12; OS: Linux 6.6; UI render: default; VCL: gtk3
  Locale: en-US (en_US.UTF-8); UI: en-US

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

[Bug 159295] Calc cell color menu reverts to default upon entering data anywhere

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159295

m_a_riosv  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #6 from m_a_riosv  ---
Thanks for the confirmation.

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

[Bug 159305] Word doc 2007 unordered list bug - tab from base level converts to ordered list

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159305

--- Comment #6 from m_a_riosv  ---
Created attachment 192087
  --> https://bugs.documentfoundation.org/attachment.cgi?id=192087&action=edit
Screenshot list style

The list style has set up on the second level with numbers not bullets.
Same behavior with
Microsoft® Word para Microsoft 365 MSO (versión 2312 compilación
16.0.17126.20132) de 64 bits 

Edit list style and set up second and the rest of levels with bullet.

Not a bug for me.

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

[Bug 152524] macOS: LibreOffice crashes (gpgme / gpgmeio)

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152524

--- Comment #20 from Patrick Luby  ---
(In reply to steve from comment #19)
> Attempt at poor-mans bibisect (manually) with following results:
> OK 7.0.0.3
> OK 7.2.7.2
> OK 7.5.3.1
> OK 7.5.8.1
> OK 7.5.9.2
> NOT OK 7.6.0.1

I checked the LibreOffice code commit logs and LibreOffice uses the same
version - 1.8.0 - of the GPGME third party code so I think we can eliminate
changes in GPGME third party code.

But the one change in LibreOffice was I added the following patch starting in
LibreOffice 7.6:

https://cgit.freedesktop.org/libreoffice/core/commit/?id=28d736113317da3e6373f27d6ce5d75fd40d68e2

This patch does one thing: add the standard Homebrew and MacPorts paths onto
the end of the search path. So, my first guess is that you might have an old or
incompatible version of the gpg* commands in /opt/homebrew/bin or in
/opt/local/bin.

Is there any files in the output of the following Terminal commands?:

ls -l /opt/homebrew/bin/gpg*
ls -l /opt/local/bin/gpg*

I only have gpgme installed via Homebrew and below is the output on my machine:

ls -l /opt/local/bin/gpg*
lrwxr-xr-x  1 pluby  staff  29 Sep 29 09:54 /opt/homebrew/bin/gpg ->
../Cellar/gnupg/2.4.3/bin/gpg
lrwxr-xr-x  1 pluby  staff  35 Sep 29 09:54 /opt/homebrew/bin/gpg-agent ->
../Cellar/gnupg/2.4.3/bin/gpg-agent
lrwxr-xr-x  1 pluby  staff  34 Sep 29 09:54 /opt/homebrew/bin/gpg-card ->
../Cellar/gnupg/2.4.3/bin/gpg-card
lrwxr-xr-x  1 pluby  staff  43 Sep 29 09:54 /opt/homebrew/bin/gpg-connect-agent
-> ../Cellar/gnupg/2.4.3/bin/gpg-connect-agent
lrwxr-xr-x  1 pluby  staff  41 Sep 29 09:54 /opt/homebrew/bin/gpg-error ->
../Cellar/libgpg-error/1.47/bin/gpg-error
lrwxr-xr-x  1 pluby  staff  48 Sep 29 09:54 /opt/homebrew/bin/gpg-error-config
-> ../Cellar/libgpg-error/1.47/bin/gpg-error-config
lrwxr-xr-x  1 pluby  staff  40 Sep 29 09:54 /opt/homebrew/bin/gpg-wks-client ->
../Cellar/gnupg/2.4.3/bin/gpg-wks-client
lrwxr-xr-x  1 pluby  staff  40 Sep 29 09:54 /opt/homebrew/bin/gpg-wks-server ->
../Cellar/gnupg/2.4.3/bin/gpg-wks-server
lrwxr-xr-x  1 pluby  staff  33 Sep 29 09:54 /opt/homebrew/bin/gpgconf ->
../Cellar/gnupg/2.4.3/bin/gpgconf
lrwxr-xr-x  1 pluby  staff  38 Sep 29 09:54 /opt/homebrew/bin/gpgparsemail ->
../Cellar/gnupg/2.4.3/bin/gpgparsemail
lrwxr-xr-x  1 pluby  staff  44 Sep 29 09:54 /opt/homebrew/bin/gpgrt-config ->
../Cellar/libgpg-error/1.47/bin/gpgrt-config
lrwxr-xr-x  1 pluby  staff  32 Sep 29 09:54 /opt/homebrew/bin/gpgscm ->
../Cellar/gnupg/2.4.3/bin/gpgscm
lrwxr-xr-x  1 pluby  staff  31 Sep 29 09:54 /opt/homebrew/bin/gpgsm ->
../Cellar/gnupg/2.4.3/bin/gpgsm
lrwxr-xr-x  1 pluby  staff  34 Sep 29 09:54 /opt/homebrew/bin/gpgsplit ->
../Cellar/gnupg/2.4.3/bin/gpgsplit
lrwxr-xr-x  1 pluby  staff  32 Sep 29 09:54 /opt/homebrew/bin/gpgtar ->
../Cellar/gnupg/2.4.3/bin/gpgtar
lrwxr-xr-x  1 pluby  staff  30 Sep 29 09:54 /opt/homebrew/bin/gpgv ->
../Cellar/gnupg/2.4.3/bin/gpgv
zsh: no matches found: /opt/local/bin/gpg*

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

[Bug 146487] FILEOPEN PPTX: empty chart title shows as text "chart title" in Impress (while not in 365)

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146487

--- Comment #10 from Gerald Pfeifer  ---
Great, thank you Samuel and Gabor, and Bogdan vor the verification.

Samuel, are you planning to also push this into 24.02?

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

[Bug 157555] FILEOPEN PPTX: One of three links shows in different color (white instead of orange)

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=157555

Gerald Pfeifer  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #10 from Gerald Pfeifer  ---
Marking VERIFIED per Xisco's confirmation in comment #8.

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

[Bug 158139] Writer, Word Completion does not function

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158139

--- Comment #19 from Mike Kaganski  ---
Regression after commit 843af72bcc9047867588e29c8e10b84a5e58d70e. Tested that
reverting it fixes the problem.

Hence, *likely* Windows-only (unless some other change also broke it
elsewhere).
Note that a dictionary for the current language is required, for the collect
feature to work.
The words that are misspelled are not added.

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

[Bug 159296] Wrong information shown in tip of the day

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159296

Julien Nabet  changed:

   What|Removed |Added

 CC||heiko.tietze@documentfounda
   ||tion.org,
   ||serval2...@yahoo.fr

--- Comment #1 from Julien Nabet  ---
I'm not on macOS but I noticed:
   1416 
   1417   
   1418 L10N SHORTCUTS - NO
TRANSLATE
   1419 .uno:SelectColumn
   1420   
   1421 
   1422 
   1423   
   1424 L10N SHORTCUTS - NO
TRANSLATE
   1425 .uno:SelectColumn
   1426   
   1427 

in officecfg/registry/data/org/openoffice/Office/Accelerators.xcu
(see
https://opengrok.libreoffice.org/xref/core/officecfg/registry/data/org/openoffice/Office/Accelerators.xcu#1416)

But in cui/inc/tipoftheday.hrc or cui/source/dialogs/tipofthedaydlg.cxx,
there's no MOD3.

Heiko: thought you might be interested in this one since it concerns TOTD.

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

[Bug 143246] Color picker doesn't load previously-picked color

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143246

--- Comment #4 from V Stuart Foote  ---
Issue with the 'Custom color...' dialog not updating to keep the previous color
pick while open continues. Maybe revisit the STR, but issue is with the custom
color picker 'Pick a color' widget *while current style editing remains
open*--i.e. making successive picks.

Once the style edit is closed and reopened, the last custom color pick is
visible, on the recent color bar and also on the 2D 'Pick a color' mixer widget
where the target "circle" shifts appropriately.

Version: 24.8.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: b8e393686c4ab6a69b091240065f440eadfff230
CPU threads: 8; OS: Windows 10.0 Build 19045; 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 158112] Sidebar pane shortcuts conflict with Alt+NumPad input (comment 5, comment 9)

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158112

Buovjaga  changed:

   What|Removed |Added

 CC||szfjoz...@gmail.com

--- Comment #38 from Buovjaga  ---
*** Bug 159310 has been marked as a duplicate of this bug. ***

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

[Bug 159310] Serious problem: impossible to enter characters by Alt+NumericKeypad

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159310

Buovjaga  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 CC||ilmari.lauhakangas@libreoff
   ||ice.org
 Status|UNCONFIRMED |RESOLVED

--- Comment #1 from Buovjaga  ---


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

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

[Bug 159310] New: Serious problem: impossible to enter characters by Alt+NumericKeypad

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159310

Bug ID: 159310
   Summary: Serious problem: impossible to enter characters by
Alt+NumericKeypad
   Product: LibreOffice
   Version: 7.6.3.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: szfjoz...@gmail.com

Description:
It is not possible anymore to enter Alt-keycodes due to the newly introduced
Alt+number shorcuts.
For example, Alt+0128 is the keycode for the Euro (€) symbol, but upon
attempting to enter this code, all kind of sidebars appear and switch.
The impossibility to sue the Alt-keycodes renders LibreOffice Writer
practically unusable. Imagine, how many symbols have to be entered (like ½, ®,
±), not mentioning the different accented characters on different languages.
This Insert symbol dialog or copy/paste symbols from elsewhere is extremely
counter-productive, it is for people who rarely use symbols or don't know
anything about Alt-keycodes. Those who used Alt-keycodes for decades, it is a
real headache, how comes that developers of LO aren't aware that such common
functionality is broken... ?

Steps to Reproduce:
1. Create a new document.
2. Try to enter the an ANSI symbol by typing Alt+numeric-keycode (eg. degree,
Alt+0176)

Actual Results:
Nothing is written, but all kind of dockers appear and switch.

Expected Results:
Enter the desired symbol, like in ALL (practically all) applications on
Windows.


Reproducible: Always


User Profile Reset: No

Additional Info:
[Information automatically included from LibreOffice]
Locale: en-US
Module: TextDocument
[Information guessed from browser]
OS: Windows (All)
OS is 64bit: no

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

[Bug 136554] Footnote/endnote anchors don't respond to new "Position" properties when another character style is applied (see comment 16)

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136554

--- Comment #19 from ajlittoz  ---
Working on
https://ask.libreoffice.org/t/custom-style-not-showing-in-writer-document/100592,
I came to the same conclusion as Mike Kaganski in comment # 16. This is a
matter of precedence between the various styles:
- paragraph style
- user character style
- automatic character style (from Tools>Footnotes & Endnotes

However I could not determine the precedence of direct formatting. DF will
applied last as usual for most attributes, but DF colour seems to be taken into
account before automatic CS.

This looks like the same misbehaviour as in bug 158835 (addressing
bullet/number formatting in lists).

This prevents from using DF to show differently a single note anchor among all
others.

Also, but this could be another bug report, DF can be used in the footnote area
to decorate a single note "number" because the "number" can't be selected
(since this is Writer generated text).

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

[Bug 159309] Word complement does not work

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159309

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE
 CC||ilmari.lauhakangas@libreoff
   ||ice.org

--- Comment #1 from Buovjaga  ---


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

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

[Bug 158139] Writer, Word Completion does not function

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158139

Buovjaga  changed:

   What|Removed |Added

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

--- Comment #17 from Buovjaga  ---
(In reply to Madhi from comment #9)
> Word completion stopped working after a windows update. could be Cumulative
> Update for .NET Framework 3.5 and 4.8.1 for Windows 11, version 22H2 for x64
> (KB5032007) or Cumulative Update for Windows 11 Version 22H2 for x64-based
> Systems (KB5032190). it was working well before. After the update, it
> stopped working, even in safe mode. Words are collected as usual.

Related to this, bug 156983 comment 10 said:

> In the meantime we detected, that Word Completion is well functioning if
> Windows 11 is cleanly installed.
> So i have a problem with my Win11 Image, that we distributes by our clients.
> Some software component or configuration is blocking a correct working, but
> seem's not a general compatiblity issue related Win11 and Libreoffice.
> We can close the thread, because the problem I have to solve is on my image.

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

[Bug 158139] Writer, Word Completion does not function

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=158139

Buovjaga  changed:

   What|Removed |Added

 CC||nos...@hs-rook.de

--- Comment #18 from Buovjaga  ---
*** Bug 159309 has been marked as a duplicate of this bug. ***

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

[Bug 156983] Autocorrect > Word Completion not working on Windows 11

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156983

Buovjaga  changed:

   What|Removed |Added

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

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

[Bug 159146] Trouble redrawing background for comment column after changing width

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159146

--- Comment #4 from steve  ---
@Dieter this is a new change. Please try reproducing with a recent main build
from https://dev-builds.libreoffice.org/daily/master/current.html

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

[Bug 159309] New: Word complement does not work

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159309

Bug ID: 159309
   Summary: Word complement does not work
   Product: LibreOffice
   Version: 7.5.9.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: nos...@hs-rook.de

Description:
Although word completion is active, I do not receive any word completions. I
have already tried to solve the problem once. Renamed the user data so that it
is recreated. But even then it does not work. Switching off the function and
then reactivating it did not help either. 

Steps to Reproduce:
1.Activate word completion in the settings
2.Enter words in the list
3.Write the words. 

Actual Results:
No word completion suggestions appear

Expected Results:
After entering the first three letters, suggestions for additions should be
made


Reproducible: Always


User Profile Reset: Yes

Additional Info:
[Information automatically included from LibreOffice]
Locale: de
Module: TextDocument
[Information guessed from browser]
OS: Windows (All)
OS is 64bit: no

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

[Bug 159146] Trouble redrawing background for comment column after changing width

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=159146

Dieter  changed:

   What|Removed |Added

 CC||dgp-m...@gmx.de
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=15
   ||9145
 Blocks||106179

--- Comment #3 from Dieter  ---
Steve, I'm not able to change comment column width (I'm using Windows 10). And
taking into account bug 149145 it seems to be the current behaviour. So I don't
understand, why you're able to do so.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=106179
[Bug 106179] [META] Writer comment bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Bug 106179] [META] Writer comment bugs and enhancements

2024-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106179

Dieter  changed:

   What|Removed |Added

 Depends on||159146


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=159146
[Bug 159146] Trouble redrawing background for comment column after changing
width
-- 
You are receiving this mail because:
You are the assignee for the bug.

  1   2   >