[Libreoffice-bugs] [Bug 149611] Allow the page to adhere to the theme of the system.

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

Buovjaga  changed:

   What|Removed |Added

Version|7.6.0.2 rc  |7.3.4.2 release
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
   Keywords||needsUXEval

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

[Libreoffice-ux-advise] [Bug 149611] Allow the page to adhere to the theme of the system.

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

Buovjaga  changed:

   What|Removed |Added

Version|7.6.0.2 rc  |7.3.4.2 release
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
   Keywords||needsUXEval

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

[Libreoffice-bugs] [Bug 103030] [META] Navigator sidebar deck and floating window

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

Bug 154212 Summary: A Frame with a Heading disrupts the "Move Chapter Up/Down"  
in Navigator
https://bugs.documentfoundation.org/show_bug.cgi?id=154212

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 156927] Folding of ToC in Writer

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

--- Comment #2 from Jim Raykowski  ---
I think Contents 1-10 paragraph styles normally have their parent style as the
Index paragraph style and have outline level none. In this document, paragraph
styles Contents 1-4 have Default Paragraph Style as their parent. Content 1 has
outline level 3, Content 3 has outline level 1, Content 2 and 4 have outline
level none. So:

(In reply to Timur from comment #0)
> 1. Is folding normally possible in ToC? Why not? Would be nice to be able to
> fold all sublevels of selected heading.
I would say folding is not normally possible in ToC since normally Contents
1-10 have an outline level none. Bug 156282 maybe addresses folding all
sublevels of a selected heading.
> 2. Why folding is possible here?
Folding is possible because paragraph styles Contents 1 and 3 have an outline
level set other than none.
> 3. Why it works for document level 1 and 2 headings, which are not correct
> contents style level 1 headings, and stops at level 3 which is really level
> 1 contents.
I hope the explanations for questions 1 and 2 answer question 3.

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

[Libreoffice-bugs] [Bug 51132] After one success, PRINTING of #10 ENVELOPES failed to print properly, apparently due to incorrect formatting of the envelope document by the 'Insert Envelope' wizard.

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

mkass...@internode.net changed:

   What|Removed |Added

 CC||mkass...@internode.net

--- Comment #38 from mkass...@internode.net ---
I hope this can be fixed.

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

[Libreoffice-bugs] [Bug 156282] Outline Folding Toggle not available for entire Headings outline

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:24.2.0

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

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

2023-08-25 Thread Jim Raykowski (via logerrit)
 sw/source/uibase/utlui/content.cxx |   54 +
 1 file changed, 37 insertions(+), 17 deletions(-)

New commits:
commit f24f352da00b3e9a57e723c83008fc5854c38227
Author: Jim Raykowski 
AuthorDate: Wed Aug 16 21:03:48 2023 -0800
Commit: Jim Raykowski 
CommitDate: Sat Aug 26 05:36:46 2023 +0200

tdf#156282 Make 'Fold/Unfold Including Sub Levels' menu items

show for outline folding 'Include sub levels' mode

In addition, when sub outlines are not visible in the document view,
grey them out in the Navigator content tree instead of not including
them.

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

diff --git a/sw/source/uibase/utlui/content.cxx 
b/sw/source/uibase/utlui/content.cxx
index bca6c625adc3..54593eead31f 100644
--- a/sw/source/uibase/utlui/content.cxx
+++ b/sw/source/uibase/utlui/content.cxx
@@ -452,7 +452,7 @@ void SwContentType::FillMemberList(bool* pbContentChanged)
 {
 SwTextNode* pNode = rOutlineNodes[i]->GetTextNode();
 const sal_uInt8 nLevel = pNode->GetAttrOutlineLevel() - 1;
-if (nLevel >= m_nOutlineLevel || 
!pNode->getLayoutFrame(m_pWrtShell->GetLayout()))
+if (nLevel >= m_nOutlineLevel)
 continue;
 double nYPos = m_bAlphabeticSort ? 0 : 
static_cast(getYPos(*pNode));
 if (nEndOfExtrasIndex >= pNode->GetIndex() && 
pNode->GetFlyFormat())
@@ -466,6 +466,8 @@ void SwContentType::FillMemberList(bool* pbContentChanged)
 aEntry = SwNavigationPI::CleanEntry(aEntry);
 auto pCnt(std::make_unique(this, aEntry, i, 
nLevel,
 
m_pWrtShell->IsOutlineMovable(i), nYPos));
+if (!pNode->getLayoutFrame(m_pWrtShell->GetLayout()))
+pCnt->SetInvisible();
 m_pMember->insert(std::move(pCnt));
 }
 
@@ -1426,16 +1428,6 @@ static void 
lcl_SetOutlineContentEntriesSensitivities(SwContentTree* pThis, cons
 
 bool bIsRoot = lcl_IsContentType(rEntry, rContentTree);
 
-if (const SwWrtShell* pSh = pThis->GetActiveWrtShell())
-{
-if (pSh->GetViewOptions()->IsTreatSubOutlineLevelsAsContent())
-{
-if (!bIsRoot)
-
rPop.set_sensitive(OUString::number(TOGGLE_OUTLINE_CONTENT_VISIBILITY), true);
-return;
-}
-}
-
 const SwNodes& rNodes = pThis->GetWrtShell()->GetNodes();
 const SwOutlineNodes& rOutlineNodes = rNodes.GetOutLineNds();
 size_t nOutlinePos = weld::GetAbsPos(rContentTree, rEntry);
@@ -2945,7 +2937,7 @@ bool SwContentTree::HasContentChanged()
 return false;
 }
 
-// root content navigation view
+// single content type navigation view
 if(m_bIsRoot)
 {
 std::unique_ptr 
xRootEntry(m_xTreeView->make_iterator());
@@ -2983,8 +2975,9 @@ bool SwContentTree::HasContentChanged()
 // the member data in the array. The Display function will clear 
and recreate the
 // treeview from the content type member arrays if content change 
is detected.
 const SwContent* pCnt = pArrType->GetMember(j);
-OUString sSubId(weld::toId(pCnt));
-m_xTreeView->set_id(*xEntry, sSubId);
+
+if (pCnt->IsInvisible() != m_xTreeView->get_sensitive(*xEntry, -1))
+return true;
 
 OUString sEntryText = m_xTreeView->get_text(*xEntry);
 if (sEntryText != pCnt->GetName() &&
@@ -2992,9 +2985,16 @@ bool SwContentTree::HasContentChanged()
 {
 return true;
 }
+
+// Set_id needs to be done here because FillMemberList clears the 
content type member
+// list and refills with new data making the previously set id 
invalid. If there is no
+// content change detected the Dispay function will not be called 
and the tree entry
+// user data will not be set to the new content member pointer 
address.
+OUString sSubId(weld::toId(pCnt));
+m_xTreeView->set_id(*xEntry, sSubId);
 }
 }
-// all content navigation view
+// all content types navigation view
 else
 {
 // Fill member list for each content type and check for content 
change. If content change
@@ -3059,8 +3059,12 @@ bool SwContentTree::HasContentChanged()
 }
 
 const SwContent* pCnt = pArrType->GetMember(j);
-OUString sSubId(weld::toId(pCnt));
-m_xTreeView->set_id(*xEntry, sSubId);
+
+if (pCnt->IsInvisible() != 
m_xTreeView->get_sensitive(*xEntry, -1))
+{
+bContentChanged = true;
+break;
+

[Libreoffice-bugs] [Bug 156740] Labels Selection

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

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 156739] Customization dialog: Drag-and-Drop is broken (regression)

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

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 156744] recent documents menu ignores icon display settings on windows

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

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 153215] The program crashes after a few minutes of running

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

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 156729] add some Formula Object in microsoft word on version tracking mode. libre writer can not display some Formula Object before it be accept.

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

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 153211] text box can not extend

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

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

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 153215] The program crashes after a few minutes of running

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

--- Comment #3 from QA Administrators  ---
Dear stef...@nonsoloflair.it,

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 153211] text box can not extend

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

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 153835] Libre Text editor crashes while typing and auto recover does not work

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

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

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 153573] Menus are all blank when opening .doc files

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

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

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 99088] Export to PNG messes up with DPI

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

--- Comment #21 from QA Administrators  ---
Dear S.,

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 98627] Spell check options on right click shows junk characters

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

--- Comment #20 from QA Administrators  ---
Dear Shantanu,

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 142240] Impress : video doesn't work in appimage (7.1)

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

--- Comment #3 from QA Administrators  ---
Dear Vincent Mabillot,

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 137962] UI elements flicker when slide has a video file

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

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

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 118793] Marks of wrong spellings do not appear in a document that is edited from write protected

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

--- Comment #4 from QA Administrators  ---
Dear Stefan Bartels,

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 156927] Folding of ToC in Writer

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

Aron Budea  changed:

   What|Removed |Added

 CC||rayk...@gmail.com

--- Comment #1 from Aron Budea  ---
Jim, since you implemented the feature, could you please add some insight here?

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

[Libreoffice-bugs] [Bug 139517] Calc: Date values toggle between date and text when changed

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

--- Comment #7 from Kira Tubo  ---
This bug is still reproducible in: 

Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: e15bf7363adb20c77aee51e09b6f2604d741619b
CPU threads: 6; OS: Windows 10.0 Build 22621; UI render: Skia/Raster; 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.

[Libreoffice-bugs] [Bug 145509] [META] Bugs Related to Liborcus

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

Kohei Yoshida  changed:

   What|Removed |Added

 Depends on|153527  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=153527
[Bug 153527] LibreOffice 7.5 Calc: unable to apply formatting to all cells in
spreadsheet
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 153527] LibreOffice 7.5 Calc: unable to apply formatting to all cells in spreadsheet

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

Kohei Yoshida  changed:

   What|Removed |Added

 Blocks|145509  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=145509
[Bug 145509] [META] Bugs Related to Liborcus
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 71225] EDITING: AREAS function input error.

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

--- Comment #11 from Kira Tubo  ---
Still reproducible. Note that if you click on the Shrink button to minimize the
Function Wizard, the user is able to select multiple ranges without issue. 

Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: e15bf7363adb20c77aee51e09b6f2604d741619b
CPU threads: 6; OS: Windows 10.0 Build 22621; UI render: Skia/Raster; 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.

[Libreoffice-bugs] [Bug 112358] EDITING: Undo of style formatting doesn't show affected cells

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

--- Comment #7 from Kira Tubo  ---
Still reproducible. 

Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: e15bf7363adb20c77aee51e09b6f2604d741619b
CPU threads: 6; OS: Windows 10.0 Build 22621; UI render: Skia/Raster; 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.

[Libreoffice-bugs] [Bug 149611] Allow the page to adhere to the theme of the system.

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

third='beedell', first='roke', second='julian lockhart' 
 changed:

   What|Removed |Added

URL||https://ask.libreoffice.org
   ||/t/how-to-make-writer-page-
   ||adhere-to-system-lo-theme/9
   ||5069?u=rokejulianlockhart

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

[Libreoffice-bugs] [Bug 149611] Allow the page to adhere to the theme of the system.

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

third='beedell', first='roke', second='julian lockhart' 
 changed:

   What|Removed |Added

Version|7.3.4.2 release |7.6.0.2 rc

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

[Libreoffice-bugs] [Bug 149611] Allow the page to adhere to the theme of the system.

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

third='beedell', first='roke', second='julian lockhart' 
 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 149611] Allow the page to adhere to the theme of the system.

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

--- Comment #3 from third='beedell', first='roke', second='julian lockhart' 
 ---
Created attachment 189162
  --> https://bugs.documentfoundation.org/attachment.cgi?id=189162=edit
Depiction of the problem.

https://bugs.documentfoundation.org/show_bug.cgi?id=149611#c1

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

[Libreoffice-bugs] [Bug 156704] FILEOPEN PPTX: blocks with color gradients are shaded differently (with same color)

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

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 156902] FILEOPEN PPTX: graphics not shown (edit mode and presentation mode)

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

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 156902] FILEOPEN PPTX: graphics not shown (edit mode and presentation mode)

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

--- Comment #4 from Gabor Kelemen (allotropia)  ---
Created attachment 189161
  --> https://bugs.documentfoundation.org/attachment.cgi?id=189161=edit
The minimal example in PP 2016 and fresh master

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

[Libreoffice-bugs] [Bug 156902] FILEOPEN PPTX: graphics not shown (edit mode and presentation mode)

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

--- Comment #3 from Gabor Kelemen (allotropia)  ---
Created attachment 189160
  --> https://bugs.documentfoundation.org/attachment.cgi?id=189160=edit
Minimized example file

Seems like the cow is a grouping of two shapes, and the grouping has glow
effect set on it. This is not supported in Impress.

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

[Libreoffice-bugs] [Bug 101181] Support the OOXML Glow Effect for Pictures and Shapes

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

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 136372] [META] PPTX shape related issues

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

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 Depends on||156902


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=156902
[Bug 156902] FILEOPEN PPTX: graphics not shown (edit mode and presentation
mode)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 156902] FILEOPEN PPTX: graphics not shown (edit mode and presentation mode)

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

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 Blocks||136372
   Keywords|bibisectRequest |bibisected, bisected
 Status|UNCONFIRMED |NEW
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||1181
 CC||kelem...@ubuntu.com
 Ever confirmed|0   |1
Version|7.3.7.2 release |7.0.4.2 release

--- Comment #2 from Gabor Kelemen (allotropia)  ---
Seems to have started in

https://git.libreoffice.org/core/+/f9fc420dceb1ece2c98767da16a21aaff771f140

author  Tamas BunthTue Jan 21 19:04:13
2020 +0100
committer   Tamás Bunth  Tue Mar 03 15:52:47 2020 +0100

tdf#101181 Implement glow effect on shapes


Referenced Bugs:

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

[Libreoffice-ux-advise] [Bug 156925] Add a Color Scheme switcher to the Basic IDE

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

Rafael Lima  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org

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

[Libreoffice-commits] core.git: vcl/Library_vcl.mk

2023-08-25 Thread Gabor Kelemen (via logerrit)
 vcl/Library_vcl.mk |1 -
 1 file changed, 1 deletion(-)

New commits:
commit bce1f0b3d103fb435d4fa468c91efec8bf9a5b2d
Author: Gabor Kelemen 
AuthorDate: Tue Aug 22 08:38:18 2023 +0200
Commit: Thorsten Behrens 
CommitDate: Sat Aug 26 01:04:43 2023 +0200

vcl does not actually use mdds

This was added in a copy-paste accident

Change-Id: Ifdc9dde30a2d933d4f709f1344d402f9585bbf9e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155931
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/vcl/Library_vcl.mk b/vcl/Library_vcl.mk
index 7776ced51b56..6eb5043defed 100644
--- a/vcl/Library_vcl.mk
+++ b/vcl/Library_vcl.mk
@@ -93,7 +93,6 @@ $(eval $(call gb_Library_use_externals,vcl,\
 libpng \
 libtiff \
 libwebp \
-mdds_headers \
 ))
 
 $(eval $(call gb_Library_add_exception_objects,vcl,\


[Libreoffice-commits] core.git: compilerplugins/clang vcl/CppunitTest_vcl_bitmap_test.mk vcl/Executable_icontest.mk vcl/Library_vcl.mk vcl/Library_vclplug_gen.mk vcl/Library_vclplug_win.mk vcl/source

2023-08-25 Thread Gabor Kelemen (via logerrit)
 compilerplugins/clang/unusedmethods.results |6 -
 vcl/CppunitTest_vcl_bitmap_test.mk  |1 
 vcl/Executable_icontest.mk  |6 -
 vcl/Library_vcl.mk  |2 -
 vcl/Library_vclplug_gen.mk  |1 
 vcl/Library_vclplug_win.mk  |1 
 vcl/source/opengl/GLMHelper.hxx |   21 
 vcl/source/opengl/OpenGLHelper.cxx  |   29 
 8 files changed, 67 deletions(-)

New commits:
commit 16cd8cf06f23696fc057dd3469f7698154825886
Author: Gabor Kelemen 
AuthorDate: Mon Aug 21 22:38:39 2023 +0200
Commit: Thorsten Behrens 
CommitDate: Sat Aug 26 01:04:20 2023 +0200

Drop glm dependency from vcl

Serious use of glm was removed from vcl in
commit db89f53c31af997b9bf422b0e784afba8d62a42e
remove OpenGL VCL backend code

This is a bit of leftover from that

Change-Id: I019279cd0cc804d3fa4535a651704bccca38b9db
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155909
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/compilerplugins/clang/unusedmethods.results 
b/compilerplugins/clang/unusedmethods.results
index a4b5e3d3dcd5..335a54622235 100644
--- a/compilerplugins/clang/unusedmethods.results
+++ b/compilerplugins/clang/unusedmethods.results
@@ -3464,12 +3464,6 @@ vcl/source/fontsubset/xlat.hxx:33
 unsigned short vcl::TranslateChar15(unsigned short)
 vcl/source/fontsubset/xlat.hxx:34
 unsigned short vcl::TranslateChar16(unsigned short)
-vcl/source/opengl/GLMHelper.hxx:17
-std::basic_ostream & operator<<(std::basic_ostream &,const 
struct glm::mat<4, 4, float> &)
-vcl/source/opengl/GLMHelper.hxx:18
-std::basic_ostream & operator<<(std::basic_ostream &,const 
struct glm::vec<4, float> &)
-vcl/source/opengl/GLMHelper.hxx:19
-std::basic_ostream & operator<<(std::basic_ostream &,const 
struct glm::vec<3, float> &)
 vcl/source/window/menuitemlist.hxx:123
 void MenuItemList::Clear()
 vcl/unx/generic/dtrans/X11_clipboard.hxx:106
diff --git a/vcl/CppunitTest_vcl_bitmap_test.mk 
b/vcl/CppunitTest_vcl_bitmap_test.mk
index 1c51a8d02cbe..0edaabc9f9d9 100644
--- a/vcl/CppunitTest_vcl_bitmap_test.mk
+++ b/vcl/CppunitTest_vcl_bitmap_test.mk
@@ -23,7 +23,6 @@ $(eval $(call 
gb_CppunitTest_add_exception_objects,vcl_bitmap_test, \
 $(eval $(call gb_CppunitTest_use_externals,vcl_bitmap_test,\
boost_headers \
 epoxy \
-   glm_headers \
 ))
 
 $(eval $(call gb_CppunitTest_set_include,vcl_bitmap_test,\
diff --git a/vcl/Executable_icontest.mk b/vcl/Executable_icontest.mk
index 60a69bc7a156..0f8a3b60b09b 100644
--- a/vcl/Executable_icontest.mk
+++ b/vcl/Executable_icontest.mk
@@ -15,12 +15,6 @@ $(eval $(call gb_Executable_use_externals,icontest,\
 ))
 endif
 
-ifeq ($(SYSTEM_GLM),TRUE)
-$(eval $(call gb_Executable_add_defs,icontest,\
--DGLM_ENABLE_EXPERIMENTAL \
-))
-endif
-
 $(eval $(call gb_Executable_add_defs,icontest,\
 -DVCL_INTERNALS \
 ))
diff --git a/vcl/Library_vcl.mk b/vcl/Library_vcl.mk
index f56c913f656f..7776ced51b56 100644
--- a/vcl/Library_vcl.mk
+++ b/vcl/Library_vcl.mk
@@ -48,7 +48,6 @@ $(eval $(call gb_Library_add_defs,vcl,\
 -DCUI_DLL_NAME=\"$(call gb_Library_get_runtime_filename,$(call 
gb_Library__get_name,cui))\" \
 -DDESKTOP_DETECTOR_DLL_NAME=\"$(call 
gb_Library_get_runtime_filename,$(call 
gb_Library__get_name,desktop_detector))\" \
 -DTK_DLL_NAME=\"$(call gb_Library_get_runtime_filename,$(call 
gb_Library__get_name,tk))\" \
-$(if $(SYSTEM_GLM),-DGLM_ENABLE_EXPERIMENTAL) \
 $(if $(SYSTEM_LIBFIXMATH),-DSYSTEM_LIBFIXMATH) \
 ))
 
@@ -84,7 +83,6 @@ $(eval $(call gb_Library_use_externals,vcl,\
 expat \
 frozen \
 gio \
-glm_headers \
 graphite \
 harfbuzz \
 icu_headers \
diff --git a/vcl/Library_vclplug_gen.mk b/vcl/Library_vclplug_gen.mk
index e0086e6c4dcb..2d314017bb8b 100644
--- a/vcl/Library_vclplug_gen.mk
+++ b/vcl/Library_vclplug_gen.mk
@@ -56,7 +56,6 @@ $(eval $(call gb_Library_use_externals,vclplug_gen,\
graphite \
epoxy \
expat \
-   glm_headers \
harfbuzz \
icu_headers \
icuuc \
diff --git a/vcl/Library_vclplug_win.mk b/vcl/Library_vclplug_win.mk
index 2627914cc15c..d4656302d4ce 100644
--- a/vcl/Library_vclplug_win.mk
+++ b/vcl/Library_vclplug_win.mk
@@ -60,7 +60,6 @@ $(eval $(call gb_Library_use_libraries,vclplug_win,\
 $(eval $(call gb_Library_use_externals,vclplug_win,\
 boost_headers \
 epoxy \
-glm_headers \
 harfbuzz \
 $(if $(filter SKIA,$(BUILD_TYPE)),skia) \
 ))
diff --git a/vcl/source/opengl/GLMHelper.hxx b/vcl/source/opengl/GLMHelper.hxx
deleted file mode 100644
index 9694a3c34625..
--- a/vcl/source/opengl/GLMHelper.hxx
+++ /dev/null
@@ -1,21 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source 

[Libreoffice-commits] core.git: xmlsecurity/doc xmlsecurity/qa xmlsecurity/README.md

2023-08-25 Thread TokieSan (via logerrit)
 dev/null   |binary
 xmlsecurity/README.md  |   29 +++-
 xmlsecurity/doc/OpenDocumentSignatures-TestIntegration.odt |binary
 xmlsecurity/doc/OpenDocumentSignatures-Workflow.odg|binary
 xmlsecurity/doc/OpenDocumentSignatures.odt |binary
 xmlsecurity/doc/XMLSecurityFramework.odt   |binary
 xmlsecurity/qa/create-certs/create-dump-certs.sh   |   31 +
 7 files changed, 59 insertions(+), 1 deletion(-)

New commits:
commit a6636c451b54728741be0a770b053e093134b90d
Author: TokieSan 
AuthorDate: Tue Aug 22 09:42:11 2023 +0300
Commit: Thorsten Behrens 
CommitDate: Sat Aug 26 01:01:40 2023 +0200

XMLSecurity Module Documentation Update

Updated the README Documentation file for xmlsecurity module. Fixed
broken sxd file for signatures workflow. Added dumb certificates creator
shell script for testing purposes in qa.

Change-Id: Ibee17193a1a38348f2e7fc460dfdd0c54dd31f9b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155932
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/xmlsecurity/README.md b/xmlsecurity/README.md
index b983f5dc5eb5..80259e6dcbf9 100644
--- a/xmlsecurity/README.md
+++ b/xmlsecurity/README.md
@@ -1,4 +1,6 @@
-# Stuff for Document Signing
+# Document Signing
+
+## Introduction
 
 This code provides dialogs, and infrastructure wrapping `libxmlsec` and
 `gpgme` that implements document signing.
@@ -10,6 +12,31 @@ to the digital signature of the document, when signing it.
 The document signing can be done both for the source ODF/OOXML files and
 the exported PDF files. It is also possible to sign existing PDF files.
 
+## Module Contents
+
+ * `doc`: OpenDocument workflow legacy information with some illustrations to 
have an idea of the workflow, for starters check 
`doc/OpenDocumentSignatures-Workflow.odt`.
+ * `inc`: Headers to a subset of source files inside the module, parts like 
`source/framework` have headers inside the folder.
+ * `qa`: Unit tests for signing and shell scripts for certificates creation 
for testing.
+ * `test_docs`: Documents & certificates used for testing.
+ * `source`: More on that below.
+ * `uiconfig`: User interface configuration for different dialogs, it is 
recommended to navigate from relevant source file to the .ui file linked in the 
class which will be under `uiconfig/ui`.
+ * `util`: UNO passive registration config for GPG/ NSS.
+
+## Source Primary Contents
+
+ * `component`: Main implementation of `DocumentDigitalSignatuers` where the 
interaction with security environment and certificates occur.
+ * `dialogs`: Certificate & Signatures management dialogs.
+   * `certificatechooser`: Dialog that allows you to find and choose 
certificates or signatures for encryption.
+   * `certificateviewer`: More detailed information about each certificate.
+   * `digitalsignaturesdialog`: Main window for signatures of the documents 
and the start point of signing document.
+ * `framework`: Various elements for verifying signatures and running security 
engine.
+ * `gpg`: The implementation of encrypting with GPG and security environment 
initialization.
+ * `helper`: Some helper classes that include signatures manager and the 
helpers for PDF signing, UriBinding, and XML signatures. It also include helper 
tools for XSecurityEnvironment.
+ * `xmlsec`: XML, NSS, MSCrypt encryption/ signing tools, more on the 
low-level side of actual implementation of algorithms.
+
+
+## PDF Testing
+
 To test the signed PDFs, one can use the `pdfverify` in this way:
 
 ./bin/run pdfverify $PWD/xmlsecurity/qa/unit/pdfsigning/data/2good.pdf
diff --git a/xmlsecurity/doc/OpenDocumentSignatures-TestIntegration.odt 
b/xmlsecurity/doc/OpenDocumentSignatures-TestIntegration.odt
new file mode 100644
index ..e90e4eaade2d
Binary files /dev/null and 
b/xmlsecurity/doc/OpenDocumentSignatures-TestIntegration.odt differ
diff --git a/xmlsecurity/doc/OpenDocumentSignatures-TestIntegration.sxw 
b/xmlsecurity/doc/OpenDocumentSignatures-TestIntegration.sxw
deleted file mode 100644
index 2973f08c8d8a..
Binary files a/xmlsecurity/doc/OpenDocumentSignatures-TestIntegration.sxw and 
/dev/null differ
diff --git a/xmlsecurity/doc/OpenDocumentSignatures-Workflow.odg 
b/xmlsecurity/doc/OpenDocumentSignatures-Workflow.odg
new file mode 100644
index ..f7331f024acd
Binary files /dev/null and 
b/xmlsecurity/doc/OpenDocumentSignatures-Workflow.odg differ
diff --git a/xmlsecurity/doc/OpenDocumentSignatures-Workflow.sxd 
b/xmlsecurity/doc/OpenDocumentSignatures-Workflow.sxd
deleted file mode 100644
index abc5f32c6151..
Binary files a/xmlsecurity/doc/OpenDocumentSignatures-Workflow.sxd and 
/dev/null differ
diff --git a/xmlsecurity/doc/OpenDocumentSignatures.odt 
b/xmlsecurity/doc/OpenDocumentSignatures.odt
new file mode 100644
index ..78ac14fc0b4f

[Libreoffice-commits] core.git: xmlsecurity/inc xmlsecurity/source xmlsecurity/uiconfig

2023-08-25 Thread TokieSan (via logerrit)
 xmlsecurity/inc/certificatechooser.hxx |   18 +++
 xmlsecurity/source/component/documentdigitalsignatures.cxx |   10 -
 xmlsecurity/source/dialogs/certificatechooser.cxx  |   14 ++
 xmlsecurity/source/dialogs/digitalsignaturesdialog.cxx |8 -
 xmlsecurity/uiconfig/ui/selectcertificatedialog.ui |   68 +
 5 files changed, 89 insertions(+), 29 deletions(-)

New commits:
commit fb9874231fb242b4a6a7d1ce097e66dd4ed8f32e
Author: TokieSan 
AuthorDate: Sat Aug 5 18:26:55 2023 +0300
Commit: Thorsten Behrens 
CommitDate: Sat Aug 26 00:59:48 2023 +0200

Caching Certificates in the CertificateChooser dialog session-wise

Added the functionality of caching certificates per session using a
single instance with internal memoization. Added Reload Certificates
button in case of certificate changes in-session. Updated all instances
of certifcate chooser in the codebase to work with the new change.

Change-Id: Icb25a2b2e9787b029fa6189f70bd4ba3b6806f60
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155373
Tested-by: Jenkins
Reviewed-by: Thorsten Behrens 

diff --git a/xmlsecurity/inc/certificatechooser.hxx 
b/xmlsecurity/inc/certificatechooser.hxx
index 8b1f5563d85f..4279781f6fa3 100644
--- a/xmlsecurity/inc/certificatechooser.hxx
+++ b/xmlsecurity/inc/certificatechooser.hxx
@@ -51,6 +51,8 @@ enum class UserAction
 class CertificateChooser final : public weld::GenericDialogController
 {
 private:
+static inline CertificateChooser* mxInstance = nullptr;
+
 std::vector< css::uno::Reference< css::xml::crypto::XXMLSecurityContext > 
> mxSecurityContexts;
 std::vector> mvUserData;
 
@@ -67,11 +69,12 @@ private:
 std::unique_ptrm_xFTDescription;
 std::unique_ptrm_xDescriptionED;
 std::unique_ptrm_xSearchBox;
+std::unique_ptr   m_xReloadBtn;
 
 std::unordered_map,
 css::uno::Sequence< css::uno::Reference< css::security::XCertificate > 
> > xMemCerts;
 
-
+DECL_LINK(ReloadButtonHdl, weld::Button&, void);
 DECL_LINK(ViewButtonHdl, weld::Button&, void);
 DECL_LINK(CertificateHighlightHdl, weld::TreeView&, void);
 DECL_LINK(CertificateSelectHdl, weld::TreeView&, bool);
@@ -79,7 +82,8 @@ private:
 
 void ImplShowCertificateDetails();
 void ImplInitialize(bool mbSearch = false);
-
+void ImplReloadCertificates();
+void ImplSecCtxToCerts(SvtUserOptions , bool bOnlyReload);
 static void HandleOneUsageBit(OUString& string, int& bits, int bit, 
TranslateId name);
 
 public:
@@ -88,6 +92,16 @@ public:
UserAction eAction);
 virtual ~CertificateChooser() override;
 
+static CertificateChooser* getInstance(weld::Window* _pParent,
+std::vector< css::uno::Reference< 
css::xml::crypto::XXMLSecurityContext > > && rxSecurityContexts,
+UserAction eAction) {
+if (!mxInstance)
+{
+mxInstance = new CertificateChooser(_pParent, 
std::move(rxSecurityContexts), eAction);
+}
+return mxInstance;
+}
+
 short run() override;
 
 css::uno::Sequence > 
GetSelectedCertificates();
diff --git a/xmlsecurity/source/component/documentdigitalsignatures.cxx 
b/xmlsecurity/source/component/documentdigitalsignatures.cxx
index 0fd029fc2d81..4ad63b36ed0b 100644
--- a/xmlsecurity/source/component/documentdigitalsignatures.cxx
+++ b/xmlsecurity/source/component/documentdigitalsignatures.cxx
@@ -709,14 +709,14 @@ 
DocumentDigitalSignatures::chooseCertificatesImpl(std::map&
 xSecContexts.push_back(aSignatureManager.getGpgSecurityContext());
 }
 
-CertificateChooser aChooser(Application::GetFrameWeld(mxParentWindow), 
std::move(xSecContexts), eAction);
+CertificateChooser* aChooser = 
CertificateChooser::getInstance(Application::GetFrameWeld(mxParentWindow), 
std::move(xSecContexts), eAction);
 
-if (aChooser.run() != RET_OK)
+if (aChooser->run() != RET_OK)
 return { Reference< css::security::XCertificate >(nullptr) };
 
-uno::Sequence< Reference< css::security::XCertificate > >  xCerts = 
aChooser.GetSelectedCertificates();
-rProperties["Description"] = aChooser.GetDescription();
-rProperties["Usage"] = aChooser.GetUsageText();
+uno::Sequence< Reference< css::security::XCertificate > >  xCerts = 
aChooser->GetSelectedCertificates();
+rProperties["Description"] = aChooser->GetDescription();
+rProperties["Usage"] = aChooser->GetUsageText();
 
 return xCerts;
 }
diff --git a/xmlsecurity/source/dialogs/certificatechooser.cxx 
b/xmlsecurity/source/dialogs/certificatechooser.cxx
index be3e88f9d453..a7ff02f1a583 100644
--- a/xmlsecurity/source/dialogs/certificatechooser.cxx
+++ b/xmlsecurity/source/dialogs/certificatechooser.cxx
@@ -52,6 +52,7 @@ CertificateChooser::CertificateChooser(weld::Window* _pParent,
 , m_xFTDescription(m_xBuilder->weld_label("description-label"))
 , 

[Libreoffice-bugs] [Bug 156925] Add a Color Scheme switcher to the Basic IDE

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

--- Comment #3 from Rafael Lima  ---
(In reply to Regina Henschel from comment #2)
> How does that fit to the "Basic Syntax Highlighting" settings in Tools >
> Options > Application Colors?

When the user selects the option "Use Application Colors", then the colors
defined in Tools > Options > Application Colors are used.

When the user selects another color scheme (first they click "Choose Color
Scheme" and then choose one of the available schemes), then these colors are
used instead of the Application Colors. The colors from the color scheme
override the ones defined in Tools > Options > Application Colors.

It is important to note that the colors in the Options dialog are not replaced.
This way, if the user decides to go back to "default" application colors, they
only need to select "Use Application Colors".

BTW proposed patch is here:
https://gerrit.libreoffice.org/c/core/+/155928

It's WIP yet but it works... there are just a few things that I need to polish
before submitting for review.

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

[Libreoffice-bugs] [Bug 156926] Ability to Delete all images in Writer

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

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #1 from m.a.riosv  ---
+1

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

[Libreoffice-bugs] [Bug 156923] The FORMATTING for Hyperlinks extends beyond the Hyperlink Text

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

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m.a.riosv  ---
Please attach a sample file.

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

[Libreoffice-bugs] [Bug 156922] VIEWING: spreadsheet table in .docx file seems to import fine then numbers shift after mouseclick or PDF export

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

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m.a.riosv  ---
Also opening with Word, there is not an embedded spreadsheet, it is a word
table.
In the last column, there are table formulas AVERAGE()
With Menu/Tools/Update/Update all, the results are updated (LibreOffice).
In word with select all and F9, also update those calculated fields.

So seems for some reason the file was saved without update the calculated
fields.

Please, if you are not agreed, reopen it.

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

[Libreoffice-bugs] [Bug 135310] [META] Writer outline folding bugs and enhancements

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

Timur  changed:

   What|Removed |Added

 Depends on||156927


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=156927
[Bug 156927] Folding of ToC in Writer
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 156927] New: Folding of ToC in Writer

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

Bug ID: 156927
   Summary: Folding of ToC in Writer
   Product: LibreOffice
   Version: 24.2.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ti...@libreoffice.org
Blocks: 135310

Created attachment 189159
  --> https://bugs.documentfoundation.org/attachment.cgi?id=189159=edit
sample ODT

I do not know what exactly is at stake here, but something is..
In this document we can use Folding even in ToC, which is not usually the case. 
Users report this as a bug of partial folding, just level 1 and 2, not 3. 

But really there are 2 questions here:
1. Is folding normally possible in ToC? Why not? Would be nice to be able to
fold all sublevels of selected heading. 
2. Why folding is possible here?
3. Why it works for document level 1 and 2 headings, which are not correct
contents style level 1 headings, and stops at level 3 which is really level 1
contents.


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 156904] FILEOPEN PPTX: text rendered green instead of white in presentation mode

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

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||kelem...@ubuntu.com
 Status|UNCONFIRMED |NEEDINFO

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

[Libreoffice-bugs] [Bug 156904] FILEOPEN PPTX: text rendered green instead of white in presentation mode

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

--- Comment #2 from Gabor Kelemen (allotropia)  ---
Created attachment 189158
  --> https://bugs.documentfoundation.org/attachment.cgi?id=189158=edit
Example file in presentation mode PP 2016

Seems to be green (for some reason) in my PP 2016 in presentation mode.

live.com can't open this online:

https://view.officeapps.live.com/op/view.aspx?src=https%3A%2F%2Fbugs.documentfoundation.org%2Fattachment.cgi%3Fid%3D189138

Which version of PP do you use?

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

[Libreoffice-bugs] [Bug 156715] [LOCALHELP] Housekeeping on files that must not be indexed (indexer="exclude")

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

Olivier Hallot  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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

[Libreoffice-bugs] [Bug 156903] FILEOPEN PPTX: line renders orange instead of blue

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

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #3 from Gabor Kelemen (allotropia)  ---


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

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

[Libreoffice-bugs] [Bug 96533] FORMATTING no text box line gradient color

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

--- Comment #15 from Gabor Kelemen (allotropia)  ---
*** Bug 156903 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 156903] FILEOPEN PPTX: line renders orange instead of blue

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

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 CC||kelem...@ubuntu.com

--- Comment #2 from Gabor Kelemen (allotropia)  ---
Created attachment 189157
  --> https://bugs.documentfoundation.org/attachment.cgi?id=189157=edit
The example file in PP

This shape is orange-blue because it is a "gradient line". Which is a known
missing feature.

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

[Libreoffice-bugs] [Bug 156911] GIF does not play in edit mode if the attributes "Name" or "Description" are set [EDITING]

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

m.a.riosv  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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

[Libreoffice-bugs] [Bug 156911] GIF does not play in edit mode if the attributes "Name" or "Description" are set [EDITING]

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

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #1 from m.a.riosv  ---
Created attachment 189156
  --> https://bugs.documentfoundation.org/attachment.cgi?id=189156=edit
Sample file

Reproducible
Version: 7.6.0.3 (X86_64) / LibreOffice Community
Build ID: 69edd8b8ebc41d00b4de3915dc82f8f0fc3b6265
CPU threads: 16; OS: Windows 10.0 Build 22621; UI render: default; VCL: win
Locale: es-ES (es_ES); UI: en-US Calc: CL threaded
Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: c9916d9be9c060d43fc063b76d70629162650fea
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 156912] LO check for updates reports version 7.4 is up to date, when it should show 7.5 is available

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

--- Comment #5 from steve  ---
Julien: thanks for re-opening. I wasn't doubting your technical assessment.
Just wanted to add some user-perspective. Glad we can agree this needs
evaluation.

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

[Libreoffice-bugs] [Bug 156920] [META] Textbox/Drawing Object autofit functionality

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

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 Depends on||122023


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=122023
[Bug 122023] FILEOPEN PPTX shape with "Shrink text on overflow": Calibri Light
font size 55,7 instead of 54 and text splits a word into two lines
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 122023] FILEOPEN PPTX shape with "Shrink text on overflow": Calibri Light font size 55, 7 instead of 54 and text splits a word into two lines

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

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 Blocks||156920


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=156920
[Bug 156920] [META] Textbox/Drawing Object autofit functionality
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 156925] Add a Color Scheme switcher to the Basic IDE

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

Regina Henschel  changed:

   What|Removed |Added

 CC||rb.hensc...@t-online.de

--- Comment #2 from Regina Henschel  ---
(In reply to Rafael Lima from comment #1)

> I'd like to point out that the color schemes are hard-coded and I don't plan
> to implement a UI to allow the user to customize the color schemes. The idea
> here is to provide a quick color scheme switcher.

How does that fit to the "Basic Syntax Highlighting" settings in Tools >
Options > Application Colors?

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

[Libreoffice-bugs] [Bug 156901] FILEOPEN PPTX: text not shown (properly) in presentation mode (only)

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

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 CC||armin.le.gr...@me.com,
   ||kelem...@ubuntu.com
   Keywords|bibisectRequest |bibisected, bisected
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=12
   ||6319

--- Comment #5 from Gabor Kelemen (allotropia)  ---
Bibisected on win-7.3 to:

https://git.libreoffice.org/core/+/a9f6d98859321e1b9029acc0c6e9347f4c1cf3b7

author  Armin Le Grand (Allotropia)  Mon Jan 31
19:44:19 2022 +0100
committer   Xisco Fauli Fri Feb 11
20:36:00 2022 +0100

tdf#126319 Corrected bitmap creation from metafile

Adding CC to: Armin Le Grand

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

[Libreoffice-bugs] [Bug 132021] Allow deleting drawing objects in the Navigator (Calc)

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

Timur  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 103030] [META] Navigator sidebar deck and floating window

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

Timur  changed:

   What|Removed |Added

 Depends on||156926


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=156926
[Bug 156926] Ability to Delete all images in Writer
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 156926] Ability to Delete all images in Writer

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

Timur  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=13
   ||2021
 Blocks||103030


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103030
[Bug 103030] [META] Navigator sidebar deck and floating window
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 156920] [META] Textbox/Drawing Object autofit functionality

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

Bug 156918 Summary: "Autofit text" does not make a textbox change dimensions to 
fit (shorter) text
https://bugs.documentfoundation.org/show_bug.cgi?id=156918

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 84909] [META] Enhancing Impress/Draw toolbars and context menu

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

Bug 156918 Summary: "Autofit text" does not make a textbox change dimensions to 
fit (shorter) text
https://bugs.documentfoundation.org/show_bug.cgi?id=156918

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 156885] Metadata in Calc's comment system

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

--- Comment #2 from Balázs Varga (allotropia)  ---
(In reply to Stéphane Guillou (stragu) from comment #1)
> Balázs, I understand we don't have a way to turn that off currently, is that
> right?
> 
> In Tools > Options > LibreOffice Calc > View > Display, we already have
> "Comment indicator". I could imagine having "Comment authorship" in there as
> well.

Yes, there is no config key to turn on/off this feature. Can be add ofc, but
should be the default value true/turned on, I think.

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

[Libreoffice-bugs] [Bug 156918] "Autofit text" does not make a textbox change dimensions to fit (shorter) text

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

Regina Henschel  changed:

   What|Removed |Added

 Resolution|--- |NOTABUG
 CC||rb.hensc...@t-online.de
 Status|UNCONFIRMED |RESOLVED

--- Comment #2 from Regina Henschel  ---
(In reply to Eyal Rozenberg from comment #0)
...
> 5. Right-click the edge of the textbox
> 6. Check "Autofit text"
> 
> Expected results:
> 
> The textbox' height and/or width change, so that it doesn't have empty space
> that could fit additional lines of text.

The expectation is wrong. The tool "Autofit text" belongs to the ODF attribute
"style:shrink-to-fit"[1]. It changes the font size, not the shape size.

The property you are looking for is the setting "Fit width to text" and "Fit
height to text". These are in the text attributes properties of the shape.

[1]
https://docs.oasis-open.org/office/OpenDocument/v1.3/os/part3-schema/OpenDocument-v1.3-os-part3-schema.html#__RefHeading__1420164_253892949

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

[Libreoffice-ux-advise] [Bug 156885] Metadata in Calc's comment system

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

--- Comment #2 from Balázs Varga (allotropia)  ---
(In reply to Stéphane Guillou (stragu) from comment #1)
> Balázs, I understand we don't have a way to turn that off currently, is that
> right?
> 
> In Tools > Options > LibreOffice Calc > View > Display, we already have
> "Comment indicator". I could imagine having "Comment authorship" in there as
> well.

Yes, there is no config key to turn on/off this feature. Can be add ofc, but
should be the default value true/turned on, I think.

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

[Libreoffice-ux-advise] [Bug 156918] "Autofit text" does not make a textbox change dimensions to fit (shorter) text

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

Regina Henschel  changed:

   What|Removed |Added

 Resolution|--- |NOTABUG
 CC||rb.hensc...@t-online.de
 Status|UNCONFIRMED |RESOLVED

--- Comment #2 from Regina Henschel  ---
(In reply to Eyal Rozenberg from comment #0)
...
> 5. Right-click the edge of the textbox
> 6. Check "Autofit text"
> 
> Expected results:
> 
> The textbox' height and/or width change, so that it doesn't have empty space
> that could fit additional lines of text.

The expectation is wrong. The tool "Autofit text" belongs to the ODF attribute
"style:shrink-to-fit"[1]. It changes the font size, not the shape size.

The property you are looking for is the setting "Fit width to text" and "Fit
height to text". These are in the text attributes properties of the shape.

[1]
https://docs.oasis-open.org/office/OpenDocument/v1.3/os/part3-schema/OpenDocument-v1.3-os-part3-schema.html#__RefHeading__1420164_253892949

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

[Libreoffice-bugs] [Bug 156926] New: Ability to Delete all images in Writer

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

Bug ID: 156926
   Summary: Ability to Delete all images in Writer
   Product: LibreOffice
   Version: 24.2.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ti...@libreoffice.org

This is enhancement request for ability to delete all images in Writer.
That request can be seen in forums, and answers are usually to
find/select/extension but delete 1by1, or to use macro. That should be done
more frienfly. 
While this might be done in very long open ticket for better search and replace
with RegEx, that is far fetched. 

Proposed solution is to use Navigator with one of these:
- right click on Images and Delete all (which could be done for some other
objects as well, but in separate ticket)
- Shift/Ctrl click on some objects of the same type, so that Delete key can be
used.

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

[Libreoffice-bugs] [Bug 144906] CRASH when editing date field - floating Navigator open

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

Caolán McNamara  changed:

   What|Removed |Added

Summary|CRASH when editing date |CRASH when editing date
   |field   |field - floating Navigator
   ||open

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

[Libreoffice-bugs] [Bug 156921] No "Autofit text to object" for non-textbox object

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

Regina Henschel  changed:

   What|Removed |Added

 CC||rb.hensc...@t-online.de
 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from Regina Henschel  ---
@Eyal: What kind of rectangle do you mean? We have a rectangle in the "Legacy
Rectangle toolbar" and a rectangle in the "Basic Shapes" category of the custom
shapes.
Same for "other drawing objects". There exist a lot of object, which are used
with text, in addition to the custom shapes, e.g. Polygon, Polyline,
Bézier-curve, legacy oval, table-shape, form control, presentation outline,
presentation title and subtitle.

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

[Libreoffice-ux-advise] [Bug 156921] No "Autofit text to object" for non-textbox object

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

Regina Henschel  changed:

   What|Removed |Added

 CC||rb.hensc...@t-online.de
 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from Regina Henschel  ---
@Eyal: What kind of rectangle do you mean? We have a rectangle in the "Legacy
Rectangle toolbar" and a rectangle in the "Basic Shapes" category of the custom
shapes.
Same for "other drawing objects". There exist a lot of object, which are used
with text, in addition to the custom shapes, e.g. Polygon, Polyline,
Bézier-curve, legacy oval, table-shape, form control, presentation outline,
presentation title and subtitle.

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

[Libreoffice-bugs] [Bug 156336] Can't remove Calc comment authorship metadata

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 101216] [META] Calc comment bugs and enhancements

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||156885


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=156885
[Bug 156885] Metadata in Calc's comment system
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 156885] Metadata in Calc's comment system

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

URL||https://ask.libreoffice.org
   ||/t/comments-in-calc-added-d
   ||ates-after-updating-from-7-
   ||5-to-7-6/94934
 Status|UNCONFIRMED |NEW
Version|7.6.0.3 release |7.6.0.1 rc
 CC||balazs.varga...@gmail.com,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||stephane.guillou@libreoffic
   ||e.org
   Keywords||needsDevAdvice
 Blocks||101216
 Ever confirmed|0   |1
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=73
   ||537,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=15
   ||6336

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
Balázs, I understand we don't have a way to turn that off currently, is that
right?

In Tools > Options > LibreOffice Calc > View > Display, we already have
"Comment indicator". I could imagine having "Comment authorship" in there as
well.


Referenced Bugs:

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

[Libreoffice-ux-advise] [Bug 156885] Metadata in Calc's comment system

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

URL||https://ask.libreoffice.org
   ||/t/comments-in-calc-added-d
   ||ates-after-updating-from-7-
   ||5-to-7-6/94934
 Status|UNCONFIRMED |NEW
Version|7.6.0.3 release |7.6.0.1 rc
 CC||balazs.varga...@gmail.com,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||stephane.guillou@libreoffic
   ||e.org
   Keywords||needsDevAdvice
 Blocks||101216
 Ever confirmed|0   |1
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=73
   ||537,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=15
   ||6336

--- Comment #1 from Stéphane Guillou (stragu) 
 ---
Balázs, I understand we don't have a way to turn that off currently, is that
right?

In Tools > Options > LibreOffice Calc > View > Display, we already have
"Comment indicator". I could imagine having "Comment authorship" in there as
well.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=101216
[Bug 101216] [META] Calc comment bugs and enhancements
-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-bugs] [Bug 156912] LO check for updates reports version 7.4 is up to date, when it should show 7.5 is available

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

Julien Nabet  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 CC||heiko.tietze@documentfounda
   ||tion.org,
   ||xiscofa...@libreoffice.org
 Status|NEW |UNCONFIRMED

--- Comment #4 from Julien Nabet  ---
Steve: I understand what you mean but it seems to me it was on purpose.
Let's put this one to UNCONFIRMED since there's some doubt for the moment.

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

[Libreoffice-bugs] [Bug 154929] [META] Accessibility Check sidebar deck, Automatic Accessibility Checking

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

Bug 156567 Summary: UI: Sidebar plain text warning appears in one line with 
GTK3 backend
https://bugs.documentfoundation.org/show_bug.cgi?id=156567

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

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

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

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

Bug 156567 Summary: UI: Sidebar plain text warning appears in one line with 
GTK3 backend
https://bugs.documentfoundation.org/show_bug.cgi?id=156567

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

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

[Libreoffice-bugs] [Bug 156567] UI: Sidebar plain text warning appears in one line with GTK3 backend

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

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
 Status|NEW |RESOLVED

--- Comment #3 from Gabor Kelemen (allotropia)  ---
Recently this has changed, because Balazs fixed all similar cases: now all
similar warnings are clickable, which makes this issue disappear.
So unless someone adds a new check but without the clickable link feature - we
are good.

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

[Libreoffice-bugs] [Bug 122092] FILEOPEN XLS, LO uses formula instead of the mode repeating values.

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

--- Comment #10 from Michaela  ---
Still repro with:
Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: e46e663cc350d89e4997095466d675b875eb2e04
CPU threads: 12; OS: Windows 10.0 Build 22621; UI render: Skia/Vulkan; VCL: win

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

[Libreoffice-bugs] [Bug 156925] Add a Color Scheme switcher to the Basic IDE

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

--- Comment #1 from Rafael Lima  ---
Created attachment 189155
  --> https://bugs.documentfoundation.org/attachment.cgi?id=189155=edit
Colors used by the proposed color schemes

Here you'll find the colors used by the themes I added to this feature. If
anyone would like to propose changes or new themes, it is very easy to
add/modify them.

The schemes I used were adapted from the ones available in Kate.

I'd like to point out that the color schemes are hard-coded and I don't plan to
implement a UI to allow the user to customize the color schemes. The idea here
is to provide a quick color scheme switcher.

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

[Libreoffice-bugs] [Bug 107899] [META] PPTX paragraph-related issues

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

Bug 150316 Summary: FILESAVE: PPTX: Incorrect indent after RT
https://bugs.documentfoundation.org/show_bug.cgi?id=150316

   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: oox/source sd/qa

2023-08-25 Thread Samuel Mehrbrodt (via logerrit)
 oox/source/export/drawingml.cxx|2 +-
 sd/qa/unit/data/odp/tdf150316.odp  |binary
 sd/qa/unit/export-tests-ooxml1.cxx |9 +
 3 files changed, 10 insertions(+), 1 deletion(-)

New commits:
commit 6e042b1e26bedcc8d8bdcf105ec750b03665c7b0
Author: Samuel Mehrbrodt 
AuthorDate: Fri Aug 25 15:05:42 2023 +0200
Commit: Samuel Mehrbrodt 
CommitDate: Fri Aug 25 20:50:00 2023 +0200

tdf#150316 Fix missing first line indent in pptx export

Change-Id: Ib2cac800b151823b77e44831100c2de9bbda8a16
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156107
Tested-by: Jenkins
Reviewed-by: Samuel Mehrbrodt 

diff --git a/oox/source/export/drawingml.cxx b/oox/source/export/drawingml.cxx
index 1230517eda81..98496aa2c1f8 100644
--- a/oox/source/export/drawingml.cxx
+++ b/oox/source/export/drawingml.cxx
@@ -3440,7 +3440,7 @@ bool DrawingML::WriteParagraphProperties(const 
Reference& rParagra
 mpFS->startElementNS( XML_a, nElement,
XML_lvl, 
sax_fastparser::UseIf(OString::number(nLevel), nLevel > 0),
XML_marL, 
sax_fastparser::UseIf(OString::number(oox::drawingml::convertHmmToEmu(nParaLeftMargin)),
 nParaLeftMargin > 0),
-   XML_indent, 
sax_fastparser::UseIf(OString::number(!bForceZeroIndent ? 
oox::drawingml::convertHmmToEmu(nParaFirstLineIndent) : 0), (bForceZeroIndent 
|| (nParaFirstLineIndent != 0))),
+   XML_indent, 
sax_fastparser::UseIf(OString::number((bForceZeroIndent && nParaFirstLineIndent 
== 0) ? 0 : oox::drawingml::convertHmmToEmu(nParaFirstLineIndent)), 
(bForceZeroIndent || nParaFirstLineIndent != 0)),
XML_algn, GetAlignment( nAlignment ),
XML_defTabSz, 
sax_fastparser::UseIf(OString::number(oox::drawingml::convertHmmToEmu(nParaDefaultTabSize)),
 nParaDefaultTabSize > 0),
XML_rtl, sax_fastparser::UseIf(ToPsz10(bRtl), 
bRtl));
diff --git a/sd/qa/unit/data/odp/tdf150316.odp 
b/sd/qa/unit/data/odp/tdf150316.odp
new file mode 100644
index ..dab2971711f8
Binary files /dev/null and b/sd/qa/unit/data/odp/tdf150316.odp differ
diff --git a/sd/qa/unit/export-tests-ooxml1.cxx 
b/sd/qa/unit/export-tests-ooxml1.cxx
index 2962456ffd49..0a9f82a27e59 100644
--- a/sd/qa/unit/export-tests-ooxml1.cxx
+++ b/sd/qa/unit/export-tests-ooxml1.cxx
@@ -1588,6 +1588,15 @@ CPPUNIT_TEST_FIXTURE(SdOOXMLExportTest1, 
testNarrationMimeType)
 assertXPath(pSlideDoc, "//p:childTnLst/p:audio", "isNarration", "1");
 }
 
+CPPUNIT_TEST_FIXTURE(SdOOXMLExportTest1, testTdf150316)
+{
+createSdImpressDoc("odp/tdf150316.odp");
+save("Impress Office Open XML");
+
+xmlDocUniquePtr pXmlDoc = parseExport("ppt/slides/slide1.xml");
+assertXPath(pXmlDoc, "/p:sld/p:cSld/p:spTree/p:sp[1]/p:txBody/a:p/a:pPr", 
"indent", "-343080");
+}
+
 CPPUNIT_TEST_FIXTURE(SdOOXMLExportTest1, testTdf140865Wordart3D)
 {
 createSdImpressDoc("pptx/tdf140865Wordart3D.pptx");


[Libreoffice-bugs] [Bug 156925] New: Add a Color Scheme switcher to the Basic IDE

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

Bug ID: 156925
   Summary: Add a Color Scheme switcher to the Basic IDE
   Product: LibreOffice
   Version: 7.6.0.2 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rafael.palma.l...@gmail.com

Created attachment 189154
  --> https://bugs.documentfoundation.org/attachment.cgi?id=189154=edit
Video showing how the Color Scheme switcher works

Modern IDEs offer the possibility of quickly switching the color scheme of the
code editor. I believe we should have this in the Basic IDE as well.

Currently we can configure Basic colors in Tools - Options - Application
Colors, which is OK and offers some flexibility to the user.

However, this has the disadvantage of changing color settings for the entire
application. Also, if the user wants to quickly switch the color scheme in the
Basic IDE, it is currently not possible. And modifying the existing Application
Colors scheme via the Options dialog is tedious.

Therefore a quick color scheme switcher would come in handy.

I have a WIP patch with a proposal. I've attached a video of how it works.

Here's a description of how it works:
1) If the user chooses "Use Application Colors", the IDE will use the colors
defined by the currently selected scheme in the Tools - Options dialog
2) If the user chooses "Choose Color Scheme", then they'll be able to choose
among the available color schemes, which are instantly applied to the editor

When a color scheme is selected, it overrides the settings in Tools - Options
(these options are not overwritten). So if the user simply wants to revert to
the default colors, they simply need to choose the option "Use Application
Colors".

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

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

2023-08-25 Thread Tomaž Vajngerl (via logerrit)
 cui/source/tabpages/chardlg.cxx |   13 +
 1 file changed, 1 insertion(+), 12 deletions(-)

New commits:
commit 3f7e9b2ea67a8de9ad9dd819ec2eb91e8180af95
Author: Tomaž Vajngerl 
AuthorDate: Fri Aug 18 22:28:33 2023 +0200
Commit: Tomaž Vajngerl 
CommitDate: Fri Aug 25 20:48:34 2023 +0200

cui: use common menthod to get the complex color from a NamedColor

NamedColor implements a getComplexColor method, which creates the
ComplexColor from the NamedColor attributes. We don't need to do
this ourselves.

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

diff --git a/cui/source/tabpages/chardlg.cxx b/cui/source/tabpages/chardlg.cxx
index 0bd14b7b38cb..3245f516338c 100644
--- a/cui/source/tabpages/chardlg.cxx
+++ b/cui/source/tabpages/chardlg.cxx
@@ -1593,18 +1593,7 @@ bool SvxCharEffectsPage::FillItemSetColor_Impl( 
SfxItemSet& rSet )
 
 if (bChanged)
 {
-SvxColorItem aItem( aSelectedColor.m_aColor, nWhich );
-
-// The color was picked from the theme palette, remember its index.
-model::ThemeColorType eType = 
model::convertToThemeColorType(aSelectedColor.m_nThemeIndex);
-if (eType != model::ThemeColorType::Unknown)
-{
-auto aComplexColor = model::ComplexColor::Theme(eType);
-
aComplexColor.addTransformation({model::TransformationType::LumMod, 
aSelectedColor.m_nLumMod});
-
aComplexColor.addTransformation({model::TransformationType::LumOff, 
aSelectedColor.m_nLumOff});
-aItem.setComplexColor(aComplexColor);
-}
-
+SvxColorItem aItem(aSelectedColor.m_aColor, 
aSelectedColor.getComplexColor(), nWhich);
 rSet.Put(aItem);
 }
 else if ( SfxItemState::DEFAULT == rOldSet.GetItemState( nWhich, false ) )


[Libreoffice-bugs] [Bug 156912] LO check for updates reports version 7.4 is up to date, when it should show 7.5 is available

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

steve  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Resolution|NOTABUG |---
 Status|RESOLVED|NEW
   Keywords||needsUXEval

--- Comment #3 from steve  ---
If statement from comment 1 is correct I find this behavior rather unexpected.

An update checker has a single purpose: check for new versions. And when a
branch comes to an end it fails? That can't be right.

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

[Libreoffice-bugs] [Bug 156924] Issues with grid controls on Base forms and Gtk

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

--- Comment #3 from Andreas Säger  ---
Created attachment 189153
  --> https://bugs.documentfoundation.org/attachment.cgi?id=189153=edit
The database used for the screen recording

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

[Libreoffice-bugs] [Bug 156924] Issues with grid controls on Base forms and Gtk

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

--- Comment #2 from Andreas Säger  ---
Created attachment 189152
  --> https://bugs.documentfoundation.org/attachment.cgi?id=189152=edit
Screen recording with generic toolkit

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

[Libreoffice-bugs] [Bug 156924] Issues with grid controls on Base forms and Gtk

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

--- Comment #1 from Andreas Säger  ---
Created attachment 189151
  --> https://bugs.documentfoundation.org/attachment.cgi?id=189151=edit
Screen recording with Gtk toolkit

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

[Libreoffice-bugs] [Bug 156924] New: Issues with grid controls on Base forms and Gtk

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

Bug ID: 156924
   Summary: Issues with grid controls on Base forms and Gtk
   Product: LibreOffice
   Version: 7.5.5.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: graphics stack
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ville...@t-online.de

Description:
Since years, I turn on SAL_USE_VCLPLUGIN=gen because I can not use many of my
database forms with SAL_USE_VCLPLUGIN=gtk. 
The attached screen recordings demonstrate some of my issues regarding a table
control losing focus and changing listbox values unexpectedly when navigating
by up/down arrow keys.
GtkForm.mp4 demonstrates the issues.
GenericForm.mp3 demonstrates how it properly works with the generic toolkit.

Steps to Reproduce:
1. Start up a Gtk desktop. Open my database and the form therein.
2. Focus a listbox column ("Category"or"Person") in the grey table control, hit
up/down arrows.
3.

Actual Results:
Listbox value changes because it takes the up/down key.

Expected Results:
Up/down should move within the record set unless a listbox has been dropped
down.


Reproducible: Always


User Profile Reset: Yes

Additional Info:
See screen recordings with gtk and with generic toolkit.

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

[Libreoffice-bugs] [Bug 156923] New: The FORMATTING for Hyperlinks extends beyond the Hyperlink Text

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

Bug ID: 156923
   Summary: The FORMATTING for Hyperlinks extends beyond the
Hyperlink Text
   Product: LibreOffice
   Version: 7.6.0.3 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: provisioneer...@gmail.com

Created attachment 189150
  --> https://bugs.documentfoundation.org/attachment.cgi?id=189150=edit
The Insert Hyperlink Dialog and the rendered link

Created hyperlinks display with the hyperlink color and underline extending
well past the text of the link.

I wasn't doing anything special so there's not much to say about context I
imagine.

In the attached pic, I highlighted the area of concern with green.

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

[Libreoffice-bugs] [Bug 151451] SearchDescriptor returns wrong result when Tracking enabled (macro search finds not-displayed redline text)

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

Justin L  changed:

   What|Removed |Added

Summary|SearchDescriptor returns|SearchDescriptor returns
   |wrong result when Tracking  |wrong result when Tracking
   |enabled |enabled (macro search finds
   ||not-displayed redline text)

--- Comment #3 from Justin L  ---
I got an error when running the macro in 24.2.

So I just did Ctrl-H (find replace dialog), turn on regex and searched for
[:digit:][:digit:]:[:digit:][:digit:]:[:digit:][:digit:].

It only found-next the three time-stamps. Interactively it works fine.

So, I'm guessing that this 6.2 commit is some major re-write of redlining,
where the "deleted text" stays around as regular nodes and is just displayed or
not. I wouldn't consider this a regression. I imagine there is a way the macro
can be re-written to accommodate the change.

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

[Libreoffice-bugs] [Bug 103494] [META] Textbox bugs and enhancements

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on|137892  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=137892
[Bug 137892] Automatic color text have different color when Autofit enabled
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 137892] Automatic color text have different color when Autofit enabled

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks|103494  |


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 103494] [META] Textbox bugs and enhancements

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on|115328  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=115328
[Bug 115328] Impress: paragraph margins do not work correctly with AutoFit text
boxes
-- 
You are receiving this mail because:
You are the assignee for the bug.

  1   2   3   4   >