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

2023-04-12 Thread Noel Grandin (via logerrit)
 framework/qa/cppunit/dispatchtest.cxx |9 +
 1 file changed, 9 insertions(+)

New commits:
commit 00f73472c1342213b7eb48b9e48175db3c9041c2
Author: Noel Grandin 
AuthorDate: Wed Apr 12 14:00:16 2023 +0200
Commit: Noel Grandin 
CommitDate: Thu Apr 13 07:57:16 2023 +0200

try to fix CppunitTest_framework_dispatch on windows

I see occasional failures here, possibly they are a threading
issue since we are touching these fields from multiple threads.
Add a mutex to see if it helps.

Change-Id: I7277e96d07d292a6bc1d333dabec7a82fc607465
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150281
Tested-by: Noel Grandin 
Reviewed-by: Noel Grandin 

diff --git a/framework/qa/cppunit/dispatchtest.cxx 
b/framework/qa/cppunit/dispatchtest.cxx
index f45f0da5bf0e..fd091f42bd5a 100644
--- a/framework/qa/cppunit/dispatchtest.cxx
+++ b/framework/qa/cppunit/dispatchtest.cxx
@@ -16,6 +16,7 @@
 #include 
 
 #include 
+#include 
 
 using namespace ::com::sun::star;
 
@@ -25,6 +26,7 @@ namespace
 class MyInterceptor
 : public cppu::WeakImplHelper
 {
+std::mutex maMutex;
 uno::Reference m_xMaster;
 uno::Reference m_xSlave;
 uno::Sequence m_aDisabledCommands;
@@ -67,6 +69,7 @@ MyInterceptor::MyInterceptor()
 
 int MyInterceptor::getExpected()
 {
+std::unique_lock aGuard(maMutex);
 int nRet = m_nExpected;
 m_nExpected = 0;
 return nRet;
@@ -74,6 +77,7 @@ int MyInterceptor::getExpected()
 
 int MyInterceptor::getUnexpected()
 {
+std::unique_lock aGuard(maMutex);
 int nRet = m_nUnexpected;
 m_nUnexpected = 0;
 return nRet;
@@ -84,22 +88,26 @@ uno::Sequence MyInterceptor::getInterceptedURLs() 
{ return m_aDisabled
 void MyInterceptor::setMasterDispatchProvider(
 const uno::Reference& xNewSupplier)
 {
+std::unique_lock aGuard(maMutex);
 m_xMaster = xNewSupplier;
 }
 
 uno::Reference 
MyInterceptor::getMasterDispatchProvider()
 {
+std::unique_lock aGuard(maMutex);
 return m_xMaster;
 }
 
 void MyInterceptor::setSlaveDispatchProvider(
 const uno::Reference& xNewSupplier)
 {
+std::unique_lock aGuard(maMutex);
 m_xSlave = xNewSupplier;
 }
 
 uno::Reference 
MyInterceptor::getSlaveDispatchProvider()
 {
+std::unique_lock aGuard(maMutex);
 return m_xSlave;
 }
 
@@ -122,6 +130,7 @@ uno::Reference 
MyInterceptor::queryDispatch(const util::URL& r
   const OUString& 
/*rTargetFrameName*/,
   sal_Int32 
/*SearchFlags*/)
 {
+std::unique_lock aGuard(maMutex);
 if (std::find(std::cbegin(m_aDisabledCommands), 
std::cend(m_aDisabledCommands), rURL.Complete)
 != std::cend(m_aDisabledCommands))
 ++m_nExpected;


[Libreoffice-bugs] [Bug 154781] Keyboard input un-does paste (if cell was previously empty)

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154781

--- Comment #3 from ady  ---
You described what actually happened. What was supposed to be the expected
behavior after step 4 in your comment 0?

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

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

2023-04-12 Thread Stephan Bergmann (via logerrit)
 svx/qa/unit/customshapes.cxx |1 -
 1 file changed, 1 deletion(-)

New commits:
commit d8249389f791177464b0b74fc873384433d08947
Author: Stephan Bergmann 
AuthorDate: Wed Apr 12 23:06:54 2023 +0200
Commit: Stephan Bergmann 
CommitDate: Thu Apr 13 07:48:15 2023 +0200

-Werror,-Wunused-variable

Unused ever since it got introduced in 
6de8d3109dffa7d4d0cc06f319cca70134f0a8f3
"tdf#103474 handle edge cases in ARCANGLETO".

(Found with an experimental Clang build supporting 
__attribute__((warn_unused))
on individual ctors rather than just whole class types, and the 
corresponding
css::uno::Reference ctor marked accordingly.)

Change-Id: I40342955feedad25435c03f16a31b9585281c1f8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150306
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/svx/qa/unit/customshapes.cxx b/svx/qa/unit/customshapes.cxx
index 52667c326f3c..464a6b542e84 100644
--- a/svx/qa/unit/customshapes.cxx
+++ b/svx/qa/unit/customshapes.cxx
@@ -1081,7 +1081,6 @@ CPPUNIT_TEST_FIXTURE(CustomshapesTest, 
testTdf122323_largeSwingAngle)
 // the end angle and used it modulo 360, no full ellipse was drawn.
 loadFromURL(u"tdf122323_swingAngle_larger360deg.pptx");
 uno::Reference xShape(getShape(0));
-uno::Reference xShapeProps(xShape, uno::UNO_QUERY);
 SdrObjCustomShape& rSdrObjCustomShape(
 
static_cast(*SdrObject::getSdrObjectFromXShape(xShape)));
 EnhancedCustomShape2d aCustomShape2d(rSdrObjCustomShape);


[Libreoffice-commits] core.git: 2 commits - vcl/qa xmloff/source

2023-04-12 Thread Stephan Bergmann (via logerrit)
 vcl/qa/cppunit/pdfexport/pdfexport.cxx |2 --
 xmloff/source/text/txtparae.cxx|1 -
 2 files changed, 3 deletions(-)

New commits:
commit 396f3fd0ab1cdabf0b4800b5c45a418534f83e5c
Author: Stephan Bergmann 
AuthorDate: Wed Apr 12 23:05:00 2023 +0200
Commit: Stephan Bergmann 
CommitDate: Thu Apr 13 07:48:07 2023 +0200

-Werror,-Wunused-variable

Unused ever since the two variables got introduced in
919a4ef592b6026a7533a93682f39118fef29ce8 "tdf#105461 PDF export of editeng 
fill
color: restrict to logic map modes" and 
fddd956c0cf3b2c22a152bbb30554def1336b466
"tdf#96892 vcl: add unit test for misplaced soft-hyphen ...", respectively.

(Found with an experimental Clang build supporting 
__attribute__((warn_unused))
on individual ctors rather than just whole class types, and the 
corresponding
css::uno::Reference ctor marked accordingly.)

Change-Id: I538a8cf410355ca4b5230f89947587b58d67e205
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150304
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/vcl/qa/cppunit/pdfexport/pdfexport.cxx 
b/vcl/qa/cppunit/pdfexport/pdfexport.cxx
index 65e1a06a4b99..a11e2a820506 100644
--- a/vcl/qa/cppunit/pdfexport/pdfexport.cxx
+++ b/vcl/qa/cppunit/pdfexport/pdfexport.cxx
@@ -212,7 +212,6 @@ CPPUNIT_TEST_FIXTURE(PdfExportTest, testTdf107868)
 
 // Import the bugdoc and print to PDF.
 loadFromURL(u"tdf107868.odt");
-uno::Reference xStorable(mxComponent, uno::UNO_QUERY);
 uno::Reference xPrintable(mxComponent, uno::UNO_QUERY);
 CPPUNIT_ASSERT(xPrintable.is());
 uno::Sequence 
aOptions(comphelper::InitPropertySequence(
@@ -452,7 +451,6 @@ CPPUNIT_TEST_FIXTURE(PdfExportTest, testSofthyphenPos)
 
 // Import the bugdoc and print to PDF.
 loadFromURL(u"softhyphen_pdf.odt");
-uno::Reference xStorable(mxComponent, uno::UNO_QUERY);
 uno::Reference xPrintable(mxComponent, uno::UNO_QUERY);
 CPPUNIT_ASSERT(xPrintable.is());
 uno::Sequence 
aOptions(comphelper::InitPropertySequence(
commit 8a4fdf8a18fac2829b5a95ce9e3f4323f5eec9b4
Author: Stephan Bergmann 
AuthorDate: Wed Apr 12 23:00:48 2023 +0200
Commit: Stephan Bergmann 
CommitDate: Thu Apr 13 07:47:58 2023 +0200

-Werror,-Wunused-variable

Unused ever since it got introduced in 
463178fef5c22f1a04d10e54491852d56e2038b0
"xmloff, sw: ODF import/export of fieldmark separator".

(Found with an experimental Clang build supporting 
__attribute__((warn_unused))
on individual ctors rather than just whole class types, and the 
corresponding
css::uno::Reference ctor marked accordingly.)

Change-Id: I8d665d12f923725773f6a55f7edee70ebc72e3ba
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150303
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/xmloff/source/text/txtparae.cxx b/xmloff/source/text/txtparae.cxx
index f9f070a1d9b2..5ae853b239ab 100644
--- a/xmloff/source/text/txtparae.cxx
+++ b/xmloff/source/text/txtparae.cxx
@@ -2443,7 +2443,6 @@ void XMLTextParagraphExport::exportTextRangeEnumeration(
 }
 else if (sType == gsTextFieldSep)
 {
-Reference const 
xFormField(xPropSet->getPropertyValue(gsBookmark), UNO_QUERY);
 if (!bAutoStyles)
 {
 if (GetExport().getSaneDefaultVersion() & 
SvtSaveOptions::ODFSVER_EXTENDED)


[Libreoffice-bugs] [Bug 153374] Hang using Keyboard viewer

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153374

--- Comment #15 from BogdanB  ---
Patrick, you can mark this bug as Assigned, Resolved, so on... As you consider
the actual status of this bug.

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

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

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

--- Comment #4 from Buovjaga  ---
(In reply to Buovjaga from comment #1)
> Bibisected with Linux 43max to 333282478a956709e648427b412d90f90fc1437b
> Related: fdo#75307 use the unique auto help id to identify tabpages

Just a note: I was looking at the type to be specific.

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

[Libreoffice-bugs] [Bug 153374] Hang using Keyboard viewer

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153374

--- Comment #14 from bz137...@halfpi.co.uk ---
Tested:
https://dev-builds.libreoffice.org/daily/master/MacOSX-x86_64@tb94-TDF/2023-04-13_04.17.00/LibreOfficeDev_7.6.0.0.alpha0_MacOS_x86-64_sdk.dmg

Could not find fault.

Thanks for your work.

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

[Libreoffice-bugs] [Bug 154709] After saving as CSV (proceeding past the warning), there is no warning on close that unpreservable formatting or additional worskheets will be lost.

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154709

Ramon Rakow  changed:

   What|Removed |Added

 Status|RESOLVED|UNCONFIRMED
Version|unspecified |7.4.2.3 release
 Resolution|WONTFIX |---

--- Comment #3 from Ramon Rakow  ---
So you think that it's acceptable that someone can:

1. Open a CSV
2. Make a change e.g. highlighting
3. Save -- read the warning that says that some formatting may be lost by
continuing to save in csv, save anyway
4. Notice that none of their highlighting appears to have been lost by saving
5. Proceed to work on the file for hours
6. Save again and close
7. Come back the next day, all of that work is gone

Or in a different scenario:
1. Open a CSV
2. Make some changes that are preserved by the CSV format
3. Save -- proceeding past the warning
4. Pass the station to wife / coworker / boss, who makes a bunch of changes
that are not preserved by the CSV format, who then saves and closes the file,
losing all their work and blaming you and libreoffice

If you want to avoid too many nag popups, there is an easy solution here. When
the editor window, which is currently displaying data that is not saved to the
file (be it highlighting, conditional formatting, whatever) is closed-- that is
when a warning is most pertinent. Because that is the point where work is
irretrievably lost. It is not a nag to receive one extra warning when you
attempt to close the window. If there is unsaved work, you already receive a
warning-- if you have last saved to a file format that doesn't preserve the
features libreoffice is displaying, that is another kind of unsaved work!

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

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

2023-04-12 Thread Michael Weghorn (via logerrit)
 sw/qa/extras/accessibility/dialogs.cxx |7 ---
 1 file changed, 7 deletions(-)

New commits:
commit fc893169d37ae78d34b6a127bc920bc5b887711a
Author: Michael Weghorn 
AuthorDate: Wed Apr 12 17:03:57 2023 +0300
Commit: Michael Weghorn 
CommitDate: Thu Apr 13 06:54:26 2023 +0200

tdf#153806 sw a11y test: Drop obsolete workaround

This is no longer needed with

commit d1f5b3c5cb226fd5f58fe2cdc8be9d1330fad6a2
Date:   Sat Apr 1 23:35:50 2023 +0300

tdf#153806 a11y: Improve keyboard interaction in special char dialog

in place. The insert action is available right away now.

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

diff --git a/sw/qa/extras/accessibility/dialogs.cxx 
b/sw/qa/extras/accessibility/dialogs.cxx
index 6faab49128cd..7fd23ae2247d 100644
--- a/sw/qa/extras/accessibility/dialogs.cxx
+++ b/sw/qa/extras/accessibility/dialogs.cxx
@@ -38,13 +38,6 @@ CPPUNIT_TEST_FIXTURE(test::SwAccessibleTestBase, 
BasicTestSpecialCharactersDialo
 
 CPPUNIT_ASSERT(dialog.tabTo(accessibility::AccessibleRole::TABLE_CELL, 
u"©"));
 
-/* here there is a bug that the "insert" action is not working right 
away, even though we
- * have the right character selected.  Move around the table to 
actually trigger the
- * selection logic.
- * See https://bugs.documentfoundation.org/show_bug.cgi?id=153806 */
-dialog.postKeyEventAsync(0, awt::Key::RIGHT);
-dialog.postKeyEventAsync(0, awt::Key::LEFT);
-
 /* there was a focus issue in this dialog: the table holding the 
characters always had the
  * selected element as focused, even when tabbing outside.
  * Fixed with https://gerrit.libreoffice.org/c/core/+/147660.


[Libreoffice-bugs] [Bug 139112] Accessibility options dialog should adapt its width to long labels

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139112

--- Comment #29 from BogdanB  ---
(In reply to Buovjaga from comment #28)
> (In reply to BogdanB from comment #27)
> > (In reply to Buovjaga from comment #17)
> > Do you now if this properties is what is needed?
> > True
> > 
> > If yes, I could do the change.
> 
> If you can build on Windows and test with Polish, you can see what happens.

I build on Linux (I didn't read your comment carefully) and there is no such a
line.

But I found on other similar settings with long text this property that can do
this job:
True

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

[Libreoffice-bugs] [Bug 106676] Decroise Unpivot Extension Basic Syntax Error in 5.3. Integration desired

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106676

BogdanB  changed:

   What|Removed |Added

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

--- Comment #6 from BogdanB  ---
Is this bug NOT OUR BUG?
Is this bug meanwhile solved? Brant, can you check again?

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

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

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

BogdanB  changed:

   What|Removed |Added

 Depends on||140027


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=140027
[Bug 140027] EDITING inserting rows before pivot table in row 1 copies format
and images from headings
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 140027] EDITING inserting rows before pivot table in row 1 copies format and images from headings

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140027

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

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

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

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

BogdanB  changed:

   What|Removed |Added

 Depends on||153930


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=153930
[Bug 153930] Pivot Table options discoverability
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 153930] Pivot Table options discoverability

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153930

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 71732] [META] Bugs related to text rendering, typography and font features in LO

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71732

BogdanB  changed:

   What|Removed |Added

 Depends on||134454


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=134454
[Bug 134454] Font not rendering properly when color is changed on mark glyph
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 134454] Font not rendering properly when color is changed on mark glyph

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134454

BogdanB  changed:

   What|Removed |Added

 Blocks||71732
 CC||buzea.bog...@libreoffice.or
   ||g
Summary|Font not rendering properly |Font not rendering properly
   |when color is changed on|when color is changed on
   |mark glyph. |mark glyph


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=71732
[Bug 71732] [META] Bugs related to text rendering, typography and font features
in LO
-- 
You are receiving this mail because:
You are the assignee for the bug.

Password change request canceled

2023-04-12 Thread bugzilla-daemon
Password change request canceled from 2a02:
 3038:613:3fca:2099:1be3:e235:f491.
X-Bugzilla-URL: https://bugs.documentfoundation.org/
Auto-Submitted: auto-generated
MIME-Version: 1.0

If you did not request this, it could be either an honest
mistake or someone attempting to break into your Bugzilla account.

Take a look at the information below and forward this email
to hostmas...@documentfoundation.org if you suspect foul play.

Token: xY0z902yR7
   Token Type: password
 User: libreoffice@lists.freedesktop.org
   Issue Date: 2023-04-13 04:06:20 UTC
   Event Data: 38.94.110.192
Canceled Because: You have requested cancellation.


Bugzilla Change Password Request

2023-04-12 Thread bugzilla-daemon
You have (or someone impersonating you has) requested to change your 
Bugzilla password. The request originated from 38.94.110.192.

To complete the change, visit the following link:

https://bugs.documentfoundation.org/token.cgi?t=xY0z902yR7=cfmpw

If you are not the person who made this request, or you wish to cancel
this request, visit the following link:

https://bugs.documentfoundation.org/token.cgi?t=xY0z902yR7=cxlpw

If you do nothing, the request will lapse after 3 days
(on April 16, 2023 at 04:06 UTC) or when you
log in successfully.

If you think someone tried to compromise your account, please inform
hostmas...@documentfoundation.org with the IP address reported above
and the exact time when you got this email.


[Libreoffice-bugs] [Bug 108576] [META] Writer page style bugs and enhancements

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108576

BogdanB  changed:

   What|Removed |Added

 Depends on||154548


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154548
[Bug 154548] User defined page style disappears when exporting to docx/xlsx,
closing and reopening
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154548] User defined page style disappears when exporting to docx/xlsx, closing and reopening

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154548

BogdanB  changed:

   What|Removed |Added

 Blocks||108576
  Component|LibreOffice |Writer
 CC||buzea.bog...@libreoffice.or
   ||g

--- Comment #7 from BogdanB  ---
Steps:
- Open the document form comment 6. Go to Sidebar - Styles - Page Styles -
apply "Used Page style" OR "New Page style". Everything OK.
- Save as .docx. The page styles above have gone

Tested with
Version: 7.5.0.1.0+ (X86_64) / LibreOffice Community
Build ID: f29b2b5b7a86fa813ec0410f2788cd9580c7e0b2
CPU threads: 4; OS: Linux 5.19; UI render: default; VCL: gtk3
Locale: ro-RO (ro_RO.UTF-8); UI: en-US
Calc: threaded


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 146789] Inaccurate documentation of Writer Keyboard shortcuts

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146789

BogdanB  changed:

   What|Removed |Added

 Blocks||98290


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=98290
[Bug 98290] [META] Better shortcuts on macOS
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 98290] [META] Better shortcuts on macOS

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98290

BogdanB  changed:

   What|Removed |Added

 Depends on||146789


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=146789
[Bug 146789] Inaccurate documentation of Writer Keyboard shortcuts
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 136524] [META] Performance/hang/lag/high CPU issues

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136524

BogdanB  changed:

   What|Removed |Added

 Depends on||153374


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=153374
[Bug 153374] Hang using Keyboard viewer
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 153374] Hang using Keyboard viewer

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153374

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=136524
[Bug 136524] [META] Performance/hang/lag/high CPU issues
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 103100] [META] Writer table bugs

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103100

BogdanB  changed:

   What|Removed |Added

 Depends on||154775


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154775
[Bug 154775] Part of document missing when opened from an email
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154775] Part of document missing when opened from an email

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154775

BogdanB  changed:

   What|Removed |Added

  Component|LibreOffice |Writer
 CC||buzea.bog...@libreoffice.or
   ||g
 Blocks||103100
 OS|macOS (All) |All

--- Comment #3 from BogdanB  ---
Also in
Version: 7.5.0.1.0+ (X86_64) / LibreOffice Community
Build ID: f29b2b5b7a86fa813ec0410f2788cd9580c7e0b2
CPU threads: 4; OS: Linux 5.19; UI render: default; VCL: gtk3
Locale: ro-RO (ro_RO.UTF-8); UI: en-US
Calc: threaded


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 141093] Anchor "to paragraph" or 'to character' puts an image larger than page margin above present text (should be below)

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141093

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 87740] [META] Anchor and text wrapping bugs and enhancements

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87740

BogdanB  changed:

   What|Removed |Added

 Depends on||141093


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=141093
[Bug 141093] Anchor "to paragraph" or 'to character' puts an image larger than
page margin above present text (should be below)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 87740] [META] Anchor and text wrapping bugs and enhancements

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87740

BogdanB  changed:

   What|Removed |Added

 Depends on||141640


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=141640
[Bug 141640] Show value for line length > 100mm in writer
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 141640] Show value for line length > 100mm in writer

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141640

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 154762] Most current update 7.5.2.2 does not "read" EXEC files; previous version read and allowed me to save

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154762

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

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

[Libreoffice-bugs] [Bug 154460] Unclear sentence: "Change typewriter apostrophe, single quotation marks and correct double primes."

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154460

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 154436] Drag the outer circle in the circle diagram at Libre office impress-text is going outside of the circle

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154436

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 154439] Text overflow when writing content in Diagrams, shapes and Symbols

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154439

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 40176] Show special paste options when needed

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=40176

--- Comment #30 from QA Administrators  ---
Dear mrkazoodle,

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 108479] [META] Paste special bugs and enhancements

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108479
Bug 108479 depends on bug 40176, which changed state.

Bug 40176 Summary: Show special paste options when needed
https://bugs.documentfoundation.org/show_bug.cgi?id=40176

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 150911] Copying png pictures to libre office presentaion (.odp) on Mac M1 Max makes crash

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150911

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

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 150400] File menu is missing some items

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150400

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 150400] File menu is missing some items

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150400

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

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 151531] Libre Office Draw

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151531

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

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 93357] Thumbnail of ODP or PPTX presentation is updated to the last slide/page viewed

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93357

--- Comment #19 from QA Administrators  ---
Dear Pedro,

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 75853] EDITING: Wrong timestamp in a table with date and time (except 00:00:00) before 1899-12-30

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75853

--- Comment #13 from QA Administrators  ---
Dear Robert Großkopf,

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 44931] EDITING, FILEOPEN: cross-referencing HEADINGS in a sub-document from master-document fails

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=44931

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

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 77388] Images, inserted in a table cell, go out of cell borders when the document (and thus the table) is zoomed.

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=77388

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

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 141093] Anchor "to paragraph" or 'to character' puts an image larger than page margin above present text (should be below)

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141093

--- Comment #5 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 141640] Show value for line length > 100mm in writer

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141640

--- Comment #3 from QA Administrators  ---
Dear Ralf Rottschaefer,

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 118171] Complex symbols with wrong position after copy / paste

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118171

--- Comment #7 from QA Administrators  ---
Dear Rainer Bielefeld Retired,

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 126892] visibility of cut/pasted section cannot be programmatically changed

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126892

--- Comment #4 from QA Administrators  ---
Dear Lionel Elie Mamane,

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 154783] PDF:

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154783

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m.a.riosv  ---
Please take a look if opening, selecting pdf on the last position of writer
files, that open the file in writer instead draw is what you need.
The import is like in draw but in a writer file.

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

[Libreoffice-bugs] [Bug 154733] Enhancement: Consistent behavior for change of zoom factor when using various plus and minus icons

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154733

--- Comment #4 from Jim Raykowski  ---
(In reply to V Stuart Foote from comment #3)
> I think approach of https://gerrit.libreoffice.org/c/core/+/146825 for bug
> 45705 gets us partway in master against 7.6
Yes, this approach can be applied to the remaining places.

Here is a list of what is done and what needs to be done:

done by Rafael - https://gerrit.libreoffice.org/c/core/+/146825
basctl/source/basicide/basides1.cxx
void Shell::ExecuteGlobal( SfxRequest& rReq )

needs patched
sc/source/ui/view/prevwsh.cxx
void ScPreviewShell::Execute( SfxRequest& rReq )

done by me - https://gerrit.libreoffice.org/c/core/+/104196
sc/source/ui/view/tabvwsh3.cxx
void ScTabViewShell::Execute( SfxRequest& rReq )

done by Rafael - https://gerrit.libreoffice.org/c/core/+/146825
sd/source/ui/view/drviewse.cxx
void DrawViewShell::FuSupport(SfxRequest& rReq)

needs patched
sd/source/ui/view/outlnvs2.cxx
void OutlineViewShell::FuTemporary(SfxRequest )

needs patched
sw/source/uibase/uiview/pview.cxx
void  SwPagePreview::Execute( SfxRequest  )

done by me - https://gerrit.libreoffice.org/c/core/+/102830
sw/source/uibase/uiview/view2.cxx
void SwView::Execute(SfxRequest )

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

[Libreoffice-bugs] [Bug 154775] Part of document missing when opened from an email

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154775

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #2 from m.a.riosv  ---
Reproducible
Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: f22f7159ec1bd28d19f4a8b431893436419ecd64
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: es-ES (es_ES); UI: en-US Calc: CL threaded Jumbo


Going to any cell in the second table, and with Menu/Table/Select/Table, shows
as if the table is on the second page somewhere on the right hand side of the
page.

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

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

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106179

--- Comment #52 from Jake Doyle  ---
Protect your concrete surfaces from wear and tear with our expert concrete
sealing services in Melbourne. At Premium Concrete Resurfacing, we use
high-quality sealants to protect your concrete floors from water, stains, and
other forms of damage. Our experienced team ensures a seamless and long-lasting
finish, leaving your concrete surfaces looking great for years to come. Contact
us today to learn more about how we can help you protect your concrete
surfaces.

Visit: - https://premiumconcreteresurfacing.com.au/concrete-sealing-melbourne

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

[Libreoffice-bugs] [Bug 154750] cell condition interacts with different columns and rows

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154750

--- Comment #9 from m.a.riosv  ---
Please attach an example reduced as much as possible, and detail the steps to
reproduce the issue.

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

[Libreoffice-bugs] [Bug 154630] If Selection is ticked in file naming dialog reached through File - Export, it should also be ticked in the subsequently opened PDF export settings dialog

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154630

--- Comment #13 from m.a.riosv  ---
What I have done time ago, it's customizing the toolbar as what's suggested in
previous comment.

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

[Libreoffice-bugs] [Bug 154750] cell condition interacts with different columns and rows

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154750

--- Comment #8 from Darrell O'Brien  ---
I print out the pages from fixture sheet and supply it to people who do the
tipping then they cut off each week and return section with their tips I then
enter the teams number for program to lookup team name selected by the people
tipping in sheet enter tips and use the condition to check input is referenced
to Fixture sheet sme times cell doe's not show colour and I have to check
condition programing and re program conditioning and on completing conditioning
program a  different cell in a previous weeks entry will go no colour so I have
tried to check condition program of cell that change and have seen that the
cell reference has changed so I reprogram cell that was changed and find that
the data entered cell changes to no colour. Then I give up.

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

[Libreoffice-bugs] [Bug 154750] cell condition interacts with different columns and rows

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154750

--- Comment #7 from Darrell O'Brien  ---
I have tried to delete conditioning of enter tips cell and then condition enter
tips cell selecting the box alongside equal to and going to Fixture sheet and
set 
the reference cell under condition 1 then add a condition 2 and condition the
second option then press ok.

sometimes it repairs and other times it doe's not and I give up and contact
you.

computer keeps changing cell condition reference in enter tips sheet.

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

[Libreoffice-bugs] [Bug 153374] Hang using Keyboard viewer

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153374

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.6.0

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

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

2023-04-12 Thread Patrick Luby (via logerrit)
 vcl/osx/a11ywrapper.mm |   16 ++--
 1 file changed, 10 insertions(+), 6 deletions(-)

New commits:
commit 127eacf630e1712fd5addcabed404b2d33752311
Author: Patrick Luby 
AuthorDate: Wed Apr 12 17:17:12 2023 -0400
Commit: Patrick Luby 
CommitDate: Thu Apr 13 02:09:19 2023 +0200

Related: tdf#153374 Don't release autoreleased attributeNames

Also, return an autoreleased empty array instead of a retained array.

Change-Id: I5f494b301dbae859486d6bc4874112b714022b60
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150307
Tested-by: Jenkins
Reviewed-by: Patrick Luby 

diff --git a/vcl/osx/a11ywrapper.mm b/vcl/osx/a11ywrapper.mm
index 73abb6050733..c4beeb5b0567 100644
--- a/vcl/osx/a11ywrapper.mm
+++ b/vcl/osx/a11ywrapper.mm
@@ -807,8 +807,13 @@ static std::ostream <<(std::ostream , NSObject 
*obj) {
 if ( [ self accessibleValue ] ) {
 [ AquaA11yValueWrapper addAttributeNamesTo: attributeNames ];
 }
-[ nativeSubrole release ];
-[ title release ];
+if ( nativeSubrole ) {
+[ nativeSubrole release ];
+}
+if ( title ) {
+[ title release ];
+}
+// Related: tdf#153374 Don't release autoreleased attributeNames
 return attributeNames;
 } catch ( DisposedException & ) { // Object is no longer available
 if ( nativeSubrole ) {
@@ -817,11 +822,10 @@ static std::ostream <<(std::ostream , NSObject 
*obj) {
 if ( title ) {
 [ title release ];
 }
-if ( attributeNames ) {
-[ attributeNames release ];
-}
+// Related: tdf#153374 Don't release autoreleased attributeNames
+// Also, return an autoreleased empty array instead of a retained 
array.
 [ AquaA11yFactory removeFromWrapperRepositoryFor: [ self 
accessibleContext ] ];
-return [ [ NSArray alloc ] init ];
+return [ NSArray array ];
 }
 }
 


[Libreoffice-bugs] [Bug 151194] VIEWING: Cannot maximize LO main window with low resolution screen in Arch XFCE with certain themes + language packs

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151194

--- Comment #13 from flklb-b...@t-online.de ---
Update: The bug is still present for me in version 7.4.6.2.

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

[Libreoffice-bugs] [Bug 154783] New: PDF:

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154783

Bug ID: 154783
   Summary: PDF:
   Product: LibreOffice
   Version: 7.4.5.1 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: geoff.rushwo...@gmail.com

As a user, I would like to be able to convert a PDF into a Writer document to
be able to edit/annotate without having to use other converters.

My attempt to open a document created a Draw document.

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

[Libreoffice-bugs] [Bug 139007] [META] PDF accessibility

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139007
Bug 139007 depends on bug 152233, which changed state.

Bug 152233 Summary: FILESAVE PDF PAC tool reports "Text object not tagged" 
error with signature line
https://bugs.documentfoundation.org/show_bug.cgi?id=152233

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 152233] FILESAVE PDF PAC tool reports "Text object not tagged" error with signature line

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152233

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

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

--- Comment #4 from Gabor Kelemen (allotropia)  ---
I can no longer reproduce the error message of this one with

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: fc6806c4be8585ce0d35a6b581bf8b3dbf858500
CPU threads: 14; OS: Windows 10.0 Build 19045; UI render: default; VCL: win
Locale: hu-HU (hu_HU); UI: hu-HU
Calc: threaded

and uploading to VeraPDF or checking with PAC tool locally.

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

[Libreoffice-bugs] [Bug 134815] Add keyboard shorcuts for greek characters.

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134815

V Stuart Foote  changed:

   What|Removed |Added

 Resolution|--- |WONTFIX
 Status|NEW |RESOLVED
 CC||vsfo...@libreoffice.org

--- Comment #2 from V Stuart Foote  ---
Setting => WF, no sense that this is would ever be worked up if Dante is not
going to tackle it for his own interest.

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

[Libreoffice-bugs] [Bug 98259] [META] Keyboard shortcuts and accelerators bugs and enhancements

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98259
Bug 98259 depends on bug 134815, which changed state.

Bug 134815 Summary: Add keyboard shorcuts for greek characters.
https://bugs.documentfoundation.org/show_bug.cgi?id=134815

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WONTFIX

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

[Libreoffice-bugs] [Bug 153935] PDF/UA: Mark heading rows of tables with autoformat in PDF export

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153935

--- Comment #6 from Gabor Kelemen (allotropia)  ---
Checked in 

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: fc6806c4be8585ce0d35a6b581bf8b3dbf858500
CPU threads: 14; OS: Windows 10.0 Build 19045; UI render: default; VCL: win
Locale: hu-HU (hu_HU); UI: hu-HU
Calc: threaded

Now the PAC tool reports all cells in the first row are marked as TH.

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

[Libreoffice-bugs] [Bug 154782] A11Y sidebar: scrolling no longer works with mouse wheel

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154782

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |samuel.mehrbrodt@allotropia
   |desktop.org |.de
 CC||samuel.mehrbrodt@allotropia
   ||.de
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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

[Libreoffice-bugs] [Bug 154782] New: A11Y sidebar: scrolling no longer works with mouse wheel

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154782

Bug ID: 154782
   Summary: A11Y sidebar: scrolling no longer works with mouse
wheel
   Product: LibreOffice
   Version: 7.6.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kelem...@ubuntu.com
Blocks: 103440, 142978

This is related to bug 148776

1. Open attachment 185791 then look at the new Accessibility sidebar, listing a
lot of issues.
2. Try to scroll the list with the mouse wheel
-> There is only about 1 line up/down movement. You need to use the vertical
scroll bar to see the bottom of the list.

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: fc6806c4be8585ce0d35a6b581bf8b3dbf858500
CPU threads: 14; OS: Windows 10.0 Build 19045; UI render: default; VCL: win
Locale: hu-HU (hu_HU); UI: hu-HU
Calc: threaded

Seems to work fine under GTK3 vcl.

Likely a side effect from the dialog->sidebar conversion in bug 142978.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103440
[Bug 103440] [META] Sidebar accessibility bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=142978
[Bug 142978] Add an Accessibility sidebar
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 103440] [META] Sidebar accessibility bugs and enhancements

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103440

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 Depends on||154782


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154782
[Bug 154782] A11Y sidebar: scrolling no longer works with mouse wheel
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154781] Keyboard input un-does paste (if cell was previously empty)

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154781

Jim Avera  changed:

   What|Removed |Added

Summary|Keyboard input un-does  |Keyboard input un-does
   |paste from X PRIMARY|paste (if cell was
   |selection (if cell was  |previously empty)
   |previously empty)   |

--- Comment #2 from Jim Avera  ---
The same problem happens with Control-V paste from the clipboard, so not
specifically related to the X "PRIMARY" selection buffer.  Sorry about the
unnecessary complication. 

I changed the title to just say "paste".

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

[Libreoffice-bugs] [Bug 154781] Keyboard input un-does paste from X PRIMARY selection (if cell was previously empty)

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154781

--- Comment #1 from Jim Avera  ---
I tried under Wayland (at least I think it was...) and the problem is the same.

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

[Libreoffice-bugs] [Bug 154781] New: Keyboard input un-does paste from X PRIMARY selection (if cell was previously empty)

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154781

Bug ID: 154781
   Summary: Keyboard input un-does paste from X PRIMARY selection
(if cell was previously empty)
   Product: LibreOffice
   Version: 7.6.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jim.av...@gmail.com

STEPS TO REPRODUCE:
0.  In Xorg (don't know about Wayland)...

1.  Create or open a calc spreadsheet

2.  In a terminal (e.g. gnome-terminal) select some text with the mouse

3.  Click in an empty spreadsheet cell and middle-click
(selected text appears the spreadsheet cell as expected)

4.  Type any key on the keyboard

RESULTS: The pasted text vanishes from the cell

This happens only if the middle-click paste is the first thing entered;
subsequent middle-click-pasted content is not erased by typing in that cell. 
The problem re-appears when starting in a new empty cell, or the same cell
after deleting existing content.

Note: Middle-click in the X Window system (or equivalent keyboard shortcut, if
enabled), pastes the "PRIMARY selection" which is whatever is currently
selected by the mouse in any window.  It is independent of the "clipboard" used
by Ctl-C/Ctl-V.


Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 16a35542aa07ed69c6c699d1c17f076d87708958
CPU threads: 12; OS: Linux 5.15; UI render: default; VCL: gtk3
Locale: en-US (en_US.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 154780] Multiple spaces are reduced to one in the Writer result of a Base report

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154780

mc...@sfr.fr changed:

   What|Removed |Added

 CC||mc...@sfr.fr

--- Comment #1 from mc...@sfr.fr ---
Created attachment 186632
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186632=edit
Base with memo and report fields.

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

[Libreoffice-bugs] [Bug 154780] New: Multiple spaces are reduced to one in the Writer result of a Base report

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154780

Bug ID: 154780
   Summary: Multiple spaces are reduced to one in the Writer
result of a Base report
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mc...@sfr.fr

Description:
In database, the text of a "Memo" type field can look like this:

Multiple spaces between words:
Word1 Word2
Text OkOk

The problem, when the report is generated, the multiple spaces are reduced to
one and the presentation on Writer is not the same anymore:

Multiple spaces between words:
 Word1 Word2
Text Ok Ok

Steps to Reproduce:
1.In a 'Memo' type field, enter a text with multiple spaces between the words.
2. Make a report including this 'Memo' field
3.Run the report.

Actual Results:
Multiple spaces between words:
 Word1 Word2
Text Ok Ok

Expected Results:
Multiple spaces between words:
Word1 Word2
Text OkOk



Reproducible: Always


User Profile Reset: No

Additional Info:
The same thing happens when importing into Base (via Calc) an access database
with memo fields containing multiple spaces.

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

[Libreoffice-bugs] [Bug 153374] Hang using Keyboard viewer

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153374

--- Comment #12 from Patrick Luby  ---
(In reply to Buovjaga from comment #11)
> Thanks a lot. As the steps did not mention using Math, I thought the
> bibisect result was bogus.

Maybe it is indirectly related, who knows? What I found was that when doing the
steps in comment 10 was the only time that the catch block code was invoked in
the accessibility code. The catch block is where I saw a release call on an
autoreleased NSArray (the attributeNames variable was created with
[NSMutableArray arrayWithObjects:], not [[NSMutableArray alloc] init:]):

https://gerrit.libreoffice.org/c/core/+/150307/1/vcl/osx/a11ywrapper.mm

Anyway, I'll commit the above patch if it passes gerrit's tests. I am not sure
that the patch will fix this bug (I cannot reproduce the bug in my development
build). So, if the bug still occurs in the next nightly build, can you take a
sample in the Activity Monitor application when the Recover Document dialog
appears?

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

[Libreoffice-bugs] [Bug 92688] When inserting a cross-reference, remember last used format in "reference to" for each type

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=92688

sdc.bla...@youmail.dk changed:

   What|Removed |Added

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

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

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

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

sdc.bla...@youmail.dk changed:

   What|Removed |Added

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

--- Comment #3 from sdc.bla...@youmail.dk ---
Adding mention of enhancement request - bug 92688 (to remember the last used
cross-reference type for "insert - field")  -- in case it involves the same
underlying code.

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

[Libreoffice-bugs] [Bug 150734] Filter to exclude empty cells on Pivot Table still shows empty cells when deselected

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150734

Buovjaga  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-commits] core.git: Branch 'distro/collabora/co-22.05' - include/xmloff sd/qa xmloff/source

2023-04-12 Thread Sarper Akdemir (via logerrit)
 include/xmloff/xmltoken.hxx   |2 +
 include/xmloff/xmltypes.hxx   |1 
 sd/qa/unit/data/odp/style-overflow-behavior-clip.fodp |   18 
 sd/qa/unit/import-tests2.cxx  |   25 +-
 xmloff/source/core/xmltoken.cxx   |2 +
 xmloff/source/draw/sdpropls.cxx   |1 
 xmloff/source/style/prhdlfac.cxx  |5 +++
 xmloff/source/token/tokens.txt|2 +
 8 files changed, 55 insertions(+), 1 deletion(-)

New commits:
commit d15784adcb96f1d03c20885042d93f5a1a4495f4
Author: Sarper Akdemir 
AuthorDate: Fri Apr 7 13:32:49 2023 +0300
Commit: Andras Timar 
CommitDate: Wed Apr 12 23:29:04 2023 +0200

xmloff: ODF import/export for style:overflow-behavior "clip"

Adds initial support for style:overflow-behavior

According to OpenDocument-v1.3-part3 style:overflow-behavior can take
values of:
- "clip"
- "auto-create-new-frame"

This patch doesn't properly implement support "auto-create-new-frame",
only "clip".

If "clip" is set, TextClipVerticalOverflow is set to true, causing the
vertical overflowing text to be clipped.

"auto-create-new-frame" is treated the same as omitting the
style:overflow-behavior attribute, setting TextClipVerticalOverflow to
false.

Change-Id: Iea298f41fbf0cf18dc07f41788ba0b665515db8b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150122
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150305
Tested-by: Andras Timar 
Reviewed-by: Andras Timar 

diff --git a/include/xmloff/xmltoken.hxx b/include/xmloff/xmltoken.hxx
index 4eb363dc0ee3..888f57053dc8 100644
--- a/include/xmloff/xmltoken.hxx
+++ b/include/xmloff/xmltoken.hxx
@@ -287,6 +287,7 @@ namespace xmloff::token {
 XML_AUTHOR_NAME,
 XML_AUTO,
 XML_AUTO_COMPLETE,
+XML_AUTO_CREATE_NEW_FRAME,
 XML_AUTO_GROW_HEIGHT,
 XML_AUTO_GROW_WIDTH,
 XML_AUTO_RELOAD,
@@ -1452,6 +1453,7 @@ namespace xmloff::token {
 XML_OUTLINE_STYLE,
 XML_OUTSET,
 XML_OUTSIDE,
+XML_OVERFLOW_BEHAVIOR,
 XML_OVERLAP,
 XML_OVERLAY,
 XML_P,
diff --git a/include/xmloff/xmltypes.hxx b/include/xmloff/xmltypes.hxx
index 13e7c3fcc6c0..4dbf2081db1b 100644
--- a/include/xmloff/xmltypes.hxx
+++ b/include/xmloff/xmltypes.hxx
@@ -277,6 +277,7 @@
 #define XML_TYPE_TEXT_OVERLINE_COLOR(XML_TEXT_TYPES_START + 112)
 #define XML_TYPE_TEXT_OVERLINE_HASCOLOR (XML_TEXT_TYPES_START + 113)
 #define XML_TYPE_BOOL_FALSE (XML_TEXT_TYPES_START + 114)
+#define XML_TYPE_TEXT_OVERFLOW_BEHAVIOR (XML_TEXT_TYPES_START + 115)
 
 #define XML_TYPE_CHAR_SCRIPT(XML_TEXT_TYPES_START + 116)
 #define XML_TYPE_CHAR_RFC_LANGUAGE_TAG  (XML_TEXT_TYPES_START + 117)
diff --git a/sd/qa/unit/data/odp/style-overflow-behavior-clip.fodp 
b/sd/qa/unit/data/odp/style-overflow-behavior-clip.fodp
new file mode 100644
index ..29baf838f724
--- /dev/null
+++ b/sd/qa/unit/data/odp/style-overflow-behavior-clip.fodp
@@ -0,0 +1,18 @@
+
+
+ 
+  
+   
+  
+ 
+ 
+  
+   
+
+  First line that is not clipped.
+  Second line that is clipped - but still shows up when 
editing
+
+   
+  
+ 
+
diff --git a/sd/qa/unit/import-tests2.cxx b/sd/qa/unit/import-tests2.cxx
index 803408adc3f4..570e9078e914 100644
--- a/sd/qa/unit/import-tests2.cxx
+++ b/sd/qa/unit/import-tests2.cxx
@@ -178,6 +178,7 @@ public:
 void testTdf144092TableHeight();
 void testTdf151547TransparentWhiteText();
 void testTdf149588TransparentSolidFill();
+void testOverflowBehaviorClip();
 
 CPPUNIT_TEST_SUITE(SdImportTest2);
 
@@ -248,6 +249,7 @@ public:
 CPPUNIT_TEST(testTdf144092TableHeight);
 CPPUNIT_TEST(testTdf151547TransparentWhiteText);
 CPPUNIT_TEST(testTdf149588TransparentSolidFill);
+CPPUNIT_TEST(testOverflowBehaviorClip);
 
 CPPUNIT_TEST_SUITE_END();
 };
@@ -2064,8 +2066,29 @@ void SdImportTest2::testTdf149588TransparentSolidFill()
 xDocShRef->DoClose();
 }
 
-CPPUNIT_TEST_SUITE_REGISTRATION(SdImportTest2);
+void SdImportTest2::testOverflowBehaviorClip()
+{
+sd::DrawDocShellRef xDocShRef = loadURL(
+
m_directories.getURLFromSrc(u"/sd/qa/unit/data/odp/style-overflow-behavior-clip.fodp"),
+FODP);
+{
+uno::Reference xPropSet(getShapeFromPage(0, 0, 
xDocShRef));
+// Without the accompanying fix in place, this test would have failed 
with:
+// - Expected: 1
+// - Actual  : 0
+CPPUNIT_ASSERT_EQUAL(true,
+ 
xPropSet->getPropertyValue("TextClipVerticalOverflow").get());
+}
 
+xDocShRef = saveAndReload(xDocShRef.get(), ODP);
+{
+uno::Reference xPropSet(getShapeFromPage(0, 0, 
xDocShRef));
+

[Libreoffice-commits] core.git: Branch 'distro/collabora/co-22.05' - oox/inc oox/source svx/qa

2023-04-12 Thread Sarper Akdemir (via logerrit)
 oox/inc/drawingml/textbodyproperties.hxx   |2 
 oox/source/drawingml/shape.cxx |5 --
 oox/source/drawingml/textbodypropertiescontext.cxx |   14 ++
 oox/source/export/drawingml.cxx|5 ++
 oox/source/token/properties.txt|1 
 svx/qa/unit/data/clip-vertical-overflow.pptx   |binary
 svx/qa/unit/svdraw.cxx |   45 +
 7 files changed, 67 insertions(+), 5 deletions(-)

New commits:
commit 37006e138407017366c3a0cb62ee71a6f7418c5d
Author: Sarper Akdemir 
AuthorDate: Thu Apr 6 13:01:02 2023 +0300
Commit: Andras Timar 
CommitDate: Wed Apr 12 23:28:26 2023 +0200

pptx import/export: consider TextClipVerticalOverflow for vertOverflow

Also adds a unit test that tests TextClipVerticalOverflow on
4 different scenarios.

Change-Id: I6232935765641c796046d90fe2207d67ae4b3eb5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150107
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150237
Reviewed-by: Andras Timar 
Tested-by: Andras Timar 

diff --git a/oox/inc/drawingml/textbodyproperties.hxx 
b/oox/inc/drawingml/textbodyproperties.hxx
index 7cc1b9d8041c..1945a2c185df 100644
--- a/oox/inc/drawingml/textbodyproperties.hxx
+++ b/oox/inc/drawingml/textbodyproperties.hxx
@@ -48,7 +48,7 @@ struct TextBodyProperties
 /// Normal autofit: font scale (default: 100%).
 sal_Int32 mnFontScale = 10;
 OUString msHorzOverflow;
-OUString msVertOverflow;
+std::optional< sal_Int32 > moVertOverflow{};
 
 std::array, 4> maTextDistanceValues;
 
diff --git a/oox/source/drawingml/shape.cxx b/oox/source/drawingml/shape.cxx
index 2f4a85854dba..ae564c91ccb8 100644
--- a/oox/source/drawingml/shape.cxx
+++ b/oox/source/drawingml/shape.cxx
@@ -1611,9 +1611,8 @@ Reference< XShape > const & Shape::createAndInsert(
 auto sHorzOverflow = 
getTextBody()->getTextProperties().msHorzOverflow;
 if (!sHorzOverflow.isEmpty())
 putPropertyToGrabBag("horzOverflow", 
uno::makeAny(getTextBody()->getTextProperties().msHorzOverflow));
-auto nVertOverflow = 
getTextBody()->getTextProperties().msVertOverflow;
-if (!nVertOverflow.isEmpty())
-putPropertyToGrabBag("vertOverflow", 
uno::makeAny(getTextBody()->getTextProperties().msVertOverflow));
+if (XML_ellipsis == 
getTextBody()->getTextProperties().moVertOverflow)
+putPropertyToGrabBag("vertOverflow", 
uno::makeAny(OUString{"ellipsis"}));
 }
 
 // Note that the script 
oox/source/drawingml/customshapes/generatePresetsData.pl looks
diff --git a/oox/source/drawingml/textbodypropertiescontext.cxx 
b/oox/source/drawingml/textbodypropertiescontext.cxx
index f7d4abd4e685..3c3950762c3d 100644
--- a/oox/source/drawingml/textbodypropertiescontext.cxx
+++ b/oox/source/drawingml/textbodypropertiescontext.cxx
@@ -85,7 +85,19 @@ TextBodyPropertiesContext::TextBodyPropertiesContext( 
ContextHandler2Helper cons
   // ST_TextHorzOverflowType
 mrTextBodyProp.msHorzOverflow = rAttribs.getString(XML_horzOverflow, "");
 // ST_TextVertOverflowType
-mrTextBodyProp.msVertOverflow = rAttribs.getString(XML_vertOverflow, "");
+if( rAttribs.hasAttribute(XML_vertOverflow) )
+{
+mrTextBodyProp.moVertOverflow = 
rAttribs.getToken(XML_vertOverflow).get(XML_overflow);
+switch( mrTextBodyProp.moVertOverflow.value_or(XML_overflow) )
+{
+case XML_ellipsis:
+case XML_clip:
+
mrTextBodyProp.maPropertyMap.setProperty(PROP_TextClipVerticalOverflow, true);
+break;
+default:
+break;
+}
+}
 
 // ST_TextColumnCount
 if (const sal_Int32 nColumns = rAttribs.getInteger(XML_numCol, 0); 
nColumns > 0)
diff --git a/oox/source/export/drawingml.cxx b/oox/source/export/drawingml.cxx
index 36006e2af562..2999f1fcd8d7 100644
--- a/oox/source/export/drawingml.cxx
+++ b/oox/source/export/drawingml.cxx
@@ -3510,6 +3510,11 @@ void DrawingML::WriteText(const Reference& 
rXIface, bool bBodyPr, bo
 }
 }
 
+if (!sVertOverflow && GetProperty(rXPropSet, 
"TextClipVerticalOverflow") && mAny.get())
+{
+sVertOverflow = "clip";
+}
+
 mpFS->startElementNS( (nXmlNamespace ? nXmlNamespace : XML_a), 
XML_bodyPr,
XML_numCol, 
sax_fastparser::UseIf(OString::number(nCols), nCols > 0),
XML_spcCol, 
sax_fastparser::UseIf(OString::number(oox::drawingml::convertHmmToEmu(nColSpacing)),
 nCols > 0 && nColSpacing >= 0),
diff --git a/oox/source/token/properties.txt b/oox/source/token/properties.txt
index e3188542..cea3ea503703 100644
--- a/oox/source/token/properties.txt
+++ 

[Libreoffice-bugs] [Bug 153374] Hang using Keyboard viewer

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153374

Buovjaga  changed:

   What|Removed |Added

  Component|Calc|Formula Editor

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

[Libreoffice-bugs] [Bug 153374] Hang using Keyboard viewer

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=153374

Buovjaga  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected, bisected
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #11 from Buovjaga  ---
Thanks a lot. As the steps did not mention using Math, I thought the bibisect
result was bogus.

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

[Libreoffice-bugs] [Bug 139112] Accessibility options dialog should adapt its width to long labels

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139112

--- Comment #28 from Buovjaga  ---
(In reply to BogdanB from comment #27)
> (In reply to Buovjaga from comment #17)
> Do you now if this properties is what is needed?
> True
> 
> If yes, I could do the change.

If you can build on Windows and test with Polish, you can see what happens.

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

[Libreoffice-bugs] [Bug 150734] Filter to exclude empty cells on Pivot Table still shows empty cells when deselected

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150734

--- Comment #5 from lucky  ---
Hello Colin,

Thank you for reporting the bug. I can confirm that the bug is present in
master.

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: d9031bd83ffe718a80da9ecbdbeb485e35fbabee
CPU threads: 8; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL threaded

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

[Libreoffice-bugs] [Bug 154687] Default attributes being overridden with no way to reset

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154687

--- Comment #4 from Don Matschull  ---
(In reply to Buovjaga from comment #3)
> (In reply to Don Matschull from comment #2)
> > I understand that the Line Color setting is direct formatting that is taking
> > precedence over the default style. I'd like a way to remove this direct
> > formatting after it has once been set in order to return to the default
> > style setting.
> 
> Hit Ctrl-M or Format - Clear Direct Formatting

Using (In reply to Buovjaga from comment #3)
> (In reply to Don Matschull from comment #2)
> > I understand that the Line Color setting is direct formatting that is taking
> > precedence over the default style. I'd like a way to remove this direct
> > formatting after it has once been set in order to return to the default
> > style setting.
> 
> Hit Ctrl-M or Format - Clear Direct Formatting

Format>Clear Direct Formatting clears direct formatting applied to an object at
the time.

However, it does not clear any "globalized" direct formatting in the Line and
Filling toolbar. 

I'm trying to find a way to change the Line Color setting in the Line and
Filling toolbar so that any new object using the setting in the Default
Style.(In reply to Buovjaga from comment #3)
> (In reply to Don Matschull from comment #2)
> > I understand that the Line Color setting is direct formatting that is taking
> > precedence over the default style. I'd like a way to remove this direct
> > formatting after it has once been set in order to return to the default
> > style setting.
> 
> Hit Ctrl-M or Format - Clear Direct Formatting

If an object is selected, Format>Clear Direct Formatting clears any direct
formatting set for that object. However, it does not reset the Line Color
setting in the Line and Toolbar back to the default setting. Any new object
draw will still not use the default setting.

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

[Libreoffice-bugs] [Bug 107742] [META] Form control bugs and enhancements

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107742

BogdanB  changed:

   What|Removed |Added

 Depends on||146925


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=146925
[Bug 146925] How to use form controls by keyboard only? Description is missing
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146925] How to use form controls by keyboard only? Description is missing

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146925

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 98259] [META] Keyboard shortcuts and accelerators bugs and enhancements

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98259

BogdanB  changed:

   What|Removed |Added

 Depends on||134815


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=134815
[Bug 134815] Add keyboard shorcuts for greek characters.
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 134815] Add keyboard shorcuts for greek characters.

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134815

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 39750] [META] General Math formula editor improvements

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=39750

BogdanB  changed:

   What|Removed |Added

 Depends on||134861


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=134861
[Bug 134861] Drag-n-drop does not update the rendered formula until a key is
pressed on keyboard
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 134861] Drag-n-drop does not update the rendered formula until a key is pressed on keyboard

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134861

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=39750
[Bug 39750] [META] General Math formula editor improvements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 114005] [META] Gradient fill bugs and enhancements

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114005

BogdanB  changed:

   What|Removed |Added

 Depends on||150894


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=150894
[Bug 150894] Added Gradients Not Saved in documents (ODT, ODG)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 150894] Added Gradients Not Saved in documents (ODT, ODG)

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=150894

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 114005] [META] Gradient fill bugs and enhancements

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114005

BogdanB  changed:

   What|Removed |Added

 Depends on||152536


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=152536
[Bug 152536] FILEOPEN DOCX gradient page background is imported as solid
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152536] FILEOPEN DOCX gradient page background is imported as solid

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=152536

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 114005] [META] Gradient fill bugs and enhancements

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114005

BogdanB  changed:

   What|Removed |Added

 Depends on||145130


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=145130
[Bug 145130] Changing an LO Draw's background gradient color resets its
gradient type, angle, and other properties
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145130] Changing an LO Draw's background gradient color resets its gradient type, angle, and other properties

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145130

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 41560] [META] Keyboard shortcuts tab of Customization dialog

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=41560

BogdanB  changed:

   What|Removed |Added

 Depends on||151180


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=151180
[Bug 151180] Deleting keyboard shortcuts didn't work
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 151180] Deleting keyboard shortcuts didn't work

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=151180

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=41560
[Bug 41560] [META] Keyboard shortcuts tab of Customization dialog
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 98259] [META] Keyboard shortcuts and accelerators bugs and enhancements

2023-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98259

BogdanB  changed:

   What|Removed |Added

 Depends on||150060


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=150060
[Bug 150060] Keyboard Shortcuts for Black and White Screen don't work
(Presentation Mode)
-- 
You are receiving this mail because:
You are the assignee for the bug.

  1   2   3   4   5   >