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

2023-04-18 Thread Tomaž Vajngerl (via logerrit)
 sw/qa/core/theme/ThemeTest.cxx |  185 +
 1 file changed, 96 insertions(+), 89 deletions(-)

New commits:
commit 4396c1a2294d6904b5aa808a1f970a2586d63962
Author: Tomaž Vajngerl 
AuthorDate: Tue Mar 7 16:14:34 2023 +0900
Commit: Tomaž Vajngerl 
CommitDate: Wed Apr 19 07:30:34 2023 +0200

sw: rearrange ThemeTest - add checks for fill, line styles

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

diff --git a/sw/qa/core/theme/ThemeTest.cxx b/sw/qa/core/theme/ThemeTest.cxx
index 690523d6b006..802185494991 100644
--- a/sw/qa/core/theme/ThemeTest.cxx
+++ b/sw/qa/core/theme/ThemeTest.cxx
@@ -45,93 +45,12 @@ CPPUNIT_TEST_FIXTURE(SwCoreThemeTest, 
testThemeColorInHeading)
 CPPUNIT_ASSERT_EQUAL(model::ThemeColorType::Accent1, 
aThemeColor.getType());
 }
 
-void checkEffects(std::vector const& rEffectStyleList)
-{
-CPPUNIT_ASSERT_EQUAL(size_t(3), rEffectStyleList.size());
-{
-model::EffectStyle rEffectStyle = rEffectStyleList[0];
-CPPUNIT_ASSERT_EQUAL(size_t(0), rEffectStyle.maEffectList.size());
-}
-
-{
-model::EffectStyle rEffectStyle = rEffectStyleList[1];
-CPPUNIT_ASSERT_EQUAL(size_t(0), rEffectStyle.maEffectList.size());
-}
-
-{
-model::EffectStyle rEffectStyle = rEffectStyleList[2];
-CPPUNIT_ASSERT_EQUAL(size_t(1), rEffectStyle.maEffectList.size());
-model::Effect const& rEffect = rEffectStyle.maEffectList[0];
-
-CPPUNIT_ASSERT_EQUAL(model::EffectType::OuterShadow, rEffect.meType);
-CPPUNIT_ASSERT_EQUAL(sal_Int32(57150), rEffect.mnBlurRadius);
-CPPUNIT_ASSERT_EQUAL(sal_Int32(19050), rEffect.mnDistance);
-CPPUNIT_ASSERT_EQUAL(sal_Int32(540), rEffect.mnDirection);
-CPPUNIT_ASSERT_EQUAL(model::RectangleAlignment::Center, 
rEffect.meAlignment);
-CPPUNIT_ASSERT_EQUAL(false, rEffect.mbRotateWithShape);
-
-CPPUNIT_ASSERT_EQUAL(model::ColorType::RGB, rEffect.maColor.meType);
-CPPUNIT_ASSERT_EQUAL(sal_Int32(0), rEffect.maColor.mnComponent1);
-CPPUNIT_ASSERT_EQUAL(sal_Int32(0), rEffect.maColor.mnComponent2);
-CPPUNIT_ASSERT_EQUAL(sal_Int32(0), rEffect.maColor.mnComponent3);
-
-CPPUNIT_ASSERT_EQUAL(size_t(1), 
rEffect.maColor.maTransformations.size());
-CPPUNIT_ASSERT_EQUAL(model::TransformationType::Alpha,
- rEffect.maColor.maTransformations[0].meType);
-CPPUNIT_ASSERT_EQUAL(sal_Int16(6300), 
rEffect.maColor.maTransformations[0].mnValue);
-}
-}
-
-CPPUNIT_TEST_FIXTURE(SwCoreThemeTest, testDrawPageThemeExistsDOCX)
+void checkFillStyles(std::vector const& rStyleList)
 {
-createSwDoc("ThemeColorInHeading.docx");
-SwDoc* pDoc = getSwDoc();
-CPPUNIT_ASSERT(pDoc);
-
-SdrPage* pPage = 
pDoc->getIDocumentDrawModelAccess().GetDrawModel()->GetPage(0);
-auto const& pTheme = pPage->getSdrPageProperties().GetTheme();
-CPPUNIT_ASSERT(pTheme);
-CPPUNIT_ASSERT_EQUAL(OUString(u"Office Theme"), pTheme->GetName());
-
-model::ColorSet* pColorSet = pTheme->GetColorSet();
-CPPUNIT_ASSERT(pColorSet);
-CPPUNIT_ASSERT_EQUAL(OUString(u"Orange"), pColorSet->getName());
-
-CPPUNIT_ASSERT_EQUAL(Color(0xE48312), 
pTheme->GetColor(model::ThemeColorType::Accent1));
-CPPUNIT_ASSERT_EQUAL(Color(0xBD582C), 
pTheme->GetColor(model::ThemeColorType::Accent2));
-CPPUNIT_ASSERT_EQUAL(Color(0x865640), 
pTheme->GetColor(model::ThemeColorType::Accent3));
-CPPUNIT_ASSERT_EQUAL(Color(0x9B8357), 
pTheme->GetColor(model::ThemeColorType::Accent4));
-CPPUNIT_ASSERT_EQUAL(Color(0xC2BC80), 
pTheme->GetColor(model::ThemeColorType::Accent5));
-CPPUNIT_ASSERT_EQUAL(Color(0x94A088), 
pTheme->GetColor(model::ThemeColorType::Accent6));
-CPPUNIT_ASSERT_EQUAL(Color(0x00), 
pTheme->GetColor(model::ThemeColorType::Dark1));
-CPPUNIT_ASSERT_EQUAL(Color(0x637052), 
pTheme->GetColor(model::ThemeColorType::Dark2));
-CPPUNIT_ASSERT_EQUAL(Color(0xFF), 
pTheme->GetColor(model::ThemeColorType::Light1));
-CPPUNIT_ASSERT_EQUAL(Color(0xCCDDEA), 
pTheme->GetColor(model::ThemeColorType::Light2));
-
-model::FontScheme const& rFontScheme = pTheme->getFontScheme();
-CPPUNIT_ASSERT_EQUAL(OUString(u"Calibri Light"), 
rFontScheme.getMajorLatin().maTypeface);
-CPPUNIT_ASSERT_EQUAL(OUString(u"Calibri"), 
rFontScheme.getMinorLatin().maTypeface);
-CPPUNIT_ASSERT_EQUAL(true, 
rFontScheme.getMajorAsian().maTypeface.isEmpty());
-CPPUNIT_ASSERT_EQUAL(true, 
rFontScheme.getMinorAsian().maTypeface.isEmpty());
-CPPUNIT_ASSERT_EQUAL(true, 
rFontScheme.getMajorComplex().maTypeface.isEmpty());
-CPPUNIT_ASSERT_EQUAL(true, 
rFontScheme.getMinorComplex().maTypeface.isEmpty());
-CPPUNIT_ASSERT_EQUAL(size_t(47), 
rFontScheme.getMajorSupplementalFontList().size());
-

[Libreoffice-bugs] [Bug 154482] [Clarification] - Delete Option not Present when Right Click on a Shape Element.

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

--- Comment #5 from muthu  ---
Hopefully, Customize Option mentioned above, which is already present, would
solve this query.

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

[Libreoffice-bugs] [Bug 100958] [EDITING] Cannot demote list item

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

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103369
[Bug 103369] [META] Bullet, numbered, and outline list bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 103369] [META] Bullet, numbered, and outline list bugs and enhancements

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

BogdanB  changed:

   What|Removed |Added

 Depends on||100958


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=100958
[Bug 100958] [EDITING] Cannot demote list item
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 113546] [META] Paragraph indent bugs and enhancements

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

BogdanB  changed:

   What|Removed |Added

 Depends on||154118


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154118
[Bug 154118] FILEOPEN: PPT: Incorrect indent
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154118] FILEOPEN: PPT: Incorrect indent

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

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 152373] Spell check on cell fails to apply correction if dialog closed after clicking Correct (see comment 3)

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

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 96000] [META] Spelling and grammar checking bugs and enhancements

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

BogdanB  changed:

   What|Removed |Added

 Depends on||152373


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=152373
[Bug 152373] Spell check on cell fails to apply correction if dialog closed
after clicking Correct (see comment 3)
-- 
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-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=39750

BogdanB  changed:

   What|Removed |Added

 Depends on||140729


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=140729
[Bug 140729] Cannot use digits in variable names
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 140729] Cannot use digits in variable names

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

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 97180] parenthesis in text are randomly bold

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

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 108019] [META] Calc UX bugs and enhancements

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

BogdanB  changed:

   What|Removed |Added

 Depends on||97180


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=97180
[Bug 97180] parenthesis in text are randomly bold
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 108440] [META] Database form bugs and enhancements

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

BogdanB  changed:

   What|Removed |Added

 Depends on||154780


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154780
[Bug 154780] Multiple spaces are reduced to one in the Writer result of a Base
report
-- 
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-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=154780

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 108253] [META] Calc cell formula bugs and enhancements

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

BogdanB  changed:

   What|Removed |Added

 Depends on||154852


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154852
[Bug 154852] CELL() function does not update after worksheet rename
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154852] CELL() function does not update after worksheet rename

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

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 108253] [META] Calc cell formula bugs and enhancements

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

BogdanB  changed:

   What|Removed |Added

 Depends on||126970


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=126970
[Bug 126970] Calc: calculation: cancellation and operand ordering effects in
calc | was: Function "SUM()" work doesn't correct if final result is zero
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 126970] Calc: calculation: cancellation and operand ordering effects in calc | was: Function "SUM()" work doesn't correct if final result is zero

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

BogdanB  changed:

   What|Removed |Added

 Blocks||108253


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 108252] [META] Cell-related bugs and enhancements (including formatting)

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

BogdanB  changed:

   What|Removed |Added

 Depends on||154820


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154820
[Bug 154820] Pasting a cell from Excel changes the default cell style
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154820] Pasting a cell from Excel changes the default cell style

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

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108252
[Bug 108252] [META] Cell-related bugs and enhancements (including formatting)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154873] The Random Number Generator dialog should allow the user to inform the number of rows and columns to be generated

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

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 102019] [META] Dialog bugs and enhancements

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

BogdanB  changed:

   What|Removed |Added

 Depends on||154873


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154873
[Bug 154873] The Random Number Generator dialog should allow the user to inform
the number of rows and columns to be generated
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 108827] [META] Calc functions bugs and enhancements

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

BogdanB  changed:

   What|Removed |Added

 Depends on||131526


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=131526
[Bug 131526] Random number generator Option no duplicates
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 131526] Random number generator Option no duplicates

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

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 154895] Full menu only shows complete after clicking on the extending arrows

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

BogdanB  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 CC||buzea.bog...@libreoffice.or
   ||g
 Status|NEW |UNCONFIRMED

--- Comment #4 from BogdanB  ---
Adrian, you can NOT confirm yourself the bug. Please wait others to test and
confirm it.

But, anyway, thanks for report.

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

[Libreoffice-bugs] [Bug 150950] line numbering ON/OFF indication in Tools menu

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

--- Comment #5 from QA Administrators  ---
Dear peter josvai,

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 154830] Fileopen takes too long to open an existing small file.

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

--- 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 147479] Pivot table display (empty) when data source is null

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

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

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-ux-advise] [Bug 150950] line numbering ON/OFF indication in Tools menu

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

--- Comment #5 from QA Administrators  ---
Dear peter josvai,

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 on the CC list for the bug.

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

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

Bug 147479 Summary: Pivot table display (empty) when data source is null
https://bugs.documentfoundation.org/show_bug.cgi?id=147479

   What|Removed |Added

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

-- 
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-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87740
Bug 87740 depends on bug 139617, which changed state.

Bug 139617 Summary: Optimal height isn't applied when shrinking word-wrapped 
cell (nor after entering the cell), only when content changes
https://bugs.documentfoundation.org/show_bug.cgi?id=139617

   What|Removed |Added

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

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

[Libreoffice-ux-advise] [Bug 147479] Pivot table display (empty) when data source is null

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

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

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 on the CC list for the bug.

[Libreoffice-bugs] [Bug 139617] Optimal height isn't applied when shrinking word-wrapped cell (nor after entering the cell), only when content changes

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

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

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 151661] New Versions of LibreOffice wipe out User Settings

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

--- Comment #2 from QA Administrators  ---
Dear mhsa...@hotmail.com,

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 151650] Extremely wide column width (54cm) when opening CSV file.

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

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

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 151642] Comments as PDF annotations: Wrong annotation type created, no customization options

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

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

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 60169] PIVOTTABLE Custom grand total name is not persistent when saved in xls

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

--- Comment #7 from QA Administrators  ---
Dear Kohei Yoshida,

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 98731] Progress bar is not a good indicator for filesave progress, when there are lots of bookmarks

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

--- Comment #14 from QA Administrators  ---
Dear Ben,

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 114717] SPELL: spellchecker does nonsense suggestions for de-DE

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

--- Comment #12 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 115247] Adjusting the table row height by drag and drop isn't functioning under circumstances

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

--- Comment #4 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 46515] TABLE: change column width when multiple/all cells are selected

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

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

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 106719] EDITING: No visible selection of the embedded table when selecting cell content

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

--- Comment #7 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 106043] EDITING: Select a table and outer content

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 105361] Select table row or table column is missing for table within a table (cell)

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

--- Comment #7 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 100634] macro syntax error causes infinite loop and cant close file

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

--- Comment #7 from QA Administrators  ---
Dear Tim Chambers,

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 154899] top of text is cut off

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

--- Comment #1 from dw2021  ---
Created attachment 186774
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186774=edit
Shows what happens

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

[Libreoffice-bugs] [Bug 154899] New: top of text is cut off

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

Bug ID: 154899
   Summary: top of text is cut off
   Product: LibreOffice
   Version: 7.5.1.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: dave.wagne...@gmail.com

Description:
In writing a new document, the top of the text gets cut off.


Steps to Reproduce:
1.open writer
2.start typing
3.

Actual Results:
top of text is cut off.

Expected Results:
complete text


Reproducible: Always


User Profile Reset: No

Additional Info:
n/a

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

[Libreoffice-bugs] [Bug 154898] New: Help

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

Bug ID: 154898
   Summary: Help
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Printing and PDF export
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: em...@jefgeorge.com

Description:
My presence on the web is jefgeorge.com. A primary goal of this website is to
de-hyperbole Physics & Engineering based Physics so that recent high school
grads can choose a STEM degree over other majors such as pre-Law or Psychology.
I gave you $50 earlier this year. I also have notes on my website that indicate
user who download LibreOffice should donate $50/year. If you want the $40/year
increased that's possible.

I have MS Office. There pdf links do not do well from MS Office. However, if
you want me to use MS Office, I will.

Currently, I reside in an extremely hostile Electromagnetic environment. It's
virtually impossible for me to generate minimal-error code. The website that
clouds my thoughts "allows" me to generate the pdf's I do because it benefits
minorities. Some of the pdf's @ jefgeorge.com explain Einstein. I'm sure if
people/minorities wanted to learn Relativity, Einstein would have said it's my
duty to educate! 

Please provide me "cripple free" LibreOffice or I will certainly honor your
request not to use it.

Everett George
jefgeorge.com


Actual Results:
Please read above notes.

Expected Results:
Cripple Free LibreOffice


Reproducible: Always


User Profile Reset: No

Additional Info:
Treat me like every one else!!!

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

[Libreoffice-bugs] [Bug 154897] New: Shift + End/Home should select slides in the Slide pane

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

Bug ID: 154897
   Summary: Shift + End/Home should select slides in the Slide
pane
   Product: LibreOffice
   Version: 7.6.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rafael.palma.l...@gmail.com

In Impress, if you click a slide in the slide pane and then use Shift + Arrow
Up/Down, then the slides are selected.

However, Shift + Home/End does not select the slides. It only goes to the
first/last slide, without selecting anything. So I'd like to propose that Shift
+ Home/End in the slide pane selects the slides as well (starting from the
current slide up to the first/last slide).

This is useful in large presentations. For instance, suppose I have a file with
50 slides and I want to remove all slides starting at slide 15. Then I could
simply click slide 15 and then use Ctrl + End to select the remaining slides up
until slide 50 and then delete them.

This use case is very common when preparing lectures, because we get a
"template" file and then want to keep only the first slides and remove the
rest.

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

[Libreoffice-bugs] [Bug 154883] Applying a Table Style in Impress should mark the file as "dirty" for saving

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

Maxim Monastirsky  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |momonas...@gmail.com
   |desktop.org |

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

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

2023-04-18 Thread Maxim Monastirsky (via logerrit)
 sd/source/ui/table/TableDesignPane.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 61b41646c5a93ca24f2c9f143cdb0da2c9258989
Author: Maxim Monastirsky 
AuthorDate: Tue Apr 18 20:33:38 2023 +0300
Commit: Maxim Monastirsky 
CommitDate: Wed Apr 19 00:53:40 2023 +0200

tdf#154883 Set doc as modified on applying table style

Change-Id: I2a20f35f8b6730f256216cea718ac9020347f119
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150584
Tested-by: Jenkins
Reviewed-by: Maxim Monastirsky 

diff --git a/sd/source/ui/table/TableDesignPane.cxx 
b/sd/source/ui/table/TableDesignPane.cxx
index 216cf09b3b59..c5f20588397b 100644
--- a/sd/source/ui/table/TableDesignPane.cxx
+++ b/sd/source/ui/table/TableDesignPane.cxx
@@ -475,6 +475,7 @@ void TableDesignWidget::ApplyStyle()
 pBindings->Invalidate( SID_REDO );
 }
 }
+setDocumentModified();
 }
 else
 {
@@ -530,6 +531,7 @@ void TableDesignWidget::ApplyOptions()
 pBindings->Invalidate( SID_REDO );
 }
 }
+setDocumentModified();
 }
 
 void TableDesignWidget::onSelectionChanged()


[Libreoffice-bugs] [Bug 154883] Applying a Table Style in Impress should mark the file as "dirty" for saving

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

--- Comment #2 from Commit Notification 
 ---
Maxim Monastirsky committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/61b41646c5a93ca24f2c9f143cdb0da2c9258989

tdf#154883 Set doc as modified on applying table style

It will be available in 7.6.0.

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

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

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

[Libreoffice-bugs] [Bug 154883] Applying a Table Style in Impress should mark the file as "dirty" for saving

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

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-bugs] [Bug 154800] Doesn't show document preview in preview pane

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

--- Comment #4 from Michael FA  ---
Created attachment 186773
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186773=edit
example, for comment number 3

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

[Libreoffice-bugs] [Bug 153248] Insert Caption and Caption Options dialogs have a mix of settings affecting the whole category or only current caption (see comment 16)

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

Eyal Rozenberg  changed:

   What|Removed |Added

 CC||tele...@surfxs.nl

--- Comment #18 from Eyal Rozenberg  ---
*** Bug 154887 has been marked as a duplicate of this bug. ***

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

[Libreoffice-bugs] [Bug 154887] UI: insert caption dialog settings & workflow

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

Eyal Rozenberg  changed:

   What|Removed |Added

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

--- Comment #3 from Eyal Rozenberg  ---
Looks like a dupe of 153248, feel free to reopen if you believe differently,
but then please explain the difference better.

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

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

[Libreoffice-bugs] [Bug 154830] Fileopen takes too long to open an existing small file.

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

--- Comment #10 from Dennis  ---
It is true I have a laser printer that is not turned on. However, LibreOffice
Writer (latest version of LO) does not have a problem with this, nor does any
other application outside of LibreOffice. 
Writer used to have a problem on earlier editions, but it was fixed.

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

[Libreoffice-bugs] [Bug 154800] Doesn't show document preview in preview pane

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

Michael FA  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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

[Libreoffice-bugs] [Bug 154800] Doesn't show document preview in preview pane

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

--- Comment #3 from Michael FA  ---
(In reply to Stéphane Guillou (stragu) from comment #2)
> Michael, there isn't enough information here for us to understand the issue.
> The screenshot shows previews for LO documents in the file explorer.
> Please provide precise steps to reproduce.

I know there are preview thumbnails, but what is needed is to be able to view a
document in the preview pane, without having to open it in libreoffice

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

[Libreoffice-bugs] [Bug 154894] On app startup, Libreoffice paints the window BEFORE setting its maximization state

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

Jeff Fortin Tam  changed:

   What|Removed |Added

Summary|On app startup, Libreoffice |On app startup, Libreoffice
   |displays / shows the window |paints the window BEFORE
   |BEFORE setting its  |setting its maximization
   |maximization state  |state

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

[Libreoffice-bugs] [Bug 154895] Full menu only shows complete after clicking on the extending arrows

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

Adrián  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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

[Libreoffice-bugs] [Bug 154895] Full menu only shows complete after clicking on the extending arrows

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

--- Comment #3 from Adrián  ---
Created attachment 186772
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186772=edit
After clicking

After clicking the arrows the icons now show up

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

[Libreoffice-bugs] [Bug 154895] Full menu only shows complete after clicking on the extending arrows

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

--- Comment #2 from Adrián  ---
Created attachment 186771
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186771=edit
When clicking on arrows

When clicking on the arrows

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

[Libreoffice-bugs] [Bug 154895] Full menu only shows complete after clicking on the extending arrows

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

Adrián  changed:

   What|Removed |Added

 Attachment #186770|Video that shows the issue  |Image that shows the issue
description||

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

[Libreoffice-bugs] [Bug 154895] Full menu only shows complete after clicking on the extending arrows

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

--- Comment #1 from Adrián  ---
Created attachment 186770
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186770=edit
Video that shows the issue

This is before clicking on the arrows

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

[Libreoffice-bugs] [Bug 67562] EDITING: Implement acronym management

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

--- Comment #12 from dolez...@cvut.cz ---
Ah, yes, I forgot about the DNA case (acronyms that shouldn't be expanded). In
that case the options probably should be per acronym? However it might be
possible to optimize the storage space by defining the option sets at the
beginning of the document and then refering to them (just to save space, the
user would never see this).

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

[Libreoffice-bugs] [Bug 99112] Restore down (unmaximising) can not remember previous window size and position across sessions

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

Jeff Fortin Tam  changed:

   What|Removed |Added

 CC||nekoh...@gmail.com

--- Comment #11 from Jeff Fortin Tam  ---
Does not happen to me on Fedora Linux 38 on Xorg/X11 with LibreOffice 7.5.2.
Non-maximized NON-TILED window dimensions are retained after quitting while
maximized.

However, HALF-TILED window dimensions (using GNOME Shell's Super+Left/Right
shortcut) are not retained, and that's normal behavior (at least in GNOME Shell
/ Mutter), all other apps behave that way. On GNOME, the only dimensions that
will be retained is when the window is not maximized AND not tiled.

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

[Libreoffice-bugs] [Bug 154896] Insert caption dialog doesn't offer controlling the first number

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks||114426


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 114426] [META] Caption bugs and enhancements

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||154896


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154896
[Bug 154896] Insert caption dialog doesn't offer controlling the first number
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154896] Insert caption dialog doesn't offer controlling the first number

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

Eyal Rozenberg  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=15
   ||3248
   Severity|minor   |enhancement

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

[Libreoffice-bugs] [Bug 153248] Insert Caption and Caption Options dialogs have a mix of settings affecting the whole category or only current caption (see comment 16)

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

Eyal Rozenberg  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 154896] New: Insert caption dialog doesn't offer controlling the first number

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

Bug ID: 154896
   Summary: Insert caption dialog doesn't offer controlling the
first number
   Product: LibreOffice
   Version: 7.6.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: eyalr...@gmx.com

Suppose I want my captions to start with -1 rather 1. Or to start with 20
rather than 1 since I'm writing a second part of a document. The "Insert
Caption" dialog doesn't let me do that.

Now, I realize this is a problem, because my choice affects other captions; but
that is bug 153248, i.e. we already have that problem anyway.

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

[Libreoffice-bugs] [Bug 67562] EDITING: Implement acronym management

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

--- Comment #11 from dolez...@cvut.cz ---
So to summarize, the field should:

1) Hold information about the two forms (long and short)
2) Have user defined formats (first/expanded with acronym, only/expanded
without acronym, following/short) to be independent on the authoring guidelines
3) Have options to disable the "only" form, that is to define the acronym even
when there is only one usage, and to show the acronym in the Acronym table even
when there is only one usage of the acronym

Does that sounds about right? However I'm not sure if it is necessary to have
these options for every single acronym, or whether global options (one set of
the three formats and two toggles for all acronyms) would be enough, do you
have any ideas on that? Are there perhaps some guidelines where you have to use
different parentheses based on some condition, such as the area of expertise
the acronym belongs to? If it turns out to be necessity for someone, redoing it
would be a serious headache, I think.

When this is implemented, I think it would make sense to just have some way to
quickly replace text with a field when known acronym is written by the user,
probably through a right click UNO command and optional keyboard shortcut?

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

[Libreoffice-bugs] [Bug 99112] Restore down (unmaximising) can not remember previous window size and position across sessions

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

Jeff Fortin Tam  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 154894] On app startup, Libreoffice displays / shows the window BEFORE setting its maximization state

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

Jeff Fortin Tam  changed:

   What|Removed |Added

 Blocks||119901
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=99
   ||112

--- Comment #2 from Jeff Fortin Tam  ---
Oh yeah, I forgot to mention I'm running the latest stable version from Fedora
38:

Version: 7.5.2.2 (X86_64)
Build ID: 50(Build:2)
CPU threads: 8; OS: Linux 6.2; UI render: default; VCL: gtk3
Calc: threaded

(...but it also happened in the flatpak version from flathub)

I would guess this might be an "easyHack" in terms of complexity, maybe it's
just the ordering of the operations.


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 119901] [META] Bugs related to maximized window

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

Jeff Fortin Tam  changed:

   What|Removed |Added

 Depends on||154894


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154894
[Bug 154894] On app startup, Libreoffice displays / shows the window BEFORE
setting its maximization state
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154895] New: Full menu only shows complete after clicking on the extending arrows

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

Bug ID: 154895
   Summary: Full menu only shows complete after clicking on the
extending arrows
   Product: LibreOffice
   Version: 7.5.2.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: avillal...@gmail.com

Description:
Icons don't show until I click on the arrows that open up the extra menu icons
that could not fit into the designated space; after I click there and then
close that pop up menu, then the icons appear on where they were supposed to
be. This happens in any Libre Office application.

I'm using Libre Office in Tab mode.

Steps to Reproduce:
1.Just open any Libre Office aplication in tab view
2.Click on the arrows (the ones that extend the menu icons) on the rjght
3.Click on the arrows again or outside the arrows and now yo see the icons

Actual Results:
The icons menu shows only after clicking on the extra menu arrows on the right
side

Expected Results:
Menu shows


Reproducible: Always


User Profile Reset: Yes

Additional Info:
Show the basic menu without having to click on the extra menu arrows

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

[Libreoffice-bugs] [Bug 154894] On app startup, Libreoffice displays / shows the window BEFORE setting its maximization state

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

--- Comment #1 from Jeff Fortin Tam  ---
Created attachment 186769
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186769=edit
demonstration video

This happens both on Intel and AMD open source graphics drivers; it might be
easier to trigger with older hardware, but even recent (less than 5 years old)
8th-generation Intel graphics with Wayland can trigger the issue.

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

[Libreoffice-bugs] [Bug 154686] "Apply border and shadow" option should be removed from AutoCaption dialog

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

--- Comment #2 from Eyal Rozenberg  ---
What is "apply border and shadow" _supposed_ to mean in the context of
auto-caption?

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

[Libreoffice-ux-advise] [Bug 154686] "Apply border and shadow" option should be removed from AutoCaption dialog

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

--- Comment #2 from Eyal Rozenberg  ---
What is "apply border and shadow" _supposed_ to mean in the context of
auto-caption?

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

[Libreoffice-bugs] [Bug 154894] New: On app startup, Libreoffice displays / shows the window BEFORE setting its maximization state

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

Bug ID: 154894
   Summary: On app startup, Libreoffice displays / shows the
window BEFORE setting its maximization state
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: nekoh...@gmail.com

Description:
LibreOffice apparently does not wait until window maximization has been set (if
needed) before painting the window's components and showing the window. See
attached demonstration video.

Steps to Reproduce:
1. Unmaximize any libreoffice app window (Writer or Calc, for example), and set
some size
2. Quit the app, launch it again
3. Maximize the app's window
4. Quit the app, launch it again

Actual Results:
The window gets maximized but only after being shown, resulting in a visual
glitch where you see the scrollbars in the middle of the window where the
"unmaximized, but remembered size" state would be, and then the scrollbars move
into their final position a fraction of a second after the window has been
correctly maximized.

Expected Results:
Execute the show() (or show_all() command, or whatever it might be called) on
the window only once the window width, height, AND maximization state have been
set, so that it can be painted in one shot without any jank.


Reproducible: Always


User Profile Reset: Yes

Additional Info:
It happens both on Wayland and Xorg/X11, and has been happening with all
LibreOffice versions I can remember.

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

[Libreoffice-bugs] [Bug 154745] Basic Dialogues: Runtime Appearance differs from Editor (spin buttons, dropdown list) on Linux

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

--- Comment #9 from Kai Struck  ---
Created attachment 186768
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186768=edit
Comparison_Dialogues_Editor_vs_Runtime_NativeWidgetLook_False

The Comparison shows that on Linux all Text- and Number-Fields that have spin
button or dropdown arrows have a too large height.

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

[Libreoffice-bugs] [Bug 114426] [META] Caption bugs and enhancements

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||154893


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154893
[Bug 154893] Generated number in a caption is rendered using CJK font for no
reason
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 43808] [META] Right-To-Left and Complex Text Layout language issues (RTL/CTL)

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||154893


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154893
[Bug 154893] Generated number in a caption is rendered using CJK font for no
reason
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154893] Generated number in a caption is rendered using CJK font for no reason

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks||43808, 114426


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=43808
[Bug 43808] [META] Right-To-Left and Complex Text Layout language issues
(RTL/CTL)
https://bugs.documentfoundation.org/show_bug.cgi?id=114426
[Bug 114426] [META] Caption bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154893] Generated number in a caption is rendered using CJK font for no reason

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

--- Comment #1 from Eyal Rozenberg  ---
Created attachment 186767
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186767=edit
Document with image and caption

This document has an image and a caption (also a border around them, but that
doesn't matter). It was used to generate the screenshots.

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

[Libreoffice-bugs] [Bug 154893] New: Generated number in a caption is rendered using CJK font for no reason

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

Bug ID: 154893
   Summary: Generated number in a caption is rendered using CJK
font for no reason
   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: eyalr...@gmx.com

Created attachment 186766
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186766=edit
Document with image and caption inserted, RTL and LTR caption paragraph
directions

Reproduction instructions:

1. Create a new Writer document (where my template has default page style and
paragraph style be RTL)
2. Insert an image
3. Right-click it
4. "Insert Caption..."
5. Write some caption text in English
6. Select Arabic numbering

I EXPECT to get an arabic-number 1, in the Western language font. _maybe_ in
the RTL/CTL language font because the caption paragraph is RTL, although that
would be a bit weird seeing how the category name is in English.

I GET an arabic-number 1 - but in none of the fonts I am supposedly using
(David CLM, Liberation Serif, CJK Noto Serif JP). It's kind of an ornamental
twisted font, not something you'd use for body text.

If I change the caption paragraph's direction to LTR, the number is rendered in
a decent font.

See attached screenshots.



Version info:

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: b5c3a7502f7ff6ccf0f829c1f3a2ba50b8584c41
CPU threads: 4; OS: Linux 6.1; UI render: default; VCL: gtk3
Locale: he-IL (en_IL); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 154745] Basic Dialogues: Runtime Appearance differs from Editor (spin buttons, dropdown list) on Linux

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

--- Comment #8 from Kai Struck  ---
Thank you!

Indeed I can get better results by using this switch for Linux:

if getGUIType>1 then oPicDlg.getPeer().setProperty( "NativeWidgetLook", False ) 

This helps a lot and makes the Dialogues appear almost like in the Editor.

Now refine the problem to this:
Too large height of Number- and Textfields with spin buttons or arrows.
(Number- and Textfields without spin buttons or arrows are correct.)

This is the case with or without NativeWidgetLook on all Linux/Libreoffice
combinations I tried.

The PDF shows a comparison.

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

[Libreoffice-bugs] [Bug 154889] LibreOffice text document. Ordered list items starting with item 10. have excessive indent.

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

Justin L  changed:

   What|Removed |Added

 CC||jl...@mail.com

--- Comment #3 from Justin L  ---
I don't believe you would get your "expected results" in MS Word either.
Solutions would be:
-reduce font size. (I'm guessing you are using higher than 12pt)
-increase the tab spacing in the list settings
-change the numbering to be right-aligned instead of left aligned.

I don't expect any of the changes in 7.6 to have any effect on your example.

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

[Libreoffice-commits] core.git: Branch 'libreoffice-7-5' - svx/source

2023-04-18 Thread Caolán McNamara (via logerrit)
 svx/source/sidebar/line/LinePropertyPanelBase.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 203e4b8f735ae19c9b7db3f67097b55e1e7f2771
Author: Caolán McNamara 
AuthorDate: Tue Apr 18 11:16:45 2023 +0100
Commit: Adolfo Jayme Barrientos 
CommitDate: Tue Apr 18 22:59:11 2023 +0200

Resolves: tdf#154870 label grayed out when it should not be

Change-Id: I1d84434622f09e6e91bea550f5dc0321cb7d89ef
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150556
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/svx/source/sidebar/line/LinePropertyPanelBase.cxx 
b/svx/source/sidebar/line/LinePropertyPanelBase.cxx
index 4edf0d5c5ef9..67e8faae168b 100644
--- a/svx/source/sidebar/line/LinePropertyPanelBase.cxx
+++ b/svx/source/sidebar/line/LinePropertyPanelBase.cxx
@@ -268,7 +268,7 @@ void LinePropertyPanelBase::updateLineCap(bool bDisabled, 
bool bSetOrDefault,
 else
 {
 mxLBCapStyle->set_sensitive(true);
-mxLBCapStyle->set_sensitive(true);
+mxFTCapStyle->set_sensitive(true);
 }
 
 if(bSetOrDefault)


[Libreoffice-bugs] [Bug 154773] Symbols dialog in Math does not respect dark mode

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

--- Comment #5 from Commit Notification 
 ---
Rafael Lima committed a patch related to this issue.
It has been pushed to "libreoffice-7-5":

https://git.libreoffice.org/core/commit/69dfde2d2e42a21444e1a4b18f0a4a1929ac330d

tdf#154773 Fix Symbols dialog in dark mode

It will be available in 7.5.4.

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

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

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

[Libreoffice-bugs] [Bug 154773] Symbols dialog in Math does not respect dark mode

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:7.6.0|target:7.6.0 target:7.5.4

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

[Libreoffice-commits] core.git: Branch 'libreoffice-7-5' - starmath/source

2023-04-18 Thread Rafael Lima (via logerrit)
 starmath/source/dialog.cxx |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 69dfde2d2e42a21444e1a4b18f0a4a1929ac330d
Author: Rafael Lima 
AuthorDate: Wed Apr 12 16:14:10 2023 +0200
Commit: Adolfo Jayme Barrientos 
CommitDate: Tue Apr 18 22:58:06 2023 +0200

tdf#154773 Fix Symbols dialog in dark mode

Change-Id: I92029f1d19c7545a4122b125ae69ab5964e562d2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150209
Tested-by: Jenkins
Reviewed-by: Heiko Tietze 
(cherry picked from commit 2c01d4448a8059b5f335d07347b9e85a0d0031d8)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150564
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/starmath/source/dialog.cxx b/starmath/source/dialog.cxx
index e7450727ad61..969466d6f06d 100644
--- a/starmath/source/dialog.cxx
+++ b/starmath/source/dialog.cxx
@@ -61,8 +61,8 @@ void lclGetSettingColors(Color& rBackgroundColor, Color& 
rTextColor)
 }
 else
 {
-rBackgroundColor = COL_WHITE;
-rTextColor = COL_BLACK;
+rBackgroundColor = rStyleSettings.GetFaceColor();
+rTextColor = rStyleSettings.GetLabelTextColor();
 }
 }
 


[Libreoffice-bugs] [Bug 154889] LibreOffice text document. Ordered list items starting with item 10. have excessive indent.

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

Mike Kaganski  changed:

   What|Removed |Added

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

--- Comment #2 from Mike Kaganski  ---


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

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

[Libreoffice-bugs] [Bug 154891] Update removes jumplist from taskbar

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

Mike Kaganski  changed:

   What|Removed |Added

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

--- Comment #1 from Mike Kaganski  ---


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

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

[Libreoffice-bugs] [Bug 154892] Square brackets do not scale nicely on tall formulas

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

Rafael Lima  changed:

   What|Removed |Added

Summary|Square brackets do not  |Square brackets do not
   |scale nice on tall formulas |scale nicely on tall
   ||formulas

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

[Libreoffice-bugs] [Bug 154892] Square brackets do not scale nice on tall formulas

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

--- Comment #1 from Rafael Lima  ---
Created attachment 186765
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186765=edit
ODP file used in the screenshot

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

[Libreoffice-bugs] [Bug 154892] New: Square brackets do not scale nice on tall formulas

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

Bug ID: 154892
   Summary: Square brackets do not scale nice on tall formulas
   Product: LibreOffice
   Version: 7.6.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Formula Editor
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rafael.palma.l...@gmail.com

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

When a square bracket is used on a "tall" formula, for instance a division of
two sum operations, the square bracket does not scale nicely.

This screenshot compares the equation that I'm trying to replicate with the
result in LO Math. It highlights where the problem is.

System info

Version: 7.5.2.2 (X86_64) / LibreOffice Community
Build ID: 50(Build:2)
CPU threads: 12; OS: Linux 5.19; UI render: default; VCL: kf5 (cairo+xcb)
Locale: pt-BR (pt_BR.UTF-8); UI: en-US
Ubuntu package version: 4:7.5.2~rc2-0ubuntu0.22.10.1~lo1
Calc: threaded

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

[Libreoffice-bugs] [Bug 154890] New: Enhancement:Change labels in the Curves and Polygons toolbar

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

Bug ID: 154890
   Summary: Enhancement:Change labels in the Curves and Polygons
toolbar
   Product: LibreOffice
   Version: 7.4.6.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: dmatsch...@quietriding.com

The unfilled Polygon tool in the Curves and Polygons toolbar does not close the
shape when finished. The Status Bar calls this shapes a Polyline. Therefore, I
suggest the tool label be changed from Polygon to Polyline.

Similarly, the unfilled Polygon (45 degree) tool should probably be relabeled
the  Polyline (45 degree) tool.

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

[Libreoffice-bugs] [Bug 152711] Make Writer table styles _proper_ styles

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

Eyal Rozenberg  changed:

   What|Removed |Added

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

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

  1   2   3   4   >