[Libreoffice-bugs] [Bug 156906] New: Be as good as MS Word

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

Bug ID: 156906
   Summary: Be as good as MS Word
   Product: LibreOffice
   Version: 3.3.0 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Android Editor
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: schus...@praxis-schuster.ch

Description:
For me, one of the most important differences to MS Word is that Word already
suggests the correct save name when saving the document by inserting the title
of the document in the save mask. surely it would be easy to do that with
Libreoffice as well. Thank you very much!

Actual Results:
s. above

Expected Results:
s. above


Reproducible: Always


User Profile Reset: No

Additional Info:
s. above

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

[Libreoffice-bugs] [Bug 103270] [META] Image/Picture dialog bugs and enhancements

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

Bug 86628 Summary: Add new undo / reset / un- crop function to context menu and 
dialog
https://bugs.documentfoundation.org/show_bug.cgi?id=86628

   What|Removed |Added

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

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

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

2023-08-24 Thread Andrea Rosetti (via logerrit)
 cui/source/inc/grfpage.hxx  |3 ++
 cui/source/tabpages/grfpage.cxx |   28 +++
 cui/uiconfig/ui/croppage.ui |   48 
 3 files changed, 56 insertions(+), 23 deletions(-)

New commits:
commit 826300d55b8f18593c4b56fb448d09fac52820bd
Author: Andrea Rosetti 
AuthorDate: Wed Aug 2 11:40:25 2023 +0200
Commit: Heiko Tietze 
CommitDate: Fri Aug 25 07:37:33 2023 +0200

tdf#86628 Add reset crop function to dialog

Added a function that uncrops the image, keeping the modified size
(which can be restored using the already existing Original Size button)

Change-Id: I8e98de2b586c68d52f819955ce5a74f20cbe6698
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155219
Tested-by: Jenkins
Reviewed-by: Heiko Tietze 

diff --git a/cui/source/inc/grfpage.hxx b/cui/source/inc/grfpage.hxx
index adfaebc33595..673062b7593a 100644
--- a/cui/source/inc/grfpage.hxx
+++ b/cui/source/inc/grfpage.hxx
@@ -80,6 +80,8 @@ class SvxGrfCropPage : public SfxTabPage
 std::unique_ptr m_xOrigSizeFT;
 std::unique_ptr m_xOrigSizePB;
 
+std::unique_ptr m_xUncropPB;
+
 // Example
 std::unique_ptr m_xExampleWN;
 
@@ -87,6 +89,7 @@ class SvxGrfCropPage : public SfxTabPage
 DECL_LINK(SizeHdl, weld::MetricSpinButton&, void);
 DECL_LINK(CropModifyHdl, weld::MetricSpinButton&, void);
 DECL_LINK(OrigSizeHdl, weld::Button&, void);
+DECL_LINK(UncropHdl, weld::Button&, void);
 
 voidCalcZoom();
 voidCalcMinMaxBorder();
diff --git a/cui/source/tabpages/grfpage.cxx b/cui/source/tabpages/grfpage.cxx
index aa49c2a7267c..fac0bfb6ab05 100644
--- a/cui/source/tabpages/grfpage.cxx
+++ b/cui/source/tabpages/grfpage.cxx
@@ -75,6 +75,7 @@ SvxGrfCropPage::SvxGrfCropPage(weld::Container* pPage, 
weld::DialogController* p
 , m_xOrigSizeGrid(m_xBuilder->weld_widget("origsizegrid"))
 , m_xOrigSizeFT(m_xBuilder->weld_label("origsizeft"))
 , m_xOrigSizePB(m_xBuilder->weld_button("origsize"))
+, m_xUncropPB(m_xBuilder->weld_button("uncrop"))
 , m_xExampleWN(new weld::CustomWeld(*m_xBuilder, "preview", m_aExampleWN))
 {
 SetExchangeSupport();
@@ -104,6 +105,7 @@ SvxGrfCropPage::SvxGrfCropPage(weld::Container* pPage, 
weld::DialogController* p
 m_xBottomMF->connect_value_changed( aLk );
 
 m_xOrigSizePB->connect_clicked(LINK(this, SvxGrfCropPage, OrigSizeHdl));
+m_xUncropPB->connect_clicked(LINK(this, SvxGrfCropPage, UncropHdl));
 }
 
 SvxGrfCropPage::~SvxGrfCropPage()
@@ -524,6 +526,32 @@ IMPL_LINK_NOARG(SvxGrfCropPage, OrigSizeHdl, 
weld::Button&, void)
 m_xHeightZoomMF->set_value(100, FieldUnit::NONE);
 m_bSetOrigSize = true;
 }
+
+/*
+description: reset crop
+ */
+
+IMPL_LINK_NOARG(SvxGrfCropPage, UncropHdl, weld::Button&, void)
+{
+SfxItemPool* pPool = GetItemSet().GetPool();
+DBG_ASSERT( pPool, "Where is the pool?" );
+
+m_xLeftMF->set_value(0, FieldUnit::NONE);
+m_xRightMF->set_value(0, FieldUnit::NONE);
+m_xTopMF->set_value(0, FieldUnit::NONE);
+m_xBottomMF->set_value(0, FieldUnit::NONE);
+
+m_aExampleWN.SetLeft(0);
+m_aExampleWN.SetRight(0);
+m_aExampleWN.SetTop(0);
+m_aExampleWN.SetBottom(0);
+
+m_aExampleWN.Invalidate();
+CalcMinMaxBorder();
+
+}
+
+
 /*
 description: compute scale
  */
diff --git a/cui/uiconfig/ui/croppage.ui b/cui/uiconfig/ui/croppage.ui
index b7fe3d8224a6..93f3eafe504a 100644
--- a/cui/uiconfig/ui/croppage.ui
+++ b/cui/uiconfig/ui/croppage.ui
@@ -1,5 +1,5 @@
 
-
+
 
   
   
@@ -51,7 +51,6 @@
 1
 10
   
-  
   
 True
 False
@@ -68,15 +67,14 @@
 0
 none
 
-  
   
 True
 False
+12
+6
 True
 6
 18
-12
-6
 
   
 Keep _scale
@@ -108,7 +106,6 @@
   
 
 
-  
   
 True
 False
@@ -133,8 +130,8 @@
 True
 True
 True
+True
 adjustment1
-True
 2
   
   
@@ -161,8 +158,8 @@
 True
 True
 True
+True
 adjustment7
-True
 2
   
   
@@ -177,7 +174,6 @@
   
 
 
-  
   
 True
 False
@@ -216,8 +212,8 @@

[Libreoffice-bugs] [Bug 86349] [META] Context menu bugs and enhancements

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

Bug 86628 Summary: Add new undo / reset / un- crop function to context menu and 
dialog
https://bugs.documentfoundation.org/show_bug.cgi?id=86628

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 86899] [META] Requests for the addition of UNO commands

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

Bug 86628 Summary: Add new undo / reset / un- crop function to context menu and 
dialog
https://bugs.documentfoundation.org/show_bug.cgi?id=86628

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 108280] [META] Image crop bugs and enhancements

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

Bug 86628 Summary: Add new undo / reset / un- crop function to context menu and 
dialog
https://bugs.documentfoundation.org/show_bug.cgi?id=86628

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 107833] [META] Writer paragraph style bugs and enhancements

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

BogdanB  changed:

   What|Removed |Added

 Depends on||156897


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=156897
[Bug 156897] Font changes when copy and paste multiple lines with incomplete
first line
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 108844] [META] Cut/copy bugs and enhancements

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

BogdanB  changed:

   What|Removed |Added

 Depends on||156897


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=156897
[Bug 156897] Font changes when copy and paste multiple lines with incomplete
first line
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 156897] Font changes when copy and paste multiple lines with incomplete first line

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

BogdanB  changed:

   What|Removed |Added

Summary|font changes when   |Font changes when copy and
   |copypasting multiple lines  |paste multiple lines with
   |with incomplete first line  |incomplete first line
 Blocks||107833, 108844
 CC||buzea.bog...@libreoffice.or
   ||g


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107833
[Bug 107833] [META] Writer paragraph style bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=108844
[Bug 108844] [META] Cut/copy bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 107331] [META] Document themes bugs and enhancements

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

BogdanB  changed:

   What|Removed |Added

 Depends on||156888


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=156888
[Bug 156888] Duplicate entry in document themes
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 156888] Duplicate entry in document themes

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

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g
 Blocks||107331


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 123103] FILEOPEN PPTX Font size is smaller compared to MSO because LO doesn't recognize Autofit Text to Placeholder

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

Aron Budea  changed:

   What|Removed |Added

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

-- 
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-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122023

Aron Budea  changed:

   What|Removed |Added

   See Also|https://bugs.documentfounda |
   |tion.org/show_bug.cgi?id=10 |
   |7694,   |
   |https://bugs.documentfounda |
   |tion.org/show_bug.cgi?id=12 |
   |3103|

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

[Libreoffice-bugs] [Bug 107694] Impress: "Shrink text on overflow" text box option not recognized from PPTX, text overlapping

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

Aron Budea  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 156900] Delete row with track changes ON and show OFF doesn't hide the deleted row

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

Telesto  changed:

   What|Removed |Added

Summary|Delete row with track   |Delete row with track
   |changes ON doesn't hide the |changes ON and show OFF
   |deleted row |doesn't hide the deleted
   ||row

-- 
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-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=51132

--- Comment #37 from mkass...@internode.net ---
Cannot print DL envelopes. Please try to fix.

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

[Libreoffice-bugs] [Bug 153209] Filesave, fileclose- calc crashes on exit when three or four calc files open simultaneously

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

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

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 156455] Allow toggling repeating-header property of a row in row context menu

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

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

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

[Libreoffice-bugs] [Bug 108914] [META] Password protected file bugs and enhancements

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

Bug 150083 Summary: FILESAVE ODS Saving modified spreadsheet with File open & 
File edit password and Shared mode leads to General I/O Error
https://bugs.documentfoundation.org/show_bug.cgi?id=150083

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 153198] 6.4 libreoffice word issues

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

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

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 150254] The style preview menu loses its formatting and confuses and mixes up all

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

--- Comment #5 from QA Administrators  ---
Dear FERNANDO,

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 150083] FILESAVE ODS Saving modified spreadsheet with File open & File edit password and Shared mode leads to General I/O Error

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

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 150058] Libre Draw doesn't export dotted lines and underlined text in eps and other file types

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

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 150083] FILESAVE ODS Saving modified spreadsheet with File open & File edit password and Shared mode leads to General I/O Error

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

--- Comment #5 from QA Administrators  ---
Dear Gabor Kelemen (allotropia),

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 150058] Libre Draw doesn't export dotted lines and underlined text in eps and other file types

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

--- Comment #4 from QA Administrators  ---
Dear Kemo Kemic,

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 149874] LibreOffice Writer 7.3.4.2 corrupts previously saved documents

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

--- Comment #10 from QA Administrators  ---
Dear john,

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 147643] EDITING Loss of OLE objects (Math formulas) in Libreoffice Writer when using experimental visual editor

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

--- Comment #10 from QA Administrators  ---
Dear Dmitry,

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 149855] libreoffice calculating with the sum function is fooled somehow by formatting bugs, that keep changing back to default, I think

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

--- Comment #3 from QA Administrators  ---
Dear Mark Keller,

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 153477] LibreOffice Writer adds empty lines to some pages of the document after closing and opening again

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

--- Comment #5 from QA Administrators  ---
Dear sri_ni_vas_s,

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 96635] FILEOPEN PDF: Wrong masking, box shown over triangle in arrows

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

--- Comment #17 from QA Administrators  ---
Dear ZioTibia81,

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 142747] Cannot apply emphasis animation effects to selections of text

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

--- Comment #3 from QA Administrators  ---
Dear Eyal Rozenberg,

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 130888] Basic is Faulty in creating / deleting User Defined Properties

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

--- Comment #5 from QA Administrators  ---
Dear atemple,

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 113936] Importing a PDF is slower compared to 5.4

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 32249] Make it easier to edit text in imported PDFs

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

V Stuart Foote  changed:

   What|Removed |Added

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

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

[Libreoffice-ux-advise] [Bug 156507] Ability to remove non-printing/"atypical" characters in a stretch of text

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

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #12 from V Stuart Foote  ---
(In reply to Eyal Rozenberg from comment #11)
> (In reply to ⁨خالد حسني⁩ from comment #10)
> 
> They understand enough to know they're getting some junk in addition to the
> text they want; keyboard traversal is weird, and the "junk" may be affecting
> rendering behavior.
> 
> Just because it's easier if users simply not do this, does not mean that
> they don't (or that they shouldn't). You could argue that there is no
> reasonable way this could work; perhaps, but - I very much doubt it. While
> we have not demonstrated that there can be no reasonable choice of
> characters to filter (say, a language-specific or locale-specific choice) -
> we should entertain the possibility that it does exist. And assuming it
> exists - I believe should offer it, to make this kind of work easier for
> users.

With +F10 exposing NPC, an +X toggle will show Unicode for the
specific NPC at the text cursor--and then toggle it back.  Then knowing the
Unicode, it is trivial to find/delete (or edit) via Find-Replace dialog.  It is
not dynamic (requiring linear progression of codepoints being removed from the
text) but it is already functional.

Otherwise I don't see a need for providing a new dialog as a core capability as
it is very much a corner case, and dev effort is not justified. 

More on point would be dev work to complete the residual NPC toggle exposure
from bug 58434

And if the use case is only for parsing PDF--a new Writer paragraph oriented
"reflow" implementation, replacing Justin's text box 'combine' based PDF import
done for bug 32249, is really the ask. 

And implementing a new PDF parser/reflow would be the opportunity to
selectively clean up any NPC or malformed text runs from PDF source.  While
completing the per word /ActualText support of bug 117428 would move quality of
our PDF exports (optionally as it has a real performance and size cost). 

Either dupe this to bug 32249, or more simply it becomes => WF

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

[Libreoffice-bugs] [Bug 156507] Ability to remove non-printing/"atypical" characters in a stretch of text

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

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #12 from V Stuart Foote  ---
(In reply to Eyal Rozenberg from comment #11)
> (In reply to ⁨خالد حسني⁩ from comment #10)
> 
> They understand enough to know they're getting some junk in addition to the
> text they want; keyboard traversal is weird, and the "junk" may be affecting
> rendering behavior.
> 
> Just because it's easier if users simply not do this, does not mean that
> they don't (or that they shouldn't). You could argue that there is no
> reasonable way this could work; perhaps, but - I very much doubt it. While
> we have not demonstrated that there can be no reasonable choice of
> characters to filter (say, a language-specific or locale-specific choice) -
> we should entertain the possibility that it does exist. And assuming it
> exists - I believe should offer it, to make this kind of work easier for
> users.

With +F10 exposing NPC, an +X toggle will show Unicode for the
specific NPC at the text cursor--and then toggle it back.  Then knowing the
Unicode, it is trivial to find/delete (or edit) via Find-Replace dialog.  It is
not dynamic (requiring linear progression of codepoints being removed from the
text) but it is already functional.

Otherwise I don't see a need for providing a new dialog as a core capability as
it is very much a corner case, and dev effort is not justified. 

More on point would be dev work to complete the residual NPC toggle exposure
from bug 58434

And if the use case is only for parsing PDF--a new Writer paragraph oriented
"reflow" implementation, replacing Justin's text box 'combine' based PDF import
done for bug 32249, is really the ask. 

And implementing a new PDF parser/reflow would be the opportunity to
selectively clean up any NPC or malformed text runs from PDF source.  While
completing the per word /ActualText support of bug 117428 would move quality of
our PDF exports (optionally as it has a real performance and size cost). 

Either dupe this to bug 32249, or more simply it becomes => WF

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

[Libreoffice-bugs] [Bug 156905] [Regression] Copy and paste formula, now paste value

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

--- Comment #1 from Óvári  ---
Created attachment 189140
  --> https://bugs.documentfoundation.org/attachment.cgi?id=189140=edit
Table with formulae in first and last columns not working

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

[Libreoffice-bugs] [Bug 156905] New: [Regression] Copy and paste formula, now paste value

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

Bug ID: 156905
   Summary: [Regression] Copy and paste formula, now paste value
   Product: LibreOffice
   Version: 7.6.0.3 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ovari...@zoho.com

Description:
LibreOffice 7.5: correct copy and paste of formula
LibreOffice 7.6: (bug/regression) incorrect copy and paste of value

Steps to Reproduce:
LibreOffice 7.5: correct copy and paste of formula
LibreOffice 7.6: (bug) incorrect copy and paste of value

Table with first column and last column with formulae.

First column formula, which has the value ‘2’  
 =+1
Last column formula, which has the value ‘2’ in the first column  
=+

1. Update LibreOffice to version 7.6.0.3
2. Select in the first column the value which shows ‘2’, so it will look like:
`Image in attached file`
3. Copy that cell (Ctrl+C)
4. Highlight some cells, say ‘4’ to ‘9’
`Image in attached file`
5. Paste (Ctrl+V)
6. Now the cell contain ‘2’, not the formula
`Image in attached file`
7. Seems like there are more bugs as the last column (pg) does not update when
penultimate column (pp.) is changed.

Actual Results:
Paste value

Expected Results:
Paste formula


Reproducible: Always


User Profile Reset: No

Additional Info:
Version: 7.6.0.3 (X86_64) / LibreOffice Community
Build ID: 69edd8b8ebc41d00b4de3915dc82f8f0fc3b6265
CPU threads: 12; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: en-AU (en_AU.UTF-8); UI: en-US
Flatpak
Calc: threaded

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

[Libreoffice-bugs] [Bug 156900] Delete row with track changes ON doesn't hide the deleted row

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

Aaron  changed:

   What|Removed |Added

 CC||aaronth...@gmail.com

--- Comment #1 from Aaron  ---
Thanks for reporting. I cannot reproduce in

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

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

[Libreoffice-bugs] [Bug 156897] font changes when copypasting multiple lines with incomplete first line

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

Aaron  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 156897] font changes when copypasting multiple lines with incomplete first line

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

Aaron  changed:

   What|Removed |Added

 CC||aaronth...@gmail.com

--- Comment #1 from Aaron  ---
Thanks for reporting. I can reproduce in

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

I've noticed from testing that the issue occurs only when the formatting style
is anything except 'default paragraph style'. The first copied line will change
to 'default paragraph style' and the second copied line retains the original
formatting. This results in the change in font as described. The defect also
only seems to happen with liberation font styles and not other fonts like
'Times New Roman' for example.

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

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

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

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

https://git.libreoffice.org/help/commit/a002539ad82004b15916510d2feaec5771a9c198

tdf#155875 Tab'd UI cmds Writer/Format in Help(18)

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

[Libreoffice-commits] core.git: helpcontent2

2023-08-24 Thread Olivier Hallot (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit e15bf7363adb20c77aee51e09b6f2604d741619b
Author: Olivier Hallot 
AuthorDate: Thu Aug 24 20:17:49 2023 -0300
Commit: Gerrit Code Review 
CommitDate: Fri Aug 25 01:17:49 2023 +0200

Update git submodules

* Update helpcontent2 from branch 'master'
  to a002539ad82004b15916510d2feaec5771a9c198
  - tdf#155875 Tab'd UI cmds Writer/Format in Help(18)

+ refactoring
+ Writer Format menu (part 18)
+ Anchors (include Calc image anchor)

Change-Id: I0f9f1f36d707ae0267c2fe23ab3382b6014adf16
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/156073
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index 69be688d8006..a002539ad820 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 69be688d8006621fbf52a5a13cb7a46caaba4d62
+Subproject commit a002539ad82004b15916510d2feaec5771a9c198


[Libreoffice-commits] help.git: AllLangHelp_shared.mk source/text

2023-08-24 Thread Olivier Hallot (via logerrit)
 AllLangHelp_shared.mk |1 
 source/text/shared/00/00040501.xhp|   76 ++
 source/text/shared/01/0526.xhp|   45 ++--
 source/text/shared/01/05260100.xhp|   19 +---
 source/text/shared/01/05260200.xhp|6 ++
 source/text/shared/01/05260300.xhp|6 ++
 source/text/shared/01/05260400.xhp|   12 +++--
 source/text/shared/01/05260500.xhp|   12 +++--
 source/text/shared/01/05260600.xhp|6 ++
 source/text/shared/01/fit_to_cell.xhp |   31 +
 10 files changed, 166 insertions(+), 48 deletions(-)

New commits:
commit a002539ad82004b15916510d2feaec5771a9c198
Author: Olivier Hallot 
AuthorDate: Thu Aug 24 17:39:31 2023 -0300
Commit: Olivier Hallot 
CommitDate: Fri Aug 25 01:17:48 2023 +0200

tdf#155875 Tab'd UI cmds Writer/Format in Help(18)

+ refactoring
+ Writer Format menu (part 18)
+ Anchors (include Calc image anchor)

Change-Id: I0f9f1f36d707ae0267c2fe23ab3382b6014adf16
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/156073
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/AllLangHelp_shared.mk b/AllLangHelp_shared.mk
index 9f7426da47..1c80e74deb 100644
--- a/AllLangHelp_shared.mk
+++ b/AllLangHelp_shared.mk
@@ -343,6 +343,7 @@ $(eval $(call gb_AllLangHelp_add_helpfiles,shared,\
 helpcontent2/source/text/shared/01/addsignatureline \
 helpcontent2/source/text/shared/01/signsignatureline \
 helpcontent2/source/text/shared/01/extensionupdate \
+helpcontent2/source/text/shared/01/fit_to_cell \
 helpcontent2/source/text/shared/01/formatting_mark \
 helpcontent2/source/text/shared/01/font_features \
 helpcontent2/source/text/shared/01/gallery \
diff --git a/source/text/shared/00/00040501.xhp 
b/source/text/shared/00/00040501.xhp
index 31ff21885c..62106cad03 100644
--- a/source/text/shared/00/00040501.xhp
+++ b/source/text/shared/00/00040501.xhp
@@ -422,10 +422,12 @@
 
 
 
-For a selected object, 
choose Format - Anchor.
+
+Choose Format 
- Anchor.
+
 Right-click on 
a selected object - choose Anchor.
 
-  On Drawing 
Object Properties bar, Image bar, Frame bar, OLE 
Objects bar or Form 
Design bar, click
+  
 
 
 
@@ -440,11 +442,69 @@
 
 
 
-Choose Format - Anchor - To 
Page.
-Choose Format - Anchor - To 
Paragraph.
-Choose Format - Anchor - To 
Character.
-Choose Format - Anchor - As 
Character.
-Choose Format - Anchor - To 
Frame.
-Choose Format - Anchor - To 
Cell.
+
+
+
+Choose Format - 
Anchor - To Page.
+
+Choose 
Anchor - To Page.
+
+Choose 
Image - Anchor menu - To Page.
+
+
+
+
+Choose Format - 
Anchor - To Paragraph.
+
+Choose 
Anchor - To Paragraph.
+
+Choose 
Image - Anchor menu - To Paragraph.
+
+
+
+
+Choose Format - 
Anchor - To Character.
+
+Choose 
Anchor - To Character.
+
+Choose 
Image - Anchor menu - To Character.
+
+
+
+
+Choose Format - 
Anchor - As Character.
+
+Choose 
Anchor - As Character.
+
+Choose 
Image - Anchor menu - As Character.
+
+
+
+
+
+Choose Format - 
Anchor - To Frame.
+
+Choose 
Anchor - To Frame.
+
+Choose 
Image - Anchor menu - To Frame.
+
+
+
+
+Choose Format - 
Anchor - To Cell.
+
+Choose 
Anchor - To Cell.
+
+Choose 
Image - Anchor menu - To Cell.
+
+
+
+Choose 
Format - Anchor - To Cell (resize with cell).
+
+Choose 
Anchor - To Cell (resize with cell).
+Choose 
Fit to Cell Size.
+
+Choose 
Image - Anchor menu - To Cell (resize with 
cell).
+
 
 
diff --git a/source/text/shared/01/0526.xhp 
b/source/text/shared/01/0526.xhp
index 15c61564dc..c140e46de0 100644
--- a/source/text/shared/01/0526.xhp
+++ b/source/text/shared/01/0526.xhp
@@ -19,43 +19,44 @@
  -->
 
 
-Anchor
+Anchor
 /text/shared/01/0526.xhp
 
 
 
+
 
-
-Anchor
-Shows anchoring options for the selected object.
+Anchor
+Shows anchoring 
options for the selected object.
 
 
 
 
 
-
-
+
+
+
+
+
 
-
 
-
-
-
-
-
-
+
+
+
+
+
+If the selected object is in a frame, you can 
also anchor the object to the frame.
+
 
+
 
-
-
+
+
+
+
+
+
 
-
-
-If the selected object is in a 
frame, you can also anchor the object to the frame.
-
-
 
-
-
 
 
diff --git a/source/text/shared/01/05260100.xhp 
b/source/text/shared/01/05260100.xhp
index 6fd6bf315c..55db77b514 100644
--- a/source/text/shared/01/05260100.xhp
+++ 

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

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

--- Comment #1 from Gerald Pfeifer  ---
Created attachment 189139
  --> https://bugs.documentfoundation.org/attachment.cgi?id=189139=edit
Screenshot of Impress in presentation mode

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

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

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

Bug ID: 156904
   Summary: FILEOPEN PPTX: text rendered green instead of white in
presentation mode
   Product: LibreOffice
   Version: 6.0.7.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ger...@pfeifer.com

Created attachment 189138
  --> https://bugs.documentfoundation.org/attachment.cgi?id=189138=edit
Sample slide (PPTX)

In edit mode the sample document looks identical in Impress and
PowerPoint - text is rendered in white.

In presentation mode Impress renders that same text as green
(whereas PowerPoint stays with white).

Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: b5aaf194866c5e416167cb54d37f9f04dabc5375
CPU threads: 8; OS: Linux 6.4; UI render: default; VCL: gtk3
Locale: en-US (en_US.UTF-8); UI: en-US

...back to 6.4 at least.

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

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

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

Bug 123103 Summary: FILEOPEN PPTX Font size is smaller compared to MSO because 
LO doesn't recognize Autofit Text to Placeholder
https://bugs.documentfoundation.org/show_bug.cgi?id=123103

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

-- 
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-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122023

--- Comment #19 from Gabor Kelemen (allotropia)  ---
*** Bug 123103 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 123103] FILEOPEN PPTX Font size is smaller compared to MSO because LO doesn't recognize Autofit Text to Placeholder

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

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|NEW |RESOLVED

--- Comment #10 from Gabor Kelemen (allotropia)  ---
I think this is actually the same issue as bug 122023.

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

-- 
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-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122023

--- Comment #18 from Gabor Kelemen (allotropia)  ---
Created attachment 189137
  --> https://bugs.documentfoundation.org/attachment.cgi?id=189137=edit
The third slide of the new example file in PP 2016 and Impress master

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

[Libreoffice-bugs] [Bug 148328] When opening an odt document, the graphic object is not visible

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

Rajasekaran Karunanithi  changed:

   What|Removed |Added

 CC||rajasekara...@gmail.com

--- Comment #5 from Rajasekaran Karunanithi  ---
I opened in LO 24.2.0.0 alpha release and also in https://odfviewer.nsspot.net/
and I see the graphic object.No problem at all.

Can't reproduce in LO 24.2.0.0 alpha release under Windows 10(x64).

Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: b5aaf194866c5e416167cb54d37f9f04dabc5375
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: en-IN (en_IN); UI: en-US
Calc: threaded

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

[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-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122023

--- Comment #17 from Gabor Kelemen (allotropia)  ---
Created attachment 189136
  --> https://bugs.documentfoundation.org/attachment.cgi?id=189136=edit
The second slide of the new example file in PP 2016 and Impress master

-- 
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-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122023

--- Comment #16 from Gabor Kelemen (allotropia)  ---
Created attachment 189135
  --> https://bugs.documentfoundation.org/attachment.cgi?id=189135=edit
The first slide of the new example file in PP 2016 and Impress master

Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: c9916d9be9c060d43fc063b76d70629162650fea
CPU threads: 15; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: en-US (hu_HU); UI: en-US
Calc: threaded

-- 
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-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122023

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 CC||kelem...@ubuntu.com

--- Comment #15 from Gabor Kelemen (allotropia)  ---
Created attachment 189134
  --> https://bugs.documentfoundation.org/attachment.cgi?id=189134=edit
Modified example file from PP 2016

There seems to be a bit of a difference in case of Title type placeholders and
the "Shrink text on overflow" setting.
This file demonstrates the setting with 60, 40 and 20 pt font sizes and small
placeholder boxes.

The key is that the same setting operates a different resizing algorithm,
depending on the placeholder type: 

- if it's a Title, then the font size is reduced by exactly 10%. So we get
54pt, 36pt and 18 pt, but overall the text happily overflows the small boxes.

- if it's not a Title, but Subtitle, Content then the font size is reduced as
much as is needed for the text to fit inside the available box. So we get
around 10-20 pt font sizes for the lower boxes.

Impress does the latter algorithm for all textboxes (approximately correctly),
but for Title type boxes, should do the "10% font size reduction" one.

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

[Libreoffice-bugs] [Bug 156887] Exporting csv or xlsx to dbf

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

--- Comment #3 from ady  ---
(In reply to Dick Hildreth from comment #0)
> The data set contains PII, so sharing example data must be handled carefully
> and properly.

Sharing a file in bug reports means it is publicly available.

https://wiki.documentfoundation.org/QA/Bugzilla/Sanitizing_Files_Before_Submission

-- 
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-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156903

--- Comment #1 from Gerald Pfeifer  ---
Created attachment 189133
  --> https://bugs.documentfoundation.org/attachment.cgi?id=189133=edit
Visual comparison PowerPoint (top) vs Impress (bottom)

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

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

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

Bug ID: 156903
   Summary: FILEOPEN PPTX: line renders orange instead of blue
   Product: LibreOffice
   Version: 7.0 all versions
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ger...@pfeifer.com

Created attachment 189132
  --> https://bugs.documentfoundation.org/attachment.cgi?id=189132=edit
Sample slide (PPTX)

This may be due to the tips/arrows of the line rendering orange in
PowerPoint and only the rest rendering blue.

Maybe this is somehow a missing feature in LibreOffice?

Still, if so, the line should render completely blue, not completely
orange?


Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: b5aaf194866c5e416167cb54d37f9f04dabc5375
CPU threads: 8; OS: Linux 6.4; UI render: default; VCL: gtk3
Locale: en-US (en_US.UTF-8); UI: en-US

All the way back to 7.0 (and 6.4, though the line does not render
properly there).

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

[Libreoffice-bugs] [Bug 156886] Calc fails to format date as requested

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

--- Comment #3 from ady  ---
FWIW, if this happens when importing from a csv, the import dialogue allows to
select each column and set the format, for example as d/m/y (or similar), among
other possibilities and options.

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

[Libreoffice-bugs] [Bug 51945] UI: Edit Changes : adding the ability to switch "show" mode during accept & reject

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

--- Comment #2 from Justin L  ---
This will not be quite as easy as it sounded:
-only Writer has FN_REDLINE_SHOW. (Calc doesn't have an equivalent)
-the "manage" code is shared between calc and writer.

I would expect that placing a .uno:ViewTrackChanges button  beside List/Filter
would be the best place. svx/uiconfig/ui/redlinecontrol.ui

svx/source/dialog/ctredlin.cxx?

Perhaps https://gerrit.libreoffice.org/c/core/+/153775 would be useful as a
code pointer: it did something vaguely similar.

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

[Libreoffice-bugs] [Bug 156889] dark mode with black items (please put them in light color)

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

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m.a.riosv  ---
Have you selected the icons?
Menu/Tools/Options/LibreOffice/View – Appearance/Icon themes?

Please paste here the information on Menu/Help/About LibreOffce (There is an
icon to copy)

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

[Libreoffice-bugs] [Bug 156888] Duplicate entry in document themes

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

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m.a.riosv  ---
Confirmed
Version: 7.6.0.3 (X86_64) / LibreOffice Community
Build ID: 69edd8b8ebc41d00b4de3915dc82f8f0fc3b6265
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
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 156887] Exporting csv or xlsx to dbf

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

m.a.riosv  changed:

   What|Removed |Added

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

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

And explain what you are trying to do step by step.
e.g. opening a csv file, ..., save as dbf?

-- 
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-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156902

--- Comment #1 from Gerald Pfeifer  ---
The distorted/missing text close to the blue cow is covered by bug #156901.

-- 
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-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156901

--- Comment #3 from Gerald Pfeifer  ---
The missing logo is covered by bug #156902.

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

[Libreoffice-bugs] [Bug 156880] LibreOffice spellcheck/dictionary issues in 7.6

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

BogdanB  changed:

   What|Removed |Added

 Resolution|NOTABUG |WORKSFORME
 CC||buzea.bog...@libreoffice.or
   ||g

-- 
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-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156901

Gerald Pfeifer  changed:

   What|Removed |Added

   Keywords||bibisectRequest, regression

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

[Libreoffice-bugs] [Bug 156886] Calc fails to format date as requested

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

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #2 from m.a.riosv  ---
There is not a bug.

Seems the date were wrongly imported.

For dates that can be misinterpreted as dd/mm/ or mm/dd/, a "'" it's
added to mark it as text like '1/3/2023, for those that cannot the single
quotation is not needed.

Please add your question in https://ask.libreoffice.org/c/english/5

-- 
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-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156901

Gerald Pfeifer  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] New: FILEOPEN PPTX: graphics not shown (edit mode and presentation mode)

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

Bug ID: 156902
   Summary: FILEOPEN PPTX: graphics not shown (edit mode and
presentation mode)
   Product: LibreOffice
   Version: 7.3.7.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: bibisectRequest, regression
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ger...@pfeifer.com

Using the document from attachment #189129 of bug #156901 the blue
cow does not appear in Impress - neither in edit mode nor in 
presentation mode.

How it should look like: attachment #189130 of bug #156901.
How it looks like: attachment #189131 of bug #156901.


Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: b5aaf194866c5e416167cb54d37f9f04dabc5375
CPU threads: 8; OS: Linux 6.4; UI render: default; VCL: gtk3
Locale: en-US (en_US.UTF-8); UI: en-US

Not showing the blue *cow* of the logo is a regression that
happened between

  Version: 6.4.8.0.0+
  Build ID: 99b065ec31d032fc08ab14f66430dac4fef904a5
  CPU threads: 8; OS: Linux 6.4; UI render: default; VCL: gtk3;
  TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:libreoffice-6-4, Time:
2020-10-08_08:57:08
  Locale: en-US (en_US.UTF-8); UI-Language: en-US

and

  Version: 7.0.7.0.0+
  Build ID: 54e9dd41dc9dd45af12c9346199f601ea4a5994d
  CPU threads: 8; OS: Linux 6.4; UI render: default; VCL: gtk3
  Locale: en-US (en_US.UTF-8); UI: en-US
  TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:libreoffice-7-0, Time:
2021-05-07_08:22:18

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

[Libreoffice-commits] core.git: Branch 'distro/collabora/co-23.05' - include/sfx2 sc/source sfx2/source

2023-08-24 Thread Caolán McNamara (via logerrit)
 include/sfx2/lokhelper.hxx |3 +++
 sc/source/ui/inc/gridwin.hxx   |1 +
 sc/source/ui/view/gridwin4.cxx |   10 --
 sc/source/ui/view/tabview3.cxx |7 ---
 sfx2/source/view/lokhelper.cxx |9 -
 5 files changed, 24 insertions(+), 6 deletions(-)

New commits:
commit 913af4a4c1fbb1d9fcb04a5e5752c361acc1a8b9
Author: Caolán McNamara 
AuthorDate: Thu Aug 17 20:22:02 2023 +0100
Commit: Michael Meeks 
CommitDate: Thu Aug 24 23:24:11 2023 +0200

add a SfxLokHelper::notifyInvalidation which can take a 'part'

no change in behaviour intended

Change-Id: I6040eafb03bcf39724761d7708540e9b25edd8f9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155813
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 
(cherry picked from commit 560b5112f6738f02a12adec7d5be04e2411c93b9)

add a LogicInvalidatePart which can take a 'part'

no change in behaviour intended

Change-Id: Idee6615cc86cd01bea9aaf17fff2840eea6521a0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155814
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 
(cherry picked from commit 28d41e60416ef10ae2a59d1c4ad34a2eb75dc408)

for LibreOfficeKit::isActive we can skip to LogicInvalidate

it should be the same effect

Change-Id: I2faa0b728fdebe837855e1f23e066ae8b1a2bde6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155815
Tested-by: Caolán McNamara 
Reviewed-by: Caolán McNamara 
(cherry picked from commit a35311beef378c15ecbb3bb0560035c17f4657ca)

on invalidating other views, specific what Tab is invalidated

the other views might be viewing other tabs and it is only
the tab ('part') this view is on which is invalidated

Change-Id: I9f054ffa6158a6bc62e3eb7b7170450e26870b54
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155816
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 
(cherry picked from commit 34d32740d89876c3d4fd2743a07d6e2578601683)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155877
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Michael Meeks 

diff --git a/include/sfx2/lokhelper.hxx b/include/sfx2/lokhelper.hxx
index 3e94854f6d46..1fd04550a7b3 100644
--- a/include/sfx2/lokhelper.hxx
+++ b/include/sfx2/lokhelper.hxx
@@ -138,6 +138,9 @@ public:
 /// Emits a LOK_CALLBACK_DOCUMENT_SIZE_CHANGED for all views of the same 
document with the same part
 static void notifyPartSizeChangedAllViews(vcl::ITiledRenderable* pDoc, int 
nPart);
 /// Emits a LOK_CALLBACK_INVALIDATE_TILES, but tweaks it according to 
setOptionalFeatures() if needed.
+static void notifyInvalidation(SfxViewShell const* pThisView, int nPart, 
tools::Rectangle const *);
+/// Emits a LOK_CALLBACK_INVALIDATE_TILES, but tweaks it according to 
setOptionalFeatures() if needed
+/// uses the Part reported by pThisView
 static void notifyInvalidation(SfxViewShell const* pThisView, 
tools::Rectangle const *);
 /// Notifies all views with the given type and payload.
 static void notifyAllViews(int nType, const OString& rPayload);
diff --git a/sc/source/ui/inc/gridwin.hxx b/sc/source/ui/inc/gridwin.hxx
index f5e64372ee14..8334e5fd0d51 100644
--- a/sc/source/ui/inc/gridwin.hxx
+++ b/sc/source/ui/inc/gridwin.hxx
@@ -378,6 +378,7 @@ public:
 
 /// @see Window::LogicInvalidate().
 void LogicInvalidate(const tools::Rectangle* pRectangle) override;
+void LogicInvalidatePart(const tools::Rectangle* pRectangle, int nPart);
 
 /// Update the cell selection according to what handles have been dragged.
 /// @see vcl::ITiledRenderable::setTextSelection() for the values of nType.
diff --git a/sc/source/ui/view/gridwin4.cxx b/sc/source/ui/view/gridwin4.cxx
index 235fb8d3a38b..1f235fcd6aa4 100644
--- a/sc/source/ui/view/gridwin4.cxx
+++ b/sc/source/ui/view/gridwin4.cxx
@@ -1724,7 +1724,7 @@ void ScGridWindow::PaintTile( VirtualDevice& rDevice,
 }
 }
 
-void ScGridWindow::LogicInvalidate(const tools::Rectangle* pRectangle)
+void ScGridWindow::LogicInvalidatePart(const tools::Rectangle* pRectangle, int 
nPart)
 {
 tools::Rectangle aRectangle;
 tools::Rectangle* pResultRectangle;
@@ -1756,7 +1756,13 @@ void ScGridWindow::LogicInvalidate(const 
tools::Rectangle* pRectangle)
 }
 
 ScTabViewShell* pViewShell = mrViewData.GetViewShell();
-SfxLokHelper::notifyInvalidation(pViewShell, pResultRectangle);
+SfxLokHelper::notifyInvalidation(pViewShell, nPart, pResultRectangle);
+}
+
+void ScGridWindow::LogicInvalidate(const tools::Rectangle* pRectangle)
+{
+ScTabViewShell* pViewShell = mrViewData.GetViewShell();
+LogicInvalidatePart(pRectangle, pViewShell->getPart());
 }
 
 void ScGridWindow::SetCellSelectionPixel(int nType, int nPixelX, int nPixelY)
diff --git a/sc/source/ui/view/tabview3.cxx b/sc/source/ui/view/tabview3.cxx
index 38b528fa93de..545c42e12b4d 100644
--- a/sc/source/ui/view/tabview3.cxx
+++ 

[Libreoffice-bugs] [Bug 96635] FILEOPEN PDF: Wrong masking, box shown over triangle in arrows

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

--- Comment #16 from ZioTibia81  ---
Still...

Version: 7.6.0.3 (X86_64) / LibreOffice Community
Build ID: 69edd8b8ebc41d00b4de3915dc82f8f0fc3b6265
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: it-IT (it_IT); UI: it-IT
Calc: threaded

-- 
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-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156901

--- Comment #2 from Gerald Pfeifer  ---
Created attachment 189131
  --> https://bugs.documentfoundation.org/attachment.cgi?id=189131=edit
How LibreOffice currently renders it

-- 
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-24 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=156901

--- Comment #1 from Gerald Pfeifer  ---
Created attachment 189130
  --> https://bugs.documentfoundation.org/attachment.cgi?id=189130=edit
How it should look like (PowerPoint)

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

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

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

Bug ID: 156901
   Summary: FILEOPEN PPTX: text not shown (properly) in
presentation mode (only)
   Product: LibreOffice
   Version: 7.3.7.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ger...@pfeifer.com

Created attachment 189129
  --> https://bugs.documentfoundation.org/attachment.cgi?id=189129=edit
Sample slide (PPTX)

1. Open document, observe how "Rancher by SUSE" is rendered.
2. Enter presentation mode.
3. Observe how "Rancher by SUSE" hardly is visible any longer.

Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: b5aaf194866c5e416167cb54d37f9f04dabc5375
CPU threads: 8; OS: Linux 6.4; UI render: default; VCL: gtk3
Locale: en-US (en_US.UTF-8); UI: en-US

Not showing the *text* of the logo properly is regression that 
happened between

  Version: 7.2.8.0.0+ / LibreOffice Community
  Build ID: d293877ff029ae7c161ccfbade992485fd92fe75
  CPU threads: 8; OS: Linux 6.4; UI render: default; VCL: gtk3
  Locale: en-US (en_US.UTF-8); UI: en-US
  TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:libreoffice-7-2, Time:
2022-04-26_20:29:27

and

  Version: 7.3.8.0.0+ / LibreOffice Community
  Build ID: 0f7fb0a2decec3f8869098ae5e47ee6055545486
  CPU threads: 8; OS: Linux 6.4; UI render: default; VCL: gtk3
  Locale: en-US (en_US.UTF-8); UI: en-US

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

[Libreoffice-bugs] [Bug 156880] LibreOffice spellcheck/dictionary issues in 7.6

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

John Schuetz  changed:

   What|Removed |Added

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

--- Comment #6 from John Schuetz  ---
I'm not sure I'm doing this right with the status but . . . 

I uninstalled 7.6, re-installed 7.5.5, and the spell-checking was working as
per usual.  I then uninstalled 7.5.5, re-installed 7.6, and now it seems to be
working fine.  So I guess something got messed up when I updated 7.5.5 to 7.6. 
I believe this bug can be closed.

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

[Libreoffice-bugs] [Bug 156312] UI rendering errors with kf5 and qt5

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

URL||https://bugs.kde.org/show_b
   ||ug.cgi?id=416048

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

[Libreoffice-commits] core.git: Branch 'distro/mimo/mimo-7-3' - translations

2023-08-24 Thread Aron Budea (via logerrit)
 translations |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 8dc221adb889ce39ae978ddabc00347026cad15c
Author: Aron Budea 
AuthorDate: Thu Aug 24 22:31:58 2023 +0200
Commit: Gerrit Code Review 
CommitDate: Thu Aug 24 22:31:58 2023 +0200

Update git submodules

* Update translations from branch 'distro/mimo/mimo-7-3'
  to a6d574508503410750abe83d44517e2abb5dd01c
  - Update French translation for Background color

Change-Id: If8fcb867a54051ef62da5d72aebe768cf95632da

diff --git a/translations b/translations
index 2060c9f41a94..a6d574508503 16
--- a/translations
+++ b/translations
@@ -1 +1 @@
-Subproject commit 2060c9f41a942d6e5267c3ebe9c1f704d922bf9d
+Subproject commit a6d574508503410750abe83d44517e2abb5dd01c


[Libreoffice-commits] translations.git: Branch 'distro/mimo/mimo-7-3' - source/fr

2023-08-24 Thread Aron Budea (via logerrit)
 source/fr/sc/messages.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit a6d574508503410750abe83d44517e2abb5dd01c
Author: Aron Budea 
AuthorDate: Thu Aug 24 22:22:06 2023 +0200
Commit: Aron Budea 
CommitDate: Thu Aug 24 22:22:06 2023 +0200

Update French translation for Background color

Change-Id: If8fcb867a54051ef62da5d72aebe768cf95632da

diff --git a/source/fr/sc/messages.po b/source/fr/sc/messages.po
index 459cc5073d9..8f934823b47 100644
--- a/source/fr/sc/messages.po
+++ b/source/fr/sc/messages.po
@@ -31219,7 +31219,7 @@ msgstr "Couleur du texte"
 #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:551
 msgctxt "standardfilterdialog|cond"
 msgid "Background color"
-msgstr "Couleur d'Arrière-plan"
+msgstr "Couleur d'arrière-plan"
 
 #. rmPTC
 #: sc/uiconfig/scalc/ui/standardfilterdialog.ui:441


[Libreoffice-bugs] [Bug 102345] [META] Formatting marks (aka Non-printing characters) bugs and enhancements

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on|156507  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=156507
[Bug 156507] Ability to remove non-printing/"atypical" characters in a stretch
of text
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 102593] [META] Paste bugs and enhancements

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||156507


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=156507
[Bug 156507] Ability to remove non-printing/"atypical" characters in a stretch
of text
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 156507] Ability to remove non-printing/"atypical" characters in a stretch of text

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks|102345  |102593

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

They understand enough to know they're getting some junk in addition to the
text they want; keyboard traversal is weird, and the "junk" may be affecting
rendering behavior.

Just because it's easier if users simply not do this, does not mean that they
don't (or that they shouldn't). You could argue that there is no reasonable way
this could work; perhaps, but - I very much doubt it. While we have not
demonstrated that there can be no reasonable choice of characters to filter
(say, a language-specific or locale-specific choice) - we should entertain the
possibility that it does exist. And assuming it exists - I believe should offer
it, to make this kind of work easier for users.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102345
[Bug 102345] [META] Formatting marks (aka Non-printing characters) bugs and
enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=102593
[Bug 102593] [META] Paste bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-ux-advise] [Bug 156507] Ability to remove non-printing/"atypical" characters in a stretch of text

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks|102345  |102593

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

They understand enough to know they're getting some junk in addition to the
text they want; keyboard traversal is weird, and the "junk" may be affecting
rendering behavior.

Just because it's easier if users simply not do this, does not mean that they
don't (or that they shouldn't). You could argue that there is no reasonable way
this could work; perhaps, but - I very much doubt it. While we have not
demonstrated that there can be no reasonable choice of characters to filter
(say, a language-specific or locale-specific choice) - we should entertain the
possibility that it does exist. And assuming it exists - I believe should offer
it, to make this kind of work easier for users.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102345
[Bug 102345] [META] Formatting marks (aka Non-printing characters) bugs and
enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=102593
[Bug 102593] [META] Paste bugs and enhancements
-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-commits] core.git: vcl/unx

2023-08-24 Thread Khaled Hosny (via logerrit)
 vcl/unx/generic/fontmanager/fontconfig.cxx |   10 ++
 1 file changed, 10 insertions(+)

New commits:
commit 5ca5acdd6e12fec08927743b60899100bc89af4d
Author: Khaled Hosny 
AuthorDate: Thu Aug 24 10:49:42 2023 +
Commit: خالد حسني 
CommitDate: Thu Aug 24 22:22:17 2023 +0200

tdf#140881: Ignore WOFF/WOFF2 fonts with FontConfig

FC_FONT_WRAPPER requires unreleased FontConfig, but lets have this in so
it works when FontConfig have it.

Change-Id: I8f48ac1f68a3af6e1853e9eb1925d382b57136c0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156049
Tested-by: Jenkins
Reviewed-by: خالد حسني 

diff --git a/vcl/unx/generic/fontmanager/fontconfig.cxx 
b/vcl/unx/generic/fontmanager/fontconfig.cxx
index 113171445760..ae190ab96e58 100644
--- a/vcl/unx/generic/fontmanager/fontconfig.cxx
+++ b/vcl/unx/generic/fontmanager/fontconfig.cxx
@@ -187,6 +187,10 @@ FontCfgWrapper::FontCfgWrapper()
 FcInit();
 }
 
+#ifndef FC_FONT_WRAPPER
+#define FC_FONT_WRAPPER "fontwrapper"
+#endif
+
 void FontCfgWrapper::addFontSet( FcSetName eSetName )
 {
 // Add only acceptable fonts to our config, for future fontconfig use.
@@ -212,6 +216,12 @@ void FontCfgWrapper::addFontSet( FcSetName eSetName )
 if ((eFormatRes == FcResultMatch) && 
(strcmp(reinterpret_cast(pFormat), "Type 1") == 0))
 continue;
 
+// Ignore any other non-SFNT wrapper format, including WOFF and WOFF2, 
too.
+FcChar8* pWrapper = nullptr;
+FcResult eWrapperRes = FcPatternGetString(pPattern, FC_FONT_WRAPPER, 
0, );
+if ((eWrapperRes == FcResultMatch) && 
(strcmp(reinterpret_cast(pWrapper), "SFNT") != 0))
+continue;
+
 FcPatternReference( pPattern );
 FcFontSetAdd( m_pFontSet, pPattern );
 }


[Libreoffice-bugs] [Bug 156507] Ability to remove non-printing/"atypical" characters in a stretch of text

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

--- Comment #10 from ⁨خالد حسني⁩  ---
If users understand what these characters are, they can use advanced search and
replace to strip them, if they don’t understand what these are then we
shouldn’t be giving them functionality that is more likely than not to do the
wrong thing.

WONFIX from me.

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

[Libreoffice-ux-advise] [Bug 156507] Ability to remove non-printing/"atypical" characters in a stretch of text

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

--- Comment #10 from ⁨خالد حسني⁩  ---
If users understand what these characters are, they can use advanced search and
replace to strip them, if they don’t understand what these are then we
shouldn’t be giving them functionality that is more likely than not to do the
wrong thing.

WONFIX from me.

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

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

2023-08-24 Thread Andrea Gelmini (via logerrit)
 sc/source/ui/view/editsh.cxx |1 -
 1 file changed, 1 deletion(-)

New commits:
commit 9b6f0bcb042354fd5c25f78e432b8983963e0e9c
Author: Andrea Gelmini 
AuthorDate: Thu Aug 24 10:20:23 2023 +0200
Commit: Julien Nabet 
CommitDate: Thu Aug 24 22:16:42 2023 +0200

Remove duplicated include

Change-Id: I5bfb0f4bbebdd21c3ceef04b6a7eb36bdd41c52c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156034
Reviewed-by: Julien Nabet 
Tested-by: Julien Nabet 

diff --git a/sc/source/ui/view/editsh.cxx b/sc/source/ui/view/editsh.cxx
index 99d84ca1518f..74d4add556b9 100644
--- a/sc/source/ui/view/editsh.cxx
+++ b/sc/source/ui/view/editsh.cxx
@@ -64,7 +64,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 #include 
 #include 


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

2023-08-24 Thread Andrea Gelmini (via logerrit)
 sc/qa/uitest/calc_tests9/tdf156611_hyperlink_interoper.py |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 30c3bfe43049a63d934dac192961a069f6c34a3f
Author: Andrea Gelmini 
AuthorDate: Thu Aug 24 10:28:50 2023 +0200
Commit: Julien Nabet 
CommitDate: Thu Aug 24 22:16:22 2023 +0200

Fix typo

Change-Id: I86dbe2909b19a8a9108f3ba76529ef378c2d663e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156039
Tested-by: Julien Nabet 
Reviewed-by: Julien Nabet 

diff --git a/sc/qa/uitest/calc_tests9/tdf156611_hyperlink_interoper.py 
b/sc/qa/uitest/calc_tests9/tdf156611_hyperlink_interoper.py
index f54ee089b537..87ee09aa5d71 100644
--- a/sc/qa/uitest/calc_tests9/tdf156611_hyperlink_interoper.py
+++ b/sc/qa/uitest/calc_tests9/tdf156611_hyperlink_interoper.py
@@ -25,8 +25,8 @@ class tdf156611(UITestCase):
 urls =[["",""],["https://www.documentfoundation.org/",";]]
 texts =[["aaa bbb","bbb"],[" ddd","ddd"],["","aaa  
"]]
 
-# 1. run, we want hypelink insertion work like in MS excel (only 1 
hyperlink/cell is allowed)
-# 2. run, we want hypelink insertion work as it did in calc (more 
hyperlinks can be in 1 cell)
+# 1. run, we want hyperlink insertion work like in MS excel (only 
1 hyperlink/cell is allowed)
+# 2. run, we want hyperlink insertion work as it did in calc (more 
hyperlinks can be in 1 cell)
 for i in range(2):
 xCalcDoc = self.xUITest.getTopFocusWindow()
 xGridWindow = xCalcDoc.getChild("grid_window")
@@ -112,7 +112,7 @@ class tdf156611(UITestCase):
 xCell = get_cell_by_position(document, 0, 0, 0)
 self.assertEqual(xCell.getString(), texts[2][i])
 # 1. run: "" last hyperlink insertion overwritten the 
whole cell text with ""
-# 2. run: "aaa  " as every hypelink insertion only 
overwritten the actually selected text
+# 2. run: "aaa  " as every hyperlink insertion only 
overwritten the actually selected text
 xTextFields = xCell.getTextFields()
 self.assertEqual(xTextFields.getCount(), i+1)
 self.assertEqual(xTextFields.getByIndex(i).URL, 
"https://aWrongLink/;)


[Libreoffice-commits] core.git: sd/inc

2023-08-24 Thread Andrea Gelmini (via logerrit)
 sd/inc/theme/ThemeColorChanger.hxx |1 -
 1 file changed, 1 deletion(-)

New commits:
commit 2c38f5fdaba37dd9f7239e95c28ad63e7174d6e0
Author: Andrea Gelmini 
AuthorDate: Thu Aug 24 10:20:39 2023 +0200
Commit: Julien Nabet 
CommitDate: Thu Aug 24 22:15:31 2023 +0200

Remove duplicated include

Change-Id: Ie95a596a9ee9928ee475f49fb666150f67e0b122
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156035
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/sd/inc/theme/ThemeColorChanger.hxx 
b/sd/inc/theme/ThemeColorChanger.hxx
index 72ae70a0ea3c..ff100fd511ce 100644
--- a/sd/inc/theme/ThemeColorChanger.hxx
+++ b/sd/inc/theme/ThemeColorChanger.hxx
@@ -13,7 +13,6 @@
 #include 
 #include 
 #include 
-#include 
 #include 
 
 namespace sd


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

2023-08-24 Thread Andrea Gelmini (via logerrit)
 sc/qa/uitest/calc_tests9/tdf156611_hyperlink_interoper.py |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 9967f22ca160b1fe9784b8f67428c52ef8d4f2c2
Author: Andrea Gelmini 
AuthorDate: Thu Aug 24 10:27:42 2023 +0200
Commit: Julien Nabet 
CommitDate: Thu Aug 24 22:15:13 2023 +0200

Fix typo

Change-Id: I1f4d28f834d7e9deb09460fde978bc30d05e351e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156037
Tested-by: Julien Nabet 
Reviewed-by: Julien Nabet 

diff --git a/sc/qa/uitest/calc_tests9/tdf156611_hyperlink_interoper.py 
b/sc/qa/uitest/calc_tests9/tdf156611_hyperlink_interoper.py
index ff2ac3280a20..f54ee089b537 100644
--- a/sc/qa/uitest/calc_tests9/tdf156611_hyperlink_interoper.py
+++ b/sc/qa/uitest/calc_tests9/tdf156611_hyperlink_interoper.py
@@ -111,7 +111,7 @@ class tdf156611(UITestCase):
 # Check contents of the cell
 xCell = get_cell_by_position(document, 0, 0, 0)
 self.assertEqual(xCell.getString(), texts[2][i])
-# 1. run: "" last hyperlink insertion overwritten the whol 
cell text with ""
+# 1. run: "" last hyperlink insertion overwritten the 
whole cell text with ""
 # 2. run: "aaa  " as every hypelink insertion only 
overwritten the actually selected text
 xTextFields = xCell.getTextFields()
 self.assertEqual(xTextFields.getCount(), i+1)


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

2023-08-24 Thread Andrea Gelmini (via logerrit)
 sc/qa/uitest/calc_tests9/tdf156611_hyperlink_interoper.py |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 482ebb5b5e3cd75199b386584da9753066b64e39
Author: Andrea Gelmini 
AuthorDate: Thu Aug 24 11:13:16 2023 +0200
Commit: Julien Nabet 
CommitDate: Thu Aug 24 22:14:51 2023 +0200

Fix typo

Change-Id: Iab3ff5a5f9c8917d7de1d886aa331e6110b0ae4a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156040
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/sc/qa/uitest/calc_tests9/tdf156611_hyperlink_interoper.py 
b/sc/qa/uitest/calc_tests9/tdf156611_hyperlink_interoper.py
index cf6770f5260f..ff2ac3280a20 100644
--- a/sc/qa/uitest/calc_tests9/tdf156611_hyperlink_interoper.py
+++ b/sc/qa/uitest/calc_tests9/tdf156611_hyperlink_interoper.py
@@ -21,7 +21,7 @@ class tdf156611(UITestCase):
 # but it does not need any data from the file, any xlsx or xls file 
can be opened for this test
 with 
self.ui_test.load_file(get_url_for_data_file("tdf126541_GridOff.xlsx")) as 
document:
 
-# datas that we will check against when hyperlink is inserted
+# data that we will check against when hyperlink is inserted
 urls =[["",""],["https://www.documentfoundation.org/",";]]
 texts =[["aaa bbb","bbb"],[" ddd","ddd"],["","aaa  
"]]
 


[Libreoffice-commits] core.git: officecfg/registry

2023-08-24 Thread Andrea Gelmini (via logerrit)
 officecfg/registry/schema/org/openoffice/Office/Calc.xcs |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 7fe77a2d4d580817fa83d5d22bf53683ee38c9ce
Author: Andrea Gelmini 
AuthorDate: Thu Aug 24 10:21:38 2023 +0200
Commit: Julien Nabet 
CommitDate: Thu Aug 24 22:14:34 2023 +0200

Fix typo

Change-Id: I97450e0259bca2188547bcc71328e27544edbc10
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156036
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/officecfg/registry/schema/org/openoffice/Office/Calc.xcs 
b/officecfg/registry/schema/org/openoffice/Office/Calc.xcs
index a41de7a36b8a..545808a05232 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Calc.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Calc.xcs
@@ -1863,7 +1863,7 @@
   
   
 
-  Insert link for the cell, instead of text fields in a 
cell.(Excel iteropability options)
+  Insert link for the cell, instead of text fields in a 
cell.(Excel interopability options)
   Links like Excel
 
 false


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

2023-08-24 Thread Andrea Gelmini (via logerrit)
 sc/qa/uitest/calc_tests9/tdf156611_hyperlink_interoper.py |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 5391006caf76bfbb81238f709ad30ac37809b0f5
Author: Andrea Gelmini 
AuthorDate: Thu Aug 24 10:28:13 2023 +0200
Commit: Julien Nabet 
CommitDate: Thu Aug 24 22:14:09 2023 +0200

Fix typo

Change-Id: Ief8634c54b5dcf8cdf92882e9026e42cf3e9935e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156038
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/sc/qa/uitest/calc_tests9/tdf156611_hyperlink_interoper.py 
b/sc/qa/uitest/calc_tests9/tdf156611_hyperlink_interoper.py
index a78106c11d66..cf6770f5260f 100644
--- a/sc/qa/uitest/calc_tests9/tdf156611_hyperlink_interoper.py
+++ b/sc/qa/uitest/calc_tests9/tdf156611_hyperlink_interoper.py
@@ -25,8 +25,8 @@ class tdf156611(UITestCase):
 urls =[["",""],["https://www.documentfoundation.org/",";]]
 texts =[["aaa bbb","bbb"],[" ddd","ddd"],["","aaa  
"]]
 
-# 1. run, we want hypelink inserton work like in MS excel (only 1 
hyperlink/cell is allowed)
-# 2. run, we want hypelink inserton work as it did in calc (more 
hyperlinks can be in 1 cell)
+# 1. run, we want hypelink insertion work like in MS excel (only 1 
hyperlink/cell is allowed)
+# 2. run, we want hypelink insertion work as it did in calc (more 
hyperlinks can be in 1 cell)
 for i in range(2):
 xCalcDoc = self.xUITest.getTopFocusWindow()
 xGridWindow = xCalcDoc.getChild("grid_window")


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

2023-08-24 Thread Andrea Gelmini (via logerrit)
 svx/source/sdr/contact/viewobjectcontact.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 9679bc5f24a8965341840c458ba69479585815f7
Author: Andrea Gelmini 
AuthorDate: Thu Aug 24 17:14:49 2023 +0200
Commit: Julien Nabet 
CommitDate: Thu Aug 24 22:13:53 2023 +0200

Fix typo

Change-Id: I9d1b0bbd99caa53515b8d8bf7d86723cd51aca6d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156059
Tested-by: Jenkins
Reviewed-by: Julien Nabet 

diff --git a/svx/source/sdr/contact/viewobjectcontact.cxx 
b/svx/source/sdr/contact/viewobjectcontact.cxx
index 450b8215482e..8482187f959b 100644
--- a/svx/source/sdr/contact/viewobjectcontact.cxx
+++ b/svx/source/sdr/contact/viewobjectcontact.cxx
@@ -584,7 +584,7 @@ const basegfx::B2DVector& 
ViewObjectContact::getGridOffset() const
 // calculation have changed. E.g. - I saw errors with +/-5740, that
 // was in the environment of massive external UNO API using LO as
 // target.
-// If condtions for this calculation change, it is usually 
required to call
+// If conditions for this calculation change, it is usually 
required to call
 // - ViewObjectContact::resetGridOffset(), or
 // - ObjectContact::resetAllGridOffsets() or
 // - ScDrawView::resetGridOffsetsForAllSdrPageViews()


[Libreoffice-bugs] [Bug 115733] "Open with" dialog menu items have no icons next the name "Libreoffice"

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

--- Comment #15 from Al M.  ---
You may close this, as I tested and it's fixed as of August 2023. Al

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

[Libreoffice-bugs] [Bug 152971] Table row stays visible after redo of deletion (track changes enabled)

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

Telesto  changed:

   What|Removed |Added

  Regression By||László Németh

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

[Libreoffice-bugs] [Bug 156900] Delete row with track changes ON doesn't hide the deleted row

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

Telesto  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 156784] LO freezes if delete the first column on the table and the TC are hidden, pressing Ctrl+A

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

Telesto  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 156900] New: Delete row with track changes ON doesn't hide the deleted row

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

Bug ID: 156900
   Summary: Delete row with track changes ON doesn't hide the
deleted row
   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: tele...@surfxs.nl

Description:
Delete row with track changes ON doesn't hide the deleted row

Steps to Reproduce:
1. Open attachment 188994 (bug 156784)
2. Edit -> track changes -> Show (disabled) (like default)
3. Press delete row (for say the first row)

Actual Results:
Nothing happens

Expected Results:
The row with 'A' in cell A1 disappears


Reproducible: Always


User Profile Reset: No

Additional Info:
Version: 24.2.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: c9916d9be9c060d43fc063b76d70629162650fea
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: nl-NL (nl_NL); UI: en-US
Calc: CL threaded

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

[Libreoffice-bugs] [Bug 122104] FILEOPEN XLSX, Conditional formatting with a gradient background changes to a single color background in LO

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

--- Comment #7 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 99746] [META] PDF import filter in Draw

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

Bug 113936 Summary: Importing a PDF is slower compared to 5.4
https://bugs.documentfoundation.org/show_bug.cgi?id=113936

   What|Removed |Added

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

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

  1   2   3   4   >