[Libreoffice-bugs] [Bug 154999] New: Icon auf der Taskleiste fehlt / Icon on the taskbar is missing

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

Bug ID: 154999
   Summary: Icon auf der Taskleiste fehlt / Icon on the taskbar is
missing
   Product: LibreOffice
   Version: 7.5.2.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: p.dre...@jost-technik.de

Created attachment 186903
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186903=edit
Icon von Calc wird nicht Taskleiste angezeigt

Hallo.

Das Calc-Symbol wird nicht auf der Taskleiste angezeigt.
Es erscheint nur undefiniertes Windows Icon Symbol.

- ENGLISH ---
Hello.

The Calc icon does not appear on the taskbar.
It appears only undefined Windows icon symbol.

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

[Libreoffice-bugs] [Bug 154876] FORMCONTROLS: Radio button reference value (on) not passed exported to PDF

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

Steve  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

--- Comment #7 from Steve  ---
I created a new document in Write 7.1.8.1 with 2 radio buttons in a group,
reference values on 1 & 5, off 0.

I exported a pdf.

I opened the same source document in Write 7.5.2.2 and exported another pdf.

In Acrobat, same results: 7.1.8.1 version has correct values but 7.5.2.2 has
zeros.

I used pdftk dump_data_fields on both pdfs and did spot a difference.

7.1.8.1 output:

FieldStateOption: 1
FieldStateOption: 5
FieldStateOption: Off

7.5.2.2 output:

FieldStateOption: 0
FieldStateOption: 1
FieldStateOption: 5

I have attached all 3 files.

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

[Libreoffice-bugs] [Bug 154876] FORMCONTROLS: Radio button reference value (on) not passed exported to PDF

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

--- Comment #6 from Steve  ---
Created attachment 186902
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186902=edit
PDF exported from Writer 7.5.2.2

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

[Libreoffice-bugs] [Bug 154876] FORMCONTROLS: Radio button reference value (on) not passed exported to PDF

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

--- Comment #5 from Steve  ---
Created attachment 186901
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186901=edit
PDF exported from Write 7.1.8.1

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

[Libreoffice-bugs] [Bug 154876] FORMCONTROLS: Radio button reference value (on) not passed exported to PDF

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

--- Comment #4 from Steve  ---
Created attachment 186900
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186900=edit
Source document created with Writer 7.1.8.1 on Win10

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

[Libreoffice-commits] core.git: include/oox oox/source

2023-04-24 Thread Tomaž Vajngerl (via logerrit)
 include/oox/export/drawingml.hxx |   40 +++
 oox/source/export/drawingml.cxx  |   34 -
 2 files changed, 53 insertions(+), 21 deletions(-)

New commits:
commit 33c2443134cfd2110258d5424645ace9e1db127f
Author: Tomaž Vajngerl 
AuthorDate: Tue Apr 11 07:52:38 2023 +0900
Commit: Tomaž Vajngerl 
CommitDate: Tue Apr 25 06:58:07 2023 +0200

oox: extract image / graphic export into GraphicExport class

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

diff --git a/include/oox/export/drawingml.hxx b/include/oox/export/drawingml.hxx
index 8fb8d6ba2e52..82deea172ef7 100644
--- a/include/oox/export/drawingml.hxx
+++ b/include/oox/export/drawingml.hxx
@@ -139,6 +139,30 @@ protected:
 virtual ~DMLTextExport() {}
 };
 
+constexpr const char* getComponentDir(DocumentType eDocumentType)
+{
+switch (eDocumentType)
+{
+case DOCUMENT_DOCX: return "word";
+case DOCUMENT_PPTX: return "ppt";
+case DOCUMENT_XLSX: return "xl";
+}
+
+return "";
+}
+
+constexpr const char* getRelationCompPrefix(DocumentType eDocumentType)
+{
+switch (eDocumentType)
+{
+case DOCUMENT_DOCX: return "";
+case DOCUMENT_PPTX:
+case DOCUMENT_XLSX: return "../";
+}
+
+return "";
+}
+
 class OOX_DLLPUBLIC GraphicExportCache
 {
 private:
@@ -226,6 +250,22 @@ public:
 }
 };
 
+class GraphicExport
+{
+sax_fastparser::FSHelperPtr mpFS;
+oox::core::XmlFilterBase* mpFilterBase;
+DocumentType meDocumentType;
+
+public:
+GraphicExport(sax_fastparser::FSHelperPtr pFS, ::oox::core::XmlFilterBase* 
pFilterBase, DocumentType eDocumentType)
+: mpFS(pFS)
+, mpFilterBase(pFilterBase)
+, meDocumentType(eDocumentType)
+{}
+
+OUString write(const Graphic& rGraphic, bool bRelPathToMedia);
+};
+
 class OOX_DLLPUBLIC DrawingML
 {
 
diff --git a/oox/source/export/drawingml.cxx b/oox/source/export/drawingml.cxx
index 773aa6c4ae0c..97c5210d95f6 100644
--- a/oox/source/export/drawingml.cxx
+++ b/oox/source/export/drawingml.cxx
@@ -1467,29 +1467,15 @@ void DrawingML::WriteOutline( const 
Reference& rXPropSet, Referenc
 
 const char* DrawingML::GetComponentDir() const
 {
-switch ( meDocumentType )
-{
-case DOCUMENT_DOCX: return "word";
-case DOCUMENT_PPTX: return "ppt";
-case DOCUMENT_XLSX: return "xl";
-}
-
-return "unknown";
+return getComponentDir(meDocumentType);
 }
 
 const char* DrawingML::GetRelationCompPrefix() const
 {
-switch ( meDocumentType )
-{
-case DOCUMENT_DOCX: return "";
-case DOCUMENT_PPTX:
-case DOCUMENT_XLSX: return "../";
-}
-
-return "unknown";
+return getRelationCompPrefix(meDocumentType);
 }
 
-OUString DrawingML::WriteImage( const Graphic& rGraphic , bool bRelPathToMedia 
)
+OUString GraphicExport::write(const Graphic& rGraphic , bool bRelPathToMedia)
 {
 GfxLink aLink = rGraphic.GetGfxLink ();
 BitmapChecksum aChecksum = rGraphic.GetChecksum();
@@ -1586,9 +1572,9 @@ OUString DrawingML::WriteImage( const Graphic& rGraphic , 
bool bRelPathToMedia )
 }
 
 sal_Int32 nImageCount = rGraphicExportCache.nextImageCount();
-Reference xOutStream = mpFB->openFragmentStream(
+Reference xOutStream = mpFilterBase->openFragmentStream(
 OUStringBuffer()
-.appendAscii(GetComponentDir())
+.appendAscii(getComponentDir(meDocumentType))
 .append("/media/image" + OUString::number(nImageCount))
 .appendAscii(pExtension)
 .makeStringAndClear(),
@@ -1601,7 +1587,7 @@ OUString DrawingML::WriteImage( const Graphic& rGraphic , 
bool bRelPathToMedia )
 if (bRelPathToMedia)
 sRelationCompPrefix = "../";
 else
-sRelationCompPrefix = GetRelationCompPrefix();
+sRelationCompPrefix = getRelationCompPrefix(meDocumentType);
 sPath = OUStringBuffer()
 .appendAscii(sRelationCompPrefix.getStr())
 .appendAscii(sRelPathToMedia.getStr())
@@ -1612,13 +1598,19 @@ OUString DrawingML::WriteImage( const Graphic& rGraphic 
, bool bRelPathToMedia )
 rGraphicExportCache.addExportGraphics(aChecksum, sPath);
 }
 
-sRelId = mpFB->addRelation( mpFS->getOutputStream(),
+sRelId = mpFilterBase->addRelation( mpFS->getOutputStream(),
 oox::getRelationship(Relationship::IMAGE),
 sPath );
 
 return sRelId;
 }
 
+OUString DrawingML::WriteImage( const Graphic& rGraphic , bool bRelPathToMedia 
)
+{
+GraphicExport exporter(mpFS, mpFB, meDocumentType);
+return exporter.write(rGraphic, bRelPathToMedia);
+}
+
 void DrawingML::WriteMediaNonVisualProperties(const 

[Libreoffice-bugs] [Bug 154998] CALC: print selected cells

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

--- Comment #1 from Gianfranco L'Abbate  ---
Created attachment 186899
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186899=edit
image of selected cells and the preview of print

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

[Libreoffice-bugs] [Bug 154998] New: CALC: print selected cells

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

Bug ID: 154998
   Summary: CALC: print selected cells
   Product: LibreOffice
   Version: 7.5.1.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jeawithl...@tin.it

Description:
A strange bug with one page of my spreadsheet, I selected a range of cells and
try to print it, but in the preview appear the first cell on the firs columns
ad the same are printed. 

Steps to Reproduce:
1.Select a range from first row and first colum to any row and any column
2. Select print
3. Select print cell selected and the bug appeared

Actual Results:
a print of row 0, column 0

Expected Results:
a print of the range of cells selected


Reproducible: Always


User Profile Reset: No

Additional Info:
This bug appeared only on the firt sheet of my multiple sheets

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

[Libreoffice-bugs] [Bug 113687] Wrong cell attributes assumed

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

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g
 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #15 from BogdanB  ---
This is in the documentation:

Working with columns and rows
Inserting columns and rows
When you insert columns or rows, the cells take the formatting of the
corresponding cells in the column to the left or the row above.

https://books.libreoffice.org/en/CG75/CG7501-Introduction.html

So, I will close this bug as works for me.

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

[Libreoffice-bugs] [Bug 107332] [META] Calc cell and page styles bugs and enhancements

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

BogdanB  changed:

   What|Removed |Added

 Depends on||119455


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=119455
[Bug 119455] can't change cellstyles properties (soft format) if a sheet is
protected
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 119455] can't change cellstyles properties (soft format) if a sheet is protected

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

BogdanB  changed:

   What|Removed |Added

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

--- Comment #6 from BogdanB  ---
In 7.5 no delete or modify of Good Style is allowed. Modifiy option is active,
Delete option inactive.

Version: 7.5.2.1 (X86_64) / LibreOffice Community
Build ID: e8bf3b441b8370f8440b0339fd9490765a8d57ca
CPU threads: 16; 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=107332
[Bug 107332] [META] Calc cell and page styles bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146315] [META] Show/Hide Whitespace bugs and enhancements

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

BogdanB  changed:

   What|Removed |Added

 Depends on||149486


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=149486
[Bug 149486] When you turn off the "Show Whitespace" condition you can see on
the vertical ruler like there is the margin there.
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 108629] [META] Ruler bugs and enhancements

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

BogdanB  changed:

   What|Removed |Added

 Depends on||149486


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=149486
[Bug 149486] When you turn off the "Show Whitespace" condition you can see on
the vertical ruler like there is the margin there.
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 149486] When you turn off the "Show Whitespace" condition you can see on the vertical ruler like there is the margin there.

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

BogdanB  changed:

   What|Removed |Added

 Blocks||108629, 146315
 CC||buzea.bog...@libreoffice.or
   ||g

--- Comment #2 from BogdanB  ---
Also in
Version: 7.5.2.1 (X86_64) / LibreOffice Community
Build ID: e8bf3b441b8370f8440b0339fd9490765a8d57ca
CPU threads: 16; 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=108629
[Bug 108629] [META] Ruler bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=146315
[Bug 146315] [META] Show/Hide Whitespace bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 152601] Changes to Shape Text is Sometimes not Saved

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

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=122886
[Bug 122886] [META] Bugs with textboxes in shapes
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 122886] [META] Bugs with textboxes in shapes

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

BogdanB  changed:

   What|Removed |Added

 Depends on||152601


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=152601
[Bug 152601] Changes to Shape Text is Sometimes not Saved
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-commits] core.git: Branch 'libreoffice-7-5' - icon-themes/karasa_jaga icon-themes/karasa_jaga_svg icon-themes/sukapura icon-themes/sukapura_dark icon-themes/sukapura_dark_svg icon-themes/

2023-04-24 Thread Rizal Muttaqin (via logerrit)
 icon-themes/karasa_jaga/starmath/res/dist11.png|binary
 icon-themes/karasa_jaga/starmath/res/dist21.png|binary
 icon-themes/karasa_jaga/starmath/res/dist22.png|binary
 icon-themes/karasa_jaga/starmath/res/dist61.png|binary
 icon-themes/karasa_jaga/starmath/res/dist62.png|binary
 icon-themes/karasa_jaga_svg/starmath/res/dist11.svg|2 +-
 icon-themes/karasa_jaga_svg/starmath/res/dist21.svg|2 +-
 icon-themes/karasa_jaga_svg/starmath/res/dist22.svg|2 +-
 icon-themes/karasa_jaga_svg/starmath/res/dist61.svg|2 +-
 icon-themes/karasa_jaga_svg/starmath/res/dist62.svg|2 +-
 icon-themes/sukapura/starmath/res/dist101.png  |binary
 icon-themes/sukapura/starmath/res/dist102.png  |binary
 icon-themes/sukapura/starmath/res/dist103.png  |binary
 icon-themes/sukapura/starmath/res/dist104.png  |binary
 icon-themes/sukapura/starmath/res/dist11.png   |binary
 icon-themes/sukapura/starmath/res/dist12.png   |binary
 icon-themes/sukapura/starmath/res/dist13.png   |binary
 icon-themes/sukapura/starmath/res/dist21.png   |binary
 icon-themes/sukapura/starmath/res/dist22.png   |binary
 icon-themes/sukapura/starmath/res/dist31.png   |binary
 icon-themes/sukapura/starmath/res/dist32.png   |binary
 icon-themes/sukapura/starmath/res/dist41.png   |binary
 icon-themes/sukapura/starmath/res/dist42.png   |binary
 icon-themes/sukapura/starmath/res/dist51.png   |binary
 icon-themes/sukapura/starmath/res/dist52.png   |binary
 icon-themes/sukapura/starmath/res/dist61.png   |binary
 icon-themes/sukapura/starmath/res/dist62.png   |binary
 icon-themes/sukapura/starmath/res/dist71.png   |binary
 icon-themes/sukapura/starmath/res/dist72.png   |binary
 icon-themes/sukapura/starmath/res/dist81.png   |binary
 icon-themes/sukapura/starmath/res/dist82.png   |binary
 icon-themes/sukapura/starmath/res/dist91.png   |binary
 icon-themes/sukapura/starmath/res/dist92.png   |binary
 icon-themes/sukapura_dark/starmath/res/dist101.png |binary
 icon-themes/sukapura_dark/starmath/res/dist102.png |binary
 icon-themes/sukapura_dark/starmath/res/dist103.png |binary
 icon-themes/sukapura_dark/starmath/res/dist104.png |binary
 icon-themes/sukapura_dark/starmath/res/dist11.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist12.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist13.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist21.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist22.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist31.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist32.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist41.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist42.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist51.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist52.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist61.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist62.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist71.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist72.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist81.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist82.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist91.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist92.png  |binary
 icon-themes/sukapura_dark_svg/starmath/res/dist101.svg |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist102.svg |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist103.svg |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist104.svg |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist11.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist12.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist13.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist21.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist22.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist31.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist32.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist41.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist42.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist51.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist52.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist61.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist62.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist71.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist72.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist81.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist82.svg  |1 +
 

[Libreoffice-bugs] [Bug 141877] Character styles lead to "tag soup"

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

BogdanB  changed:

   What|Removed |Added

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

--- Comment #3 from BogdanB  ---
Don't repro in 
Version: 7.5.2.1 (X86_64) / LibreOffice Community
Build ID: e8bf3b441b8370f8440b0339fd9490765a8d57ca
CPU threads: 16; OS: Linux 5.19; UI render: default; VCL: gtk3
Locale: ro-RO (ro_RO.UTF-8); UI: en-US
Calc: threaded

Please retest.

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

[Libreoffice-bugs] [Bug 133092] [META] Crash bugs

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

BogdanB  changed:

   What|Removed |Added

 Depends on||154991


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154991
[Bug 154991] CRASH: hiding column
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154991] CRASH: hiding column

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

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 133092] [META] Crash bugs

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

BogdanB  changed:

   What|Removed |Added

 Depends on||154992


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154992
[Bug 154992] CRASH: using return key on a floattable
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154992] CRASH: using return key on a floattable

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

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 154977] Changing the paragraph area of a style makes LO crash

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

--- Comment #7 from L Duperval  ---
I just realized that the problem appears when you click on something that isn't
None to something else. So for example, if I take the Text Body Style

>From the Area tab with None selected

Click Color: No crash
Click Gradient: crash



>From the Area tab with None selected

Click Gradient: No crash
Click Image: Crash


>From the Area tab with None selected

Click Image: No crash
Click Gradient: Crash

So there's something in the process of clicking away from a selected button
that's different with the None button that allows me to click on another button
with no problem. But clicking away from any other button makes things crash.

Hopefully that helps identify the problem.

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

[Libreoffice-bugs] [Bug 154747] write error when saving a xlsx file with gpg encryption (and unexpected result with ods+gpg)

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

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 154977] Changing the paragraph area of a style makes LO crash

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

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

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

[Libreoffice-bugs] [Bug 151765] After giving a printing-order Libre Office only prints a part of the document

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

--- Comment #2 from QA Administrators  ---
Dear frank.f.werner,

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 151772] Unable to open specific CSV file

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

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

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 140959] Editing conditional formatting does not work

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

--- Comment #13 from QA Administrators  ---
Dear Adam Kłobukowski,

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 89319] FILESAVE: redundant, slow file seeking during XLS export

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

--- Comment #13 from QA Administrators  ---
Dear László Németh,

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 117109] PAdES signatures are invisible

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

--- Comment #6 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 124446] There is no File - Save As menu

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

--- Comment #3 from QA Administrators  ---
Dear Andras Timar,

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 141877] Character styles lead to "tag soup"

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

--- Comment #2 from QA Administrators  ---
Dear Jim Turner,

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 108025] Kerning problem for glyph with applied OpenType Feature

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

--- Comment #13 from QA Administrators  ---
Dear gluk,

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 154997] New: File save

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

Bug ID: 154997
   Summary: File save
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: muddyland...@gmail.com

Will not save to MacOS desktop but will save everywhere else. Will not save
means Libre Office displays a spinning wheel and does not recover, the only
recourse being to force quit.

Libre Office 7.5.2.2, MacOS X13.0.1

User profile has been reset, permissions checked, Privacy and security/Full
disk access set correctly.

All other applications on this computer can save successfully to the desktop.

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

[Libreoffice-bugs] [Bug 124629] Filtering a pivot table group field may hide all group fields, including the filtered one

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

--- Comment #6 from m.a.riosv  ---
Still
Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 006b35d50024b1932d84380b5d2fec1f7066bccd
CPU threads: 16; OS: Windows 10.0 Build 22621; UI render: Skia/Raster; VCL: win
Locale: es-ES (es_ES); UI: en-US Calc: CL threaded Jumbo

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

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

2023-04-24 Thread Tomaž Vajngerl (via logerrit)
 oox/qa/unit/drawingml.cxx |   10 --
 1 file changed, 8 insertions(+), 2 deletions(-)

New commits:
commit 2f48aae12ae949056654cb172873f4025104af67
Author: Tomaž Vajngerl 
AuthorDate: Mon Apr 24 22:50:02 2023 +0900
Commit: Tomaž Vajngerl 
CommitDate: Tue Apr 25 04:22:59 2023 +0200

oox: Harden the testTdf142605_CurveSize Test with extra checks

Even if it is likely that we fail, it's important that we check
that we are checking thr correct shape and not some other shape.

As there is only one shape we could assume that in the case that
something goes wrong and we wouldn't be able to read the shape,
we would end up with 0 shapes, but in case of an empty page we
inject placeholder shapes into the page, so we end up comparing
the size of a placeholder shape. In this case the test assert
gets confusing as we obviously get wrong sizes, which suggest that
something is wrong with the shape and not that the shape we expect
to assert against is missing and we compare against a different
(placeholder) shape.

This adds more asserts, which make sure we actually have the
expected shape first and also preven crashes if something would
go wrong.

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

diff --git a/oox/qa/unit/drawingml.cxx b/oox/qa/unit/drawingml.cxx
index c468fd126584..09ab7121d8c8 100644
--- a/oox/qa/unit/drawingml.cxx
+++ b/oox/qa/unit/drawingml.cxx
@@ -327,10 +327,16 @@ CPPUNIT_TEST_FIXTURE(OoxDrawingmlTest, 
testTdf142605_CurveSize)
 saveAndReload("Impress Office Open XML");
 
 uno::Reference 
xDrawPagesSupplier(mxComponent, uno::UNO_QUERY);
-uno::Reference 
xDrawPage(xDrawPagesSupplier->getDrawPages()->getByIndex(0),
- uno::UNO_QUERY);
+auto xPage = xDrawPagesSupplier->getDrawPages()->getByIndex(0);
+uno::Reference xDrawPage(xPage, uno::UNO_QUERY);
 uno::Reference 
xShape(xDrawPage->getByIndex(0), uno::UNO_QUERY);
+CPPUNIT_ASSERT(xShape.is());
 uno::Reference xShapeProps(xShape, uno::UNO_QUERY);
+CPPUNIT_ASSERT(xShapeProps.is());
+uno::Reference xShapeNamed(xShape, uno::UNO_QUERY);
+CPPUNIT_ASSERT(xShapeNamed.is());
+CPPUNIT_ASSERT_EQUAL(OUString(u"Bézier curve 1"), xShapeNamed->getName());
+
 css::awt::Rectangle aBoundRect;
 xShapeProps->getPropertyValue("BoundRect") >>= aBoundRect;
 // Without fix, size was 6262 x 3509, and position was 10037|6790.


[Libreoffice-commits] core.git: icon-themes/karasa_jaga icon-themes/karasa_jaga_svg icon-themes/sukapura icon-themes/sukapura_dark icon-themes/sukapura_dark_svg icon-themes/sukapura_svg

2023-04-24 Thread Rizal Muttaqin (via logerrit)
 icon-themes/karasa_jaga/starmath/res/dist11.png|binary
 icon-themes/karasa_jaga/starmath/res/dist21.png|binary
 icon-themes/karasa_jaga/starmath/res/dist22.png|binary
 icon-themes/karasa_jaga/starmath/res/dist61.png|binary
 icon-themes/karasa_jaga/starmath/res/dist62.png|binary
 icon-themes/karasa_jaga_svg/starmath/res/dist11.svg|2 +-
 icon-themes/karasa_jaga_svg/starmath/res/dist21.svg|2 +-
 icon-themes/karasa_jaga_svg/starmath/res/dist22.svg|2 +-
 icon-themes/karasa_jaga_svg/starmath/res/dist61.svg|2 +-
 icon-themes/karasa_jaga_svg/starmath/res/dist62.svg|2 +-
 icon-themes/sukapura/starmath/res/dist101.png  |binary
 icon-themes/sukapura/starmath/res/dist102.png  |binary
 icon-themes/sukapura/starmath/res/dist103.png  |binary
 icon-themes/sukapura/starmath/res/dist104.png  |binary
 icon-themes/sukapura/starmath/res/dist11.png   |binary
 icon-themes/sukapura/starmath/res/dist12.png   |binary
 icon-themes/sukapura/starmath/res/dist13.png   |binary
 icon-themes/sukapura/starmath/res/dist21.png   |binary
 icon-themes/sukapura/starmath/res/dist22.png   |binary
 icon-themes/sukapura/starmath/res/dist31.png   |binary
 icon-themes/sukapura/starmath/res/dist32.png   |binary
 icon-themes/sukapura/starmath/res/dist41.png   |binary
 icon-themes/sukapura/starmath/res/dist42.png   |binary
 icon-themes/sukapura/starmath/res/dist51.png   |binary
 icon-themes/sukapura/starmath/res/dist52.png   |binary
 icon-themes/sukapura/starmath/res/dist61.png   |binary
 icon-themes/sukapura/starmath/res/dist62.png   |binary
 icon-themes/sukapura/starmath/res/dist71.png   |binary
 icon-themes/sukapura/starmath/res/dist72.png   |binary
 icon-themes/sukapura/starmath/res/dist81.png   |binary
 icon-themes/sukapura/starmath/res/dist82.png   |binary
 icon-themes/sukapura/starmath/res/dist91.png   |binary
 icon-themes/sukapura/starmath/res/dist92.png   |binary
 icon-themes/sukapura_dark/starmath/res/dist101.png |binary
 icon-themes/sukapura_dark/starmath/res/dist102.png |binary
 icon-themes/sukapura_dark/starmath/res/dist103.png |binary
 icon-themes/sukapura_dark/starmath/res/dist104.png |binary
 icon-themes/sukapura_dark/starmath/res/dist11.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist12.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist13.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist21.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist22.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist31.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist32.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist41.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist42.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist51.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist52.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist61.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist62.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist71.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist72.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist81.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist82.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist91.png  |binary
 icon-themes/sukapura_dark/starmath/res/dist92.png  |binary
 icon-themes/sukapura_dark_svg/starmath/res/dist101.svg |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist102.svg |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist103.svg |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist104.svg |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist11.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist12.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist13.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist21.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist22.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist31.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist32.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist41.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist42.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist51.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist52.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist61.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist62.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist71.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist72.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist81.svg  |1 +
 icon-themes/sukapura_dark_svg/starmath/res/dist82.svg  |1 +
 

[Libreoffice-bugs] [Bug 154591] I edit excel files and then save as 97-2003 Format and later when I open it backup it is completely empty. Frustrating to say the least

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

John  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 154591] I edit excel files and then save as 97-2003 Format and later when I open it backup it is completely empty. Frustrating to say the least

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

--- Comment #4 from John  ---
Created attachment 186898
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186898=edit
XLS file

Everything had been stable to the last 10 days or so but today, anytime I edit
and save this file, it is empty when I reopen it.  I thought I might have a
idea of what was going on as the file had been expanded to 20 sheets.  I
deleted 1 sheet to get it back to 19 but then it still happened today. 
Although the one in question today is back to 20.  I don't know how.  I haven't
been able to figure out the path of the user profile.  I did completely delete
libr office and reload so I thought the user profile would be new.  I'm out of
ideas and think my only option is to purchase Microsoft Office.

John Updike

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

[Libreoffice-bugs] [Bug 92219] Formula bar function wizard button should open the functions pane of sidebar

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

ady  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 92416] SIDEBAR: Functions pane improvements

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

ady  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 146623] Enhance Function Wizard Structure Tab for Better Formula Debugging

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

ady  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 122718] Sidebar Functions panel misses search like Function Wizard

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

ady  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 154994] Functions sidebar should be searchable

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

ady  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=12
   ||2718,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=14
   ||6623,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=92
   ||416,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=92
   ||219

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

[Libreoffice-bugs] [Bug 141944] Copy paste from Google Sheet work bad for merged cell

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

--- Comment #5 from ady  ---
I was able to repro when using old LO 7.1.

When testing with LO 7.4.6, the pasted cells are all OK (either merged or not),
with the difference being the height and width. By dragging the respective row
and column headers, I am able to set those attributes as needed.

The cells that were originally merged, end up also merged in LO 7.4.6. The
cells that were originally single/normal (not merged), end up also not merged
in LO 7.4.6.

IOW, width and height for cells need additional manual correction, but merged
(and not merged) cells are pasted with their adequate attribute.

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

[Libreoffice-bugs] [Bug 144547] Editing a multi-line formula, changing a cell reference on another than the first line with drag & drop it is repeated forever in the formula's first line

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

--- Comment #8 from ady  ---
(In reply to Eike Rathke from comment #7)
> Yes. Just enter
> 
> =B1
> +B2
> 
> as multi-line formula in A1, then F2 to edit and drag cell B2.

That example also shows that cell B2 is marked (so it can be dragged), but B1
is not.

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

[Libreoffice-bugs] [Bug 107139] [META] Breeze icons

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

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on||154774


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154774
[Bug 154774] Preview in Spacing dialog does not respect dark mode
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 131141] [META] Sukapura icons

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

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on||154774


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154774
[Bug 154774] Preview in Spacing dialog does not respect dark mode
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 125965] [META] Sifr icons

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

Rizal Muttaqin  changed:

   What|Removed |Added

 Depends on||154774


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154774
[Bug 154774] Preview in Spacing dialog does not respect dark mode
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154774] Preview in Spacing dialog does not respect dark mode

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

Rizal Muttaqin  changed:

   What|Removed |Added

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

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

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

2023-04-24 Thread Caolán McNamara (via logerrit)
 cui/source/dialogs/FontFeaturesDialog.cxx |   30 --
 cui/source/inc/FontFeaturesDialog.hxx |8 +++-
 cui/uiconfig/ui/fontfragment.ui   |1 +
 3 files changed, 32 insertions(+), 7 deletions(-)

New commits:
commit 23d303779440e8201ffc6fbcc08f9cffa5b585c9
Author: Caolán McNamara 
AuthorDate: Mon Apr 24 12:52:22 2023 +0100
Commit: خالد حسني 
CommitDate: Tue Apr 25 01:44:55 2023 +0200

Resolves: tdf#153441 use a TriStateEnabled helper

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

diff --git a/cui/source/dialogs/FontFeaturesDialog.cxx 
b/cui/source/dialogs/FontFeaturesDialog.cxx
index ab6063c9b6c3..b394495b3ae3 100644
--- a/cui/source/dialogs/FontFeaturesDialog.cxx
+++ b/cui/source/dialogs/FontFeaturesDialog.cxx
@@ -109,19 +109,21 @@ int 
FontFeaturesDialog::fillGrid(std::vector const& rFontFea
 {
 nIdx = nStylisticSets++;
 m_xStylisticSetsBox->set_visible(true);
-m_aFeatureItems.emplace_back(m_xStylisticSetsGrid.get());
+m_aFeatureItems.emplace_back(
+std::make_unique(m_xStylisticSetsGrid.get()));
 }
 else if (rFontFeature.isCharacterVariant())
 {
 nIdx = nCharacterVariants++;
 m_xCharacterVariantsBox->set_visible(true);
-m_aFeatureItems.emplace_back(m_xCharacterVariantsGrid.get());
+m_aFeatureItems.emplace_back(
+
std::make_unique(m_xCharacterVariantsGrid.get()));
 }
 else
 {
 nIdx = nOtherFeatures++;
 m_xContentBox->set_visible(true);
-m_aFeatureItems.emplace_back(m_xContentGrid.get());
+
m_aFeatureItems.emplace_back(std::make_unique(m_xContentGrid.get()));
 }
 
 int32_t nValue = 0;
@@ -130,7 +132,7 @@ int 
FontFeaturesDialog::fillGrid(std::vector const& rFontFea
 else
 nValue = aDefinition.getDefault();
 
-FontFeatureItem& aCurrentItem = m_aFeatureItems.back();
+FontFeatureItem& aCurrentItem = *m_aFeatureItems.back();
 aCurrentItem.m_aFeatureCode = nFontFeatureCode;
 aCurrentItem.m_nDefault = aDefinition.getDefault();
 
@@ -158,11 +160,19 @@ int 
FontFeaturesDialog::fillGrid(std::vector const& rFontFea
 else
 {
 if (nValue < 0)
+{
 aCurrentItem.m_xCheck->set_state(TRISTATE_INDET);
+aCurrentItem.m_aTriStateEnabled.bTriStateEnabled = true;
+aCurrentItem.m_aTriStateEnabled.eState = TRISTATE_INDET;
+}
 else
+{
 aCurrentItem.m_xCheck->set_state(nValue > 0 ? TRISTATE_TRUE : 
TRISTATE_FALSE);
+aCurrentItem.m_aTriStateEnabled.bTriStateEnabled = false;
+aCurrentItem.m_aTriStateEnabled.eState = 
aCurrentItem.m_xCheck->get_state();
+}
 aCurrentItem.m_xCheck->set_label(aDefinition.getDescription());
-aCurrentItem.m_xCheck->connect_toggled(aCheckBoxToggleHandler);
+aCurrentItem.m_aToggleHdl = aCheckBoxToggleHandler;
 aCurrentItem.m_xCheck->show();
 }
 
@@ -188,6 +198,13 @@ void FontFeaturesDialog::updateFontPreview()
 m_aPreviewWindow.SetFont(rPreviewFont, rPreviewFontCJK, rPreviewFontCTL);
 }
 
+IMPL_LINK(FontFeatureItem, CheckBoxToggledHdl, weld::Toggleable&, rToggle, 
void)
+{
+m_aTriStateEnabled.ButtonToggled(rToggle);
+m_aTriStateEnabled.bTriStateEnabled = false;
+m_aToggleHdl.Call(rToggle);
+}
+
 IMPL_LINK_NOARG(FontFeaturesDialog, CheckBoxToggledHdl, weld::Toggleable&, 
void)
 {
 updateFontPreview();
@@ -204,8 +221,9 @@ OUString FontFeaturesDialog::createFontNameWithFeatures()
 OUStringBuffer sNameSuffix;
 bool bFirst = true;
 
-for (const FontFeatureItem& rItem : m_aFeatureItems)
+for (const auto& rEntry : m_aFeatureItems)
 {
+const FontFeatureItem& rItem(*rEntry);
 if (rItem.m_xCheck->get_visible())
 {
 if (rItem.m_xCheck->get_state() != TRISTATE_INDET)
diff --git a/cui/source/inc/FontFeaturesDialog.hxx 
b/cui/source/inc/FontFeaturesDialog.hxx
index c4eb43b79e98..93ba0cb9f80d 100644
--- a/cui/source/inc/FontFeaturesDialog.hxx
+++ b/cui/source/inc/FontFeaturesDialog.hxx
@@ -29,21 +29,27 @@ struct FontFeatureItem
 , m_xCombo(m_xBuilder->weld_combo_box("combo"))
 , m_xCheck(m_xBuilder->weld_check_button("check"))
 {
+m_xCheck->connect_toggled(LINK(this, FontFeatureItem, 
CheckBoxToggledHdl));
 }
 
 sal_uInt32 m_aFeatureCode;
 sal_Int32 m_nDefault;
+weld::TriStateEnabled m_aTriStateEnabled;
+Link m_aToggleHdl;
 std::unique_ptr m_xBuilder;
 std::unique_ptr m_xContainer;
 std::unique_ptr m_xText;
 std::unique_ptr m_xCombo;
 std::unique_ptr m_xCheck;
+

[Libreoffice-bugs] [Bug 154774] Preview in Spacing dialog does not respect dark mode

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

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

https://git.libreoffice.org/core/commit/1e860ee6fe1a7b8cc141bda1106364d8ebb3f9b3

tdf#154774 Breeze & Sifr: Add image for spacing preview in Math

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-commits] core.git: Branch 'libreoffice-7-5' - icon-themes/breeze icon-themes/breeze_dark icon-themes/breeze_dark_svg icon-themes/breeze_svg icon-themes/sifr icon-themes/sifr_dark icon-the

2023-04-24 Thread Rizal Muttaqin (via logerrit)
 icon-themes/breeze/starmath/res/dist41.png  |binary
 icon-themes/breeze/starmath/res/dist52.png  |binary
 icon-themes/breeze_dark/starmath/res/dist41.png |binary
 icon-themes/breeze_dark/starmath/res/dist52.png |binary
 icon-themes/breeze_dark_svg/starmath/res/dist31.svg |2 +-
 icon-themes/breeze_dark_svg/starmath/res/dist41.svg |2 +-
 icon-themes/breeze_dark_svg/starmath/res/dist52.svg |2 +-
 icon-themes/breeze_svg/starmath/res/dist31.svg  |2 +-
 icon-themes/breeze_svg/starmath/res/dist41.svg  |2 +-
 icon-themes/breeze_svg/starmath/res/dist52.svg  |2 +-
 icon-themes/sifr/starmath/res/dist101.png   |binary
 icon-themes/sifr/starmath/res/dist102.png   |binary
 icon-themes/sifr/starmath/res/dist103.png   |binary
 icon-themes/sifr/starmath/res/dist104.png   |binary
 icon-themes/sifr/starmath/res/dist11.png|binary
 icon-themes/sifr/starmath/res/dist12.png|binary
 icon-themes/sifr/starmath/res/dist13.png|binary
 icon-themes/sifr/starmath/res/dist21.png|binary
 icon-themes/sifr/starmath/res/dist22.png|binary
 icon-themes/sifr/starmath/res/dist31.png|binary
 icon-themes/sifr/starmath/res/dist32.png|binary
 icon-themes/sifr/starmath/res/dist41.png|binary
 icon-themes/sifr/starmath/res/dist42.png|binary
 icon-themes/sifr/starmath/res/dist51.png|binary
 icon-themes/sifr/starmath/res/dist52.png|binary
 icon-themes/sifr/starmath/res/dist61.png|binary
 icon-themes/sifr/starmath/res/dist62.png|binary
 icon-themes/sifr/starmath/res/dist71.png|binary
 icon-themes/sifr/starmath/res/dist72.png|binary
 icon-themes/sifr/starmath/res/dist81.png|binary
 icon-themes/sifr/starmath/res/dist82.png|binary
 icon-themes/sifr/starmath/res/dist91.png|binary
 icon-themes/sifr/starmath/res/dist92.png|binary
 icon-themes/sifr_dark/starmath/res/dist101.png  |binary
 icon-themes/sifr_dark/starmath/res/dist102.png  |binary
 icon-themes/sifr_dark/starmath/res/dist103.png  |binary
 icon-themes/sifr_dark/starmath/res/dist104.png  |binary
 icon-themes/sifr_dark/starmath/res/dist11.png   |binary
 icon-themes/sifr_dark/starmath/res/dist12.png   |binary
 icon-themes/sifr_dark/starmath/res/dist13.png   |binary
 icon-themes/sifr_dark/starmath/res/dist21.png   |binary
 icon-themes/sifr_dark/starmath/res/dist22.png   |binary
 icon-themes/sifr_dark/starmath/res/dist31.png   |binary
 icon-themes/sifr_dark/starmath/res/dist32.png   |binary
 icon-themes/sifr_dark/starmath/res/dist41.png   |binary
 icon-themes/sifr_dark/starmath/res/dist42.png   |binary
 icon-themes/sifr_dark/starmath/res/dist51.png   |binary
 icon-themes/sifr_dark/starmath/res/dist52.png   |binary
 icon-themes/sifr_dark/starmath/res/dist61.png   |binary
 icon-themes/sifr_dark/starmath/res/dist62.png   |binary
 icon-themes/sifr_dark/starmath/res/dist71.png   |binary
 icon-themes/sifr_dark/starmath/res/dist72.png   |binary
 icon-themes/sifr_dark/starmath/res/dist81.png   |binary
 icon-themes/sifr_dark/starmath/res/dist82.png   |binary
 icon-themes/sifr_dark/starmath/res/dist91.png   |binary
 icon-themes/sifr_dark/starmath/res/dist92.png   |binary
 icon-themes/sifr_dark_svg/starmath/res/dist101.svg  |1 +
 icon-themes/sifr_dark_svg/starmath/res/dist102.svg  |1 +
 icon-themes/sifr_dark_svg/starmath/res/dist103.svg  |1 +
 icon-themes/sifr_dark_svg/starmath/res/dist104.svg  |1 +
 icon-themes/sifr_dark_svg/starmath/res/dist11.svg   |1 +
 icon-themes/sifr_dark_svg/starmath/res/dist12.svg   |1 +
 icon-themes/sifr_dark_svg/starmath/res/dist13.svg   |1 +
 icon-themes/sifr_dark_svg/starmath/res/dist21.svg   |1 +
 icon-themes/sifr_dark_svg/starmath/res/dist22.svg   |1 +
 icon-themes/sifr_dark_svg/starmath/res/dist31.svg   |1 +
 icon-themes/sifr_dark_svg/starmath/res/dist32.svg   |1 +
 icon-themes/sifr_dark_svg/starmath/res/dist41.svg   |1 +
 icon-themes/sifr_dark_svg/starmath/res/dist42.svg   |1 +
 icon-themes/sifr_dark_svg/starmath/res/dist51.svg   |1 +
 icon-themes/sifr_dark_svg/starmath/res/dist52.svg   |1 +
 icon-themes/sifr_dark_svg/starmath/res/dist61.svg   |1 +
 icon-themes/sifr_dark_svg/starmath/res/dist62.svg   |1 +
 icon-themes/sifr_dark_svg/starmath/res/dist71.svg   |1 +
 icon-themes/sifr_dark_svg/starmath/res/dist72.svg   |1 +
 icon-themes/sifr_dark_svg/starmath/res/dist81.svg   |1 +
 icon-themes/sifr_dark_svg/starmath/res/dist82.svg   |1 +
 icon-themes/sifr_dark_svg/starmath/res/dist91.svg   |1 +
 icon-themes/sifr_dark_svg/starmath/res/dist92.svg   |1 +
 icon-themes/sifr_svg/starmath/res/dist101.svg   |1 +
 icon-themes/sifr_svg/starmath/res/dist102.svg   |1 +
 

[Libreoffice-bugs] [Bug 145827] 'Standard' cell format turns to Date if it's the first cell in a column

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

--- Comment #3 from ady  ---
(In reply to LeroyG from comment #1)
> Format A1, A2 and B1 as Standard, Reload, and all three will revert to date.

FWIW, that description is not consistent. It might even vary depending on the
cells that end up as "selected" before saving. Use [CTRL]+[M], then re-saving
the same file, closing and re-opening might show only 2 of them as date. The
next cycle of clear formatting... the result might be different. I tried to
narrow down the exact variables or STR that influence the result, with no clear
conclusion, but with evident observations – those I just described here.

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

[Libreoffice-bugs] [Bug 154996] New: Help pages about dialogs should provide instructions for the Tabbed UI

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

Bug ID: 154996
   Summary: Help pages about dialogs should provide instructions
for the Tabbed UI
   Product: LibreOffice
   Version: 7.6.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Documentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rafael.palma.l...@gmail.com
CC: olivier.hal...@libreoffice.org

Currently, help pages for dialogs provide instructions on how to get to the
dialog using either (i) the menubar or (ii) the standard toolbar, or (iii) by
using accelerators when they exist. However, we still have no instructions on
how to get to these dialogs using the Tabbed UI.

For instance, here's the help page for the "Insert Table" dialog (this is just
as an example; this ticket refers to all help pages about dialogs).
https://help.libreoffice.org/7.5/en-US/text/swriter/01/0415.html

In this page we have a "To access this command... " section that contains:

(menubar instructions)
Choose Table - Insert Table

(accelerator instructions)
Ctrl+F12

(standard toolbar instructions)
Open Insert toolbar, click

However, we do not have any Tabbed UI instructions, which in this case should
be:
In the Insert tab, select Table - More Options

Given the popularity of the Tabbed UI and the emphasis it receives in the View
- User Interface dialog (it stays together with the Standard Toolbar option in
a separate section), I believe we should start improving the Help pages by
providing instructions also considering the Tabbed UI.

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

[Libreoffice-bugs] [Bug 96694] No visual cue if first rows/columns are hidden

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

--- Comment #13 from ady  ---
FWIW, in current versions of Calc, there is a toggle option in menu View >
"Hidden Row/Column Indicator". When toggled ON, hidden rows/columns are marked
with an additional line/border, and this mark also acts on frozen rows/columns.

Opening attachment 121564 from comment 2 and toggling the option ON, will show
the mark above row 5, hinting about the existence of hidden rows above it.

BTW, in attachment 121564 there doesn't seem to be frozen rows; just the first
4 rows are hidden. If there were (frozen rows), the mark would be shown for
hidden rows among/within those too.

I would suggest setting this report as WFM by now.

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

[Libreoffice-bugs] [Bug 135859] [META] Formula-related issues

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on||154927


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154927
[Bug 154927] Crash when a11y toolbar is visible and try to insert a math object
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 122755] [META] Formulae in Writer tables bugs and enhancements

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Depends on|154927  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=154927
[Bug 154927] Crash when a11y toolbar is visible and try to insert a math object
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154927] Crash when a11y toolbar is visible and try to insert a math object

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

   Severity|normal  |critical
 Blocks|122755  |135859


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=122755
[Bug 122755] [META] Formulae in Writer tables bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=135859
[Bug 135859] [META] Formula-related issues
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 154995] New: Selecting the entire table should not move the cursor to the last position

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

Bug ID: 154995
   Summary: Selecting the entire table should not move the cursor
to the last position
   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: rafael.palma.l...@gmail.com

In Writer, when you have a table and you want to select the entire table using
the arrow in the top left corner (when you place the mouse right outside the
table in the top-left corner), the cursor moves to the last cell in the table,
at the bottom-right end.

The expected behavior is that the cursor will remain in the first cell (in the
top-left corner).

Reasons for this change:
1) The current behavior is bad for tables that are longer than the current
view... so when you select the entire table, the view moves to the end of the
table, which is very disruptive.

2) Moreover, the current implementation is not consistent with the behavior we
have when you select an entire row or column. In these cases, the cursor stays
in the first row or column (which is the expected behavior). Therefore, when
you select the entire table, the cursor should be positioned in the first table
cell.

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

[Libreoffice-bugs] [Bug 153451] LO Input line switched from white to gray (as rest of the toolbar) making it harder to find

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

--- Comment #13 from ady  ---
(In reply to ady from comment #12)
> (In reply to Wojtek from comment #11)
> 
> > Which one should I use?
> 
> https://dev-builds.libreoffice.org/daily/master/current.html

Sorry, I pressed "save changes" too early. By now, just pick one of those that
match your OS and architecture.

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

[Libreoffice-bugs] [Bug 153451] LO Input line switched from white to gray (as rest of the toolbar) making it harder to find

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

--- Comment #12 from ady  ---
(In reply to Wojtek from comment #11)

> Which one should I use?

https://dev-builds.libreoffice.org/daily/master/current.html

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

[Libreoffice-bugs] [Bug 118299] Impress distorts embedded PNG dep. on X11 font DPI setting

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Status|REOPENED|NEW
 CC||stephane.guillou@libreoffic
   ||e.org

--- Comment #20 from Stéphane Guillou (stragu) 
 ---
setting back to "new" as "reopened" is only for bugs that were previously
marked as "fixed" by a commit.

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

[Libreoffice-bugs] [Bug 154953] [ feature request ] arrows in tabbed and grouped bar compact should slide or move icons

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

--- Comment #7 from ady  ---
(In reply to Heiko Tietze from comment #6)
> I think has no advantage to move the chevron around. 

I think the request/suggestion is not to move the chevron around, but the
toolbar itself. Forget about the chevron and think about the toolbar moving as
horizontal scrollbar, where icons move to the right or to the left, showing up
as the toolbar/scrollbar is moved sideways. This would be instead of piling up
the hidden icons within some menu on the right side.

Again, I'm not saying I support the idea for LO; just describing my
interpretation of the request. If we have a broken UI for 26 months (20 days
after its introduction) and no improvement for it for the foreseeable future,
while another UI has no customization available at all, then what we, simple
common users, could expect from yet another alternative UI?

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

[Libreoffice-bugs] [Bug 154994] Functions sidebar should be searchable

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

--- Comment #1 from Rafael Lima  ---
BTW the search would work similarly to how the Function Wizard works (Insert -
Function).

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

[Libreoffice-bugs] [Bug 154994] New: Functions sidebar should be searchable

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

Bug ID: 154994
   Summary: Functions sidebar should be searchable
   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: rafael.palma.l...@gmail.com

The Functions sidebar (Ctrl + Alt + 5) should be searchable, i.e. when it is
opened, a textbox should allow filtering the available functions.

This way, the following workflow would be available:
1) Ctrl + Alt + 5 to show the sidebar; the search textbox receives focus and is
ready to receive text
2) The user types the parts of the formula to search what they want (search
should consider the entire function name)
3) Arrow keys up/down can be used to select the formula
4) Enter will add the formula to the selected cell

Note that currently, as soon as the Functions sidebar is shown, it is neither
possible to (i) type letters to move to a function or (ii) use the up/down
arrow keys to navigate the list of available functions.

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

[Libreoffice-bugs] [Bug 112538] Cropped image created by MAC Impress cannot display correctly in the Windows Impress

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 154170] LibO on Linux makes image cropping dependent on Xorg font dpi settings.

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 Status|UNCONFIRMED |RESOLVED
   See Also|https://bugs.documentfounda |
   |tion.org/show_bug.cgi?id=11 |
   |2538|

--- Comment #4 from Stéphane Guillou (stragu) 
 ---
I found this is the exact same issue described by OP in bug 118299 (see
attachment 142990), so marking as duplicate.
Thank you!

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

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

[Libreoffice-bugs] [Bug 118299] Impress distorts embedded PNG dep. on X11 font DPI setting

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

Stéphane Guillou (stragu)  changed:

   What|Removed |Added

 CC||sergio.calleg...@gmail.com

--- Comment #19 from Stéphane Guillou (stragu) 
 ---
*** Bug 154170 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 154801] Add the locale data for Santali (sat-IN)

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

Eike Rathke  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

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

[Libreoffice-bugs] [Bug 154801] Add the locale data for Santali (sat-IN)

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

Eike Rathke  changed:

   What|Removed |Added

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

--- Comment #3 from Eike Rathke  ---


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

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

[Libreoffice-commits] core.git: 2 commits - include/docmodel include/oox oox/source sc/source sd/qa sd/source svx/source sw/source

2023-04-24 Thread Tomaž Vajngerl (via logerrit)
 include/docmodel/theme/FormatScheme.hxx  |  132 -
 include/docmodel/theme/Theme.hxx |   23 
 include/oox/export/ThemeExport.hxx   |4 
 include/oox/export/drawingml.hxx |   94 +++
 oox/source/export/ThemeExport.cxx|  757 ---
 oox/source/export/drawingml.cxx  |   90 +--
 sc/source/filter/excel/xestream.cxx  |7 
 sd/qa/filter/eppt/eppt.cxx   |   85 ++-
 sd/source/filter/eppt/epptooxml.hxx  |7 
 sd/source/filter/eppt/pptx-epptooxml.cxx |  324 -
 svx/source/svdraw/svdpage.cxx|4 
 sw/source/filter/ww8/docxexport.cxx  |7 
 12 files changed, 1028 insertions(+), 506 deletions(-)

New commits:
commit 0ee38e7e061f764b5e21487da090620ed93bb260
Author: Tomaž Vajngerl 
AuthorDate: Mon Apr 10 12:15:19 2023 +0900
Commit: Tomaž Vajngerl 
CommitDate: Mon Apr 24 23:50:05 2023 +0200

oox: combine graphic cache into GraphicExportCache class

We cache graphics to not export the same graphic multiple times
if this can be avoided. The cache was integrated into DrawingML
but we need access to it in different places, so this change
extracts it into its own class.

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

diff --git a/include/oox/export/drawingml.hxx b/include/oox/export/drawingml.hxx
index 946afbf5d57b..8fb8d6ba2e52 100644
--- a/include/oox/export/drawingml.hxx
+++ b/include/oox/export/drawingml.hxx
@@ -139,16 +139,99 @@ protected:
 virtual ~DMLTextExport() {}
 };
 
+class OOX_DLLPUBLIC GraphicExportCache
+{
+private:
+std::stack mnImageCounter;
+std::stack> maExportGraphics;
+std::stack mnWdpImageCounter;
+std::stack> maWdpCache;
+
+GraphicExportCache() = default;
+public:
+static GraphicExportCache& get();
+
+void push()
+{
+mnImageCounter.push(1);
+maExportGraphics.emplace();
+mnWdpImageCounter.push(1);
+maWdpCache.emplace();
+}
+
+void pop()
+{
+mnImageCounter.pop();
+maExportGraphics.pop();
+mnWdpImageCounter.pop();
+maWdpCache.pop();
+}
+
+bool hasExportGraphics()
+{
+return !maExportGraphics.empty();
+}
+
+void addExportGraphics(BitmapChecksum aChecksum, OUString const& sPath)
+{
+maExportGraphics.top()[aChecksum] = sPath;
+}
+
+OUString findExportGraphics(BitmapChecksum aChecksum)
+{
+OUString sPath;
+if (!hasExportGraphics())
+return sPath;
+
+auto aIterator = maExportGraphics.top().find(aChecksum);
+if (aIterator != maExportGraphics.top().end())
+sPath = aIterator->second;
+return sPath;
+}
+
+sal_Int32 nextImageCount()
+{
+sal_Int32 nCount = mnImageCounter.top();
+mnImageCounter.top()++;
+return nCount;
+}
+
+bool hasWdpCache()
+{
+return !maWdpCache.empty();
+}
+
+OUString findWdpID(OUString const& rFileId)
+{
+OUString aPath;
+if (!hasWdpCache())
+return aPath;
+auto aCachedItem = maWdpCache.top().find(rFileId);
+if (aCachedItem != maWdpCache.top().end())
+aPath = aCachedItem->second;
+return aPath;
+}
+
+void addToWdpCache(OUString const& rFileId, OUString const& rId)
+{
+if (hasWdpCache())
+maWdpCache.top()[rFileId] = rId;
+}
+
+sal_Int32 nextWdpImageCount()
+{
+sal_Int32 nCount = mnWdpImageCounter.top();
+mnWdpImageCounter.top()++;
+return nCount;
+}
+};
+
 class OOX_DLLPUBLIC DrawingML
 {
 
 private:
-static std::stack mnImageCounter;
-static std::stack mnWdpImageCounter;
-static std::stack> maWdpCache;
 static sal_Int32 mnDrawingMLCount;
 static sal_Int32 mnVmlCount;
-static std::stack> 
maExportGraphics;
 
 /// To specify where write eg. the images to (like 'ppt', or 'word' - 
according to the OPC).
 DocumentType meDocumentType;
@@ -371,9 +454,6 @@ public:
 
 static void ResetMlCounters();
 
-static void PushExportGraphics();
-static void PopExportGraphics();
-
 static sal_Int32 getNewDrawingUniqueId() { return ++mnDrawingMLCount; }
 static sal_Int32 getNewVMLUniqueId() { return ++mnVmlCount; }
 static sal_Int32 getNewChartUniqueId() { return ++mnChartCount; }
diff --git a/oox/source/export/drawingml.cxx b/oox/source/export/drawingml.cxx
index 75541b084e3b..773aa6c4ae0c 100644
--- a/oox/source/export/drawingml.cxx
+++ b/oox/source/export/drawingml.cxx
@@ -209,6 +209,12 @@ bool URLTransformer::isExternalURL(const OUString& rURL) 
const
 return bExternal;
 }
 
+GraphicExportCache& GraphicExportCache::get()
+{
+static GraphicExportCache staticGraphicExportCache;
+return staticGraphicExportCache;
+}
+
 static css::uno::Any 

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

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

Dieter  changed:

   What|Removed |Added

 Depends on||145565


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=145565
[Bug 145565] FORMS: PS changes to Default Paragraph Style after copy and paste
text box in a specific document
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 145565] FORMS: PS changes to Default Paragraph Style after copy and paste text box in a specific document

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

Dieter  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
 Blocks||107742
   Severity|enhancement |minor
Summary|(Enhancement) In Writer,|FORMS: PS changes to
   |make it easier to align |Default Paragraph Style
   |forms to text   |after copy and paste text
   ||box in a specific document

--- Comment #9 from Dieter  ---
(In reply to MarjaE from comment #8)
> It appears that pasting a form field to an empty line switches the line from
> "Text Body" to "Default Paragraph Style" which affects the spacing to the
> next line.

I confirm this with your document, but not with a document created on my own. I
suggest to rduce report to that problem

Steps:
1. open attachment 176136
2. Form -> Design Mode
3. Select and copy text box in first paragraph
4. Place cursor in third paragraph (PS is Text Body, that is inherited from
Default Paragraph Style)
5. Paste text box

Actual result:
PS changes to "Default Paragraph Style" (Therefore spacing below paragraph
changes from 0,25cm to 0 cm)

Expected result:
No change in PS

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 006b35d50024b1932d84380b5d2fec1f7066bccd
CPU threads: 4; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: en-US (de_DE); UI: en-GB
Calc: CL threaded

Marja, if you think this report doesn't cover your problem (in a first step)
feel free to open another report.


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 154983] Color Bar stuck in Sidebar and not using space efficiently

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

--- Comment #6 from V Stuart Foote  ---
The widget frame is a bit tricky to grab, but on Windows builds it can be
grabbed and undocked.

The color table Color Palette dialog can also be docked to left side, inboard
of the page sorter, or above or below it. The dialog will adjust width when
being docked.

Room to improve the "grab", and IIRC there are issues with some of the os/DE.

Otherwise this is a => WFM

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

[Libreoffice-bugs] [Bug 154926] Pictures with smoothed edges cropped in PDF-export

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

Roman Kuznetsov <79045_79...@mail.ru> changed:

   What|Removed |Added

 CC||79045_79...@mail.ru

--- Comment #4 from Roman Kuznetsov <79045_79...@mail.ru> ---
No repro in

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: 5cd9de202765e243e41416802f3e4486b8a96f16
CPU threads: 16; OS: Windows 10.0 Build 19045; UI render: Skia/Raster; VCL: win
Locale: ru-RU (ru_RU); UI: ru-RU
Calc: CL threaded

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

[Libreoffice-bugs] [Bug 154993] Unable to change some print settings or print in proper orientation

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

--- Comment #3 from venus...@protonmail.com  ---
Created attachment 186897
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186897=edit
Actual print preferences

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

[Libreoffice-bugs] [Bug 154993] Unable to change some print settings or print in proper orientation

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

--- Comment #2 from venus...@protonmail.com  ---
Created attachment 186896
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186896=edit
Print dialog box

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

[Libreoffice-bugs] [Bug 154993] Unable to change some print settings or print in proper orientation

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

--- Comment #1 from venus...@protonmail.com  ---
Created attachment 186895
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186895=edit
Page style setup within libreoffice writer

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

[Libreoffice-bugs] [Bug 154983] Color Bar stuck in Sidebar and not using space efficiently

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

--- Comment #5 from V Stuart Foote  ---
Created attachment 186894
  --> https://bugs.documentfoundation.org/attachment.cgi?id=186894=edit
screen capture while repositioning and docking the color bar Color Palette
dialog

the 'minnimumwidth' expert config value is set 'false' allowing SB to shrink
beyond minimum widget width control stop.

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

[Libreoffice-bugs] [Bug 154993] New: Unable to change some print settings or print in proper orientation

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

Bug ID: 154993
   Summary: Unable to change some print settings or print in
proper orientation
   Product: LibreOffice
   Version: 7.5.1.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Printing and PDF export
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: venus...@protonmail.com

Description:
Libreoffice has everything "scaled" to letter size and will not print the
proper orientation. There is no way to change this setting because as far as I
can tell Libreoffice has "hijacked" the print dialog. The only options
available in the print dialog are the general tab and the Libreoffice tab.
I have set up envelopes with different page styles.
Viewing the documents, they look to scale, but as soon as I send to print, the
docs are rescaled to letter size. I have tried user defined sizes. I have tried
predefined envelope sizes.
When sent to print, the document is resized to letter. I have tried landscape
orientation and portrait orientation, both print the same direction on a #9
envelope setting.
I have looked in my device settings and print scaling is turned off. I have
looked in Adobe, print scaling is set to off. Libreoffice continues to scale to
letter size.
Print is not within the set margins and font is double in size, only a portion
of the print is actually on the envelope.
When attempting a second or subsequent print the print dialog displays the
print preview on letter size even though the page layout is set to an envelope
size.
Depending on what envelope size is chosen, print orientation is always portrait
regardless if it is set to portrait or landscape.

Steps to Reproduce:
1.Send envelope to print
2.
3.

Actual Results:
Print is not within the set margins and font is double in size, only a portion
of the print is actually on the envelope.
When attempting a second or subsequent print the print dialog displays the
print preview on letter size even though the page layout is set to an envelope
size.
Depending on what envelope size is chosen, print orientation is always portrait
regardless if it is set to portrait or landscape.

Expected Results:
Envelope should print within set margins


Reproducible: Always


User Profile Reset: Yes

Additional Info:
Version: 7.5.1.2 (X86_64) / LibreOffice Community
Build ID: fcbaee479e84c6cd81291587d2ee68cba099e129
CPU threads: 4; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 154703] META Export DOCX flies with framePr instead of DrawingDML

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

--- Comment #21 from Justin L  ---
(In reply to Justin L from comment #16)
> Next idea: add framePr hint at InsertCaption dialog.
https://gerrit.libreoffice.org/c/core/+/150795

In that code review, Gabor commented:
This is related to bug 131302 (which has an idea how to solve it) and bug 96579
(which collects duplicates) and all the See also ones.
There were several other attempts to fix this over the years, but somehow all
were inadequate and reverted.
Also bug 121378 has some ideas how to improve this.

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

[Libreoffice-bugs] [Bug 128244] OD* files can't be opened if Zip64 was used in their creation

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

--- Comment #12 from Joshua  ---
That's funny. The files are supposed to be differential testing between
ICSharpCode.SharpZipLib in default streaming and force 32 bit streaming output.

As some others have pointed out they ended up being not totally valid files,
but the 32 bit version was always valid enough to open. The difference between
them was literally one boolean property changed whether to force 32 bit
generation or not. So I'd expect once fixed the files would behave identically.

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

[Libreoffice-bugs] [Bug 80430] [META] Documentation gap for new features

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

Bug 139027 Summary: Problems with Help information for Calc's INDEX() function
https://bugs.documentfoundation.org/show_bug.cgi?id=139027

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 154983] Color Bar stuck in Sidebar and not using space efficiently

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

--- Comment #7 from Don Matschull  ---
When I did Ctrl + Shift + F10, I finally found the Color Bar near the top of
the screen. I was reduced in size so only the C and the X for closing the Color
Bar were showing and both were gray and almost transparent. At least I will no
longer feel the need to go into Safe Mode.

When I drag the Color Bar to the right and a large gray outline appears to the
left of the Hide/Show divider, I expected the Color Bar to be placed there when
I released the mouse button. However, the Color Bar is placed to the right of
the Hide/Show divider and the X for closing it disappears. Similar behavior
happens when the Color Bar is dragged to the left of the Workspace.

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

[Libreoffice-bugs] [Bug 154977] Changing the paragraph area of a style makes LO crash

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

--- Comment #5 from L Duperval  ---
That's what I did for the factory settings. Sorry if it wasn't clear from my
explanation.

I'll have to see about retrying without a profile.

Is there a way to force the sending of a crash report when Writer crashes or
when I restart?

I found a workaround by editing the ODT file and removing the Area styles in
the styles.xml file but that's hardly a solution. :)

L

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

[Libreoffice-bugs] [Bug 104450] [META] DOCX (OOXML) file opening issues

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

Bug 94915 Summary: FILEOPEN: unable to open particular document apparently 
compressed with zip64 format - comment 8
https://bugs.documentfoundation.org/show_bug.cgi?id=94915

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

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

[Libreoffice-bugs] [Bug 128244] OD* files can't be opened if Zip64 was used in their creation

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

Justin L  changed:

   What|Removed |Added

 CC||attila.sz...@collabora.com

--- Comment #11 from Justin L  ---
I had expected this to be fixed in LO 7.6, where work was done to enable zip64
import and export. However, export64.ods still didn't open - crashed on "do you
want to repair this" prompt.

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

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

2023-04-24 Thread Bjoern Michaelsen (via logerrit)
 sw/inc/doc.hxx  |6 -
 sw/inc/frameformats.hxx |   14 
 sw/inc/frmfmt.hxx   |   52 +++-
 sw/inc/textboxhelper.hxx|7 +-
 sw/qa/core/attr/attr.cxx|4 -
 sw/qa/core/doc/doc.cxx  |   13 +---
 sw/qa/core/draw/draw.cxx|2 
 sw/qa/core/layout/flycnt.cxx|4 -
 sw/qa/core/txtnode/txtnode.cxx  |4 -
 sw/qa/core/undo/undo.cxx|2 
 sw/qa/core/view/view.cxx|6 -
 sw/qa/extras/htmlimport/htmlimport.cxx  |2 
 sw/qa/extras/ooxmlexport/ooxmlexport.cxx|4 -
 sw/qa/extras/ooxmlexport/ooxmlexport13.cxx  |2 
 sw/qa/extras/rtfexport/rtfexport4.cxx   |2 
 sw/qa/extras/uiwriter/uiwriter2.cxx |6 -
 sw/qa/extras/uiwriter/uiwriter5.cxx |6 -
 sw/qa/extras/uiwriter/uiwriter8.cxx |   12 +--
 sw/qa/extras/ww8export/ww8export.cxx|4 -
 sw/qa/filter/html/html.cxx  |8 +-
 sw/qa/filter/ww8/ww8.cxx|4 -
 sw/qa/uibase/docvw/docvw.cxx|4 -
 sw/qa/uibase/uno/uno.cxx|4 -
 sw/source/core/crsr/crstrvl.cxx |5 -
 sw/source/core/doc/CntntIdxStore.cxx|4 -
 sw/source/core/doc/DocumentContentOperationsManager.cxx |6 -
 sw/source/core/doc/DocumentLayoutManager.cxx|   11 +--
 sw/source/core/doc/dbgoutsw.cxx |   13 +---
 sw/source/core/doc/docbasic.cxx |   12 +--
 sw/source/core/doc/doccomp.cxx  |   10 +--
 sw/source/core/doc/docedt.cxx   |   30 -
 sw/source/core/doc/docfly.cxx   |   23 +--
 sw/source/core/doc/docfmt.cxx   |   11 +--
 sw/source/core/doc/doclay.cxx   |   11 +--
 sw/source/core/doc/docnew.cxx   |4 -
 sw/source/core/doc/docsort.cxx  |2 
 sw/source/core/doc/tblcpy.cxx   |2 
 sw/source/core/doc/textboxhelper.cxx|5 -
 sw/source/core/docnode/ndtbl.cxx|3 
 sw/source/core/docnode/node.cxx |   20 ++
 sw/source/core/draw/dcontact.cxx|9 +-
 sw/source/core/frmedt/fecopy.cxx|   12 +--
 sw/source/core/frmedt/fefly1.cxx|6 -
 sw/source/core/frmedt/tblsel.cxx|2 
 sw/source/core/inc/frmtool.hxx  |8 +-
 sw/source/core/layout/atrfrm.cxx|   29 ++--
 sw/source/core/layout/frmtool.cxx   |   18 ++---
 sw/source/core/layout/pagechg.cxx   |   29 
 sw/source/core/layout/tabfrm.cxx|6 -
 sw/source/core/layout/wsfrm.cxx |4 -
 sw/source/core/text/EnhancedPDFExportHelper.cxx |5 -
 sw/source/core/text/itratr.cxx  |6 -
 sw/source/core/undo/rolbck.cxx  |2 
 sw/source/core/undo/undel.cxx   |   24 ++-
 sw/source/core/undo/undobj.cxx  |4 -
 sw/source/core/undo/undobj1.cxx |8 +-
 sw/source/core/undo/undraw.cxx  |   28 
 sw/source/core/undo/untbl.cxx   |4 -
 sw/source/core/unocore/unocoll.cxx  |   10 ---
 sw/source/core/unocore/unoobj2.cxx  |9 --
 sw/source/core/view/viewsh.cxx  |9 --
 sw/source/filter/html/htmlforw.cxx  |   10 +--
 sw/source/filter/html/htmlgrin.cxx  |5 -
 sw/source/filter/html/swhtml.cxx|4 -
 sw/source/filter/ww8/wrtw8esh.cxx   |2 
 65 files changed, 279 insertions(+), 318 deletions(-)

New commits:
commit 09cdcb5f37bb4e42da7b28db6e757b9f2affed14
Author: Bjoern Michaelsen 
AuthorDate: Sat Apr 15 20:51:52 2023 +0200
Commit: Bjoern Michaelsen 
CommitDate: Mon Apr 24 21:59:04 2023 +0200

introduce sw::SpzFrameFormat ...

- ... as a base class of frame formats allowed into the
  spz frame format container
- with a private ctor and friends SwDrawFrameFormat and SwFlyFrameFormat
  so only these two classes derive from it
- with that, switch over the SpzFrameFormats to only ever allow these
  types into the 

[Libreoffice-bugs] [Bug 154992] CRASH: using return key on a floattable

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

Xisco Faulí  changed:

   What|Removed |Added

 CC||vmik...@collabora.com,
   ||xiscofa...@libreoffice.org
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
   Keywords||bibisected, bisected,
   ||regression

--- Comment #1 from Xisco Faulí  ---
Regression introduced by:

author  Miklos Vajna 2023-03-13 08:14:38 +0100
committer   Miklos Vajna 2023-03-13 08:05:22
+
commit  da2707a83f13cba98b22aba1ca6568dbbc4c5fd8 (patch)
tree1b921713136ea485cde849bf8a7c0ca68a25cc79
parent  1519ae101abf32187db983c8a08f7bf1899d5d22 (diff)
sw floattable: handle Word 2010 legacy mode in SwFlyFrame

Bisected with: bibisect-linux64-7.6

Adding Cc: to Miklos Vajna

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

[Libreoffice-bugs] [Bug 154977] Changing the paragraph area of a style makes LO crash

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

BogdanB  changed:

   What|Removed |Added

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

--- Comment #4 from BogdanB  ---
(In reply to L Duperval from comment #3)
> Did you reset you user profile for LO?
> 
> No.
> 
> Did you try it with Help → Restart in Safe mode?
> 
> Yes. I tried with no extensions and it crashes. I tried using the default
> factory settings option and it crashes also, although it takes more time to
> do so than in normal mode.
> 
> On restart, I don't get the option to send a crash report.
> 
> What is chosen in Tolls → LibreOffice → View → Skia?
> 
> Everything is chosen

You can try to reset your user profile:
Help - Restart in Safe Mode - Restart - Reset to factory settings - check both
options and click Apply and Restart.

Then, retest to see if you can reproduce the bug you reported.

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

[Libreoffice-bugs] [Bug 154992] New: CRASH: using return key on a floattable

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

Bug ID: 154992
   Summary: CRASH: using return key on a floattable
   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: xiscofa...@libreoffice.org

Steps to reproduce:
1. Open attachment 47102 from bug 37547
2. press the return key 10-20 times

-> Crash

reproduced in

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: a1388417b217430de456868c440817459697c4a8
CPU threads: 8; OS: Linux 5.10; UI render: default; VCL: gtk3
Locale: es-ES (es_ES.UTF-8); UI: en-US
Calc: threaded

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

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

2023-04-24 Thread Jim Raykowski (via logerrit)
 sd/source/ui/dlg/sdtreelb.cxx |   13 -
 sd/source/ui/inc/sdtreelb.hxx |4 
 2 files changed, 12 insertions(+), 5 deletions(-)

New commits:
commit eebd13c97ecef1e39aa054701a6e6618227d7ae0
Author: Jim Raykowski 
AuthorDate: Sat Apr 22 11:23:48 2023 -0800
Commit: Jim Raykowski 
CommitDate: Mon Apr 24 21:00:48 2023 +0200

tdf#145359 related: Fix SdNavigator dnd z ordering

Makes the object dnd z order follow the current behavior of bring
forward and send back actions. Object placement top to bottom in the
Navigator is wrt object z order back to front.

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

diff --git a/sd/source/ui/dlg/sdtreelb.cxx b/sd/source/ui/dlg/sdtreelb.cxx
index 87780bada9aa..efb027c2119c 100644
--- a/sd/source/ui/dlg/sdtreelb.cxx
+++ b/sd/source/ui/dlg/sdtreelb.cxx
@@ -55,6 +55,8 @@
 
 #include 
 
+#include 
+
 using namespace com::sun::star;
 
 bool SdPageObjsTLV::bIsInDrag = false;
@@ -413,6 +415,7 @@ bool SdPageObjsTLV::DoDrag()
 return true;
 }
 
+m_xDropTargetHelper->SetDrawView(pViewShell->GetDrawView());
 bIsInDrag = true;
 
 std::unique_ptr xEntry = m_xTreeView->make_iterator();
@@ -559,8 +562,8 @@ sal_Int8 SdPageObjsTLVDropTarget::ExecuteDrop( const 
ExecuteDropEvent& rEvt )
 m_rTreeView.iter_previous_sibling(*xTarget);
 m_rTreeView.set_cursor(*xTarget);
 
-if (m_rTreeView.iter_compare(*xSourceParent, *xTargetParent) == 0 && 
nIterCompare < 0)
-nTargetPos = m_rTreeView.get_iter_index_in_parent(*xTarget);
+// Remove and insert are required for moving objects in to and out of 
groups.
+// PutMarked... by itself would suffice if this wasn't allowed.
 
 // Remove the source object from source parent list and insert it in 
the target parent list.
 SdrObject* pSourceParentObject = 
weld::fromId(m_rTreeView.get_id(*xSourceParent));
@@ -585,14 +588,14 @@ sal_Int8 SdPageObjsTLVDropTarget::ExecuteDrop( const 
ExecuteDropEvent& rEvt )
 if (pTargetParentObject == reinterpret_cast(1))
 {
 pObjectList->NbcInsertObject(rSourceObject.get());
-pObjectList->SetObjectNavigationPosition(*rSourceObject, 
nTargetPos);
 }
 else
 {
 SdrObjList* pList = pTargetParentObject->GetSubList();
-pList->NbcInsertObject(rSourceObject.get(), nTargetPos);
-pList->SetObjectNavigationPosition(*rSourceObject, nTargetPos);
+pList->NbcInsertObject(rSourceObject.get());
 }
+
+m_pSdrView->PutMarkedBehindObj(pTargetObject);
 }
 
 return DND_ACTION_NONE;
diff --git a/sd/source/ui/inc/sdtreelb.hxx b/sd/source/ui/inc/sdtreelb.hxx
index 81a535c19a05..07e79c566df9 100644
--- a/sd/source/ui/inc/sdtreelb.hxx
+++ b/sd/source/ui/inc/sdtreelb.hxx
@@ -28,6 +28,7 @@
 #include 
 #include 
 
+class SdrView;
 class SdDrawDocument;
 class SfxMedium;
 class SfxViewFrame;
@@ -54,12 +55,15 @@ class SdPageObjsTLVDropTarget final : public 
DropTargetHelper
 {
 private:
 weld::TreeView& m_rTreeView;
+SdrView* m_pSdrView;
 
 virtual sal_Int8 AcceptDrop( const AcceptDropEvent& rEvt ) override;
 virtual sal_Int8 ExecuteDrop( const ExecuteDropEvent& rEvt ) override;
 
 public:
 SdPageObjsTLVDropTarget(weld::TreeView& rTreeView);
+
+void SetDrawView(SdrView* pSdrView) { m_pSdrView = pSdrView; }
 };
 
 class SD_DLLPUBLIC SdPageObjsTLV


[Libreoffice-bugs] [Bug 154991] CRASH: hiding column

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

Xisco Faulí  changed:

   What|Removed |Added

 CC||heiko.tietze@documentfounda
   ||tion.org,
   ||xiscofa...@libreoffice.org
   Severity|normal  |major
 Ever confirmed|0   |1
   Priority|medium  |high
   Keywords||bibisected, bisected,
   ||regression
 Status|UNCONFIRMED |NEW

--- Comment #1 from Xisco Faulí  ---
Regression introduced by:

author  Heiko Tietze2023-04-13 12:15:46 +0200
committer   Heiko Tietze  
2023-04-14 11:39:06 +0200
commit  11bb9c14da13507adeeea8dce863fb4b96a92870 (patch)
tree77731313a7a4630a807a55393d7132e9dda512c3
parent  b9ad48f1939145105ee57470b5c9210bacc8ee45 (diff)
[API CHANGE] Related tdf#154080 - Allow customization of comment indicator
color

Bisected with: bibisect-linux64-7.6

Adding Cc: to Heiko Tietze

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

[Libreoffice-bugs] [Bug 154991] New: CRASH: hiding column

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

Bug ID: 154991
   Summary: CRASH: hiding column
   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: xiscofa...@libreoffice.org

Steps to reproduce:
1. Open attachment 55639 from bug 44831
2. Go to sheet "Рассчёт Янв 12г"
3. Right Click on Column B - Hide column

Crash

reproduced in

Version: 7.6.0.0.alpha0+ (X86_64) / LibreOffice Community
Build ID: a1388417b217430de456868c440817459697c4a8
CPU threads: 8; OS: Linux 5.10; UI render: default; VCL: gtk3
Locale: es-ES (es_ES.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 154983] Color Bar stuck in Sidebar and not using space efficiently

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

V Stuart Foote  changed:

   What|Removed |Added

 CC||vsfo...@libreoffice.org

--- Comment #4 from V Stuart Foote  ---
The active focus grabs for the Color Palette... dialog are at the
edges--depending on os/DE they can be tricky to grab to drag-n-drop reposition.

However, there are additional docking points for the widget. Keep dragging
right and it can be positioned below or above the SB deck.

When positioned to anchor above or below the SB deck, the widget
(.uno:GetColorTable) will honor the SB collapse, and will follow behavior of
'minimumwidth' expert config.

See attached animated gif of draw session with 'minimumwidth' set false, also
works with it set true but the SB deck is blocked from narrower value--stops at
minimum. But the Color Table picker will follow.

Version: 7.5.1.2 (X86_64) / LibreOffice Community
Build ID: fcbaee479e84c6cd81291587d2ee68cba099e129
CPU threads: 8; OS: Windows 10.0 Build 19044; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL threaded

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

[Libreoffice-bugs] [Bug 107642] [META] Paragraph dialog bugs and enhancements

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

Bug 153441 Summary: LibreOffice OpenType font features list is blocked
https://bugs.documentfoundation.org/show_bug.cgi?id=153441

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

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

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

2023-04-24 Thread Caolán McNamara (via logerrit)
 cui/source/dialogs/FontFeaturesDialog.cxx |   30 --
 cui/source/inc/FontFeaturesDialog.hxx |8 +++-
 cui/uiconfig/ui/fontfragment.ui   |1 +
 vcl/source/gdi/metaact.cxx|2 ++
 4 files changed, 34 insertions(+), 7 deletions(-)

New commits:
commit 4d6fcd7908f6db892e8d5fb3cabf7e0fe49328c4
Author: Caolán McNamara 
AuthorDate: Mon Apr 24 12:52:22 2023 +0100
Commit: Caolán McNamara 
CommitDate: Mon Apr 24 20:47:55 2023 +0200

Resolves: tdf#153441 use a TriStateEnabled helper

Change-Id: I976e4271a072bfb53c676091509e1d4ef7dbcccb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/150934
Tested-by: Jenkins
Reviewed-by: Caolán McNamara 

diff --git a/cui/source/dialogs/FontFeaturesDialog.cxx 
b/cui/source/dialogs/FontFeaturesDialog.cxx
index 1656f50bb5b1..e9aba0a6e409 100644
--- a/cui/source/dialogs/FontFeaturesDialog.cxx
+++ b/cui/source/dialogs/FontFeaturesDialog.cxx
@@ -109,19 +109,21 @@ int 
FontFeaturesDialog::fillGrid(std::vector const& rFontFea
 {
 nIdx = nStylisticSets++;
 m_xStylisticSetsBox->set_visible(true);
-m_aFeatureItems.emplace_back(m_xStylisticSetsGrid.get());
+m_aFeatureItems.emplace_back(
+std::make_unique(m_xStylisticSetsGrid.get()));
 }
 else if (rFontFeature.isCharacterVariant())
 {
 nIdx = nCharacterVariants++;
 m_xCharacterVariantsBox->set_visible(true);
-m_aFeatureItems.emplace_back(m_xCharacterVariantsGrid.get());
+m_aFeatureItems.emplace_back(
+
std::make_unique(m_xCharacterVariantsGrid.get()));
 }
 else
 {
 nIdx = nOtherFeatures++;
 m_xContentBox->set_visible(true);
-m_aFeatureItems.emplace_back(m_xContentGrid.get());
+
m_aFeatureItems.emplace_back(std::make_unique(m_xContentGrid.get()));
 }
 
 int32_t nValue = 0;
@@ -130,7 +132,7 @@ int 
FontFeaturesDialog::fillGrid(std::vector const& rFontFea
 else
 nValue = aDefinition.getDefault();
 
-FontFeatureItem& aCurrentItem = m_aFeatureItems.back();
+FontFeatureItem& aCurrentItem = *m_aFeatureItems.back();
 aCurrentItem.m_aFeatureCode = nFontFeatureCode;
 aCurrentItem.m_nDefault = aDefinition.getDefault();
 
@@ -158,11 +160,19 @@ int 
FontFeaturesDialog::fillGrid(std::vector const& rFontFea
 else
 {
 if (nValue < 0)
+{
 aCurrentItem.m_xCheck->set_state(TRISTATE_INDET);
+aCurrentItem.m_aTriStateEnabled.bTriStateEnabled = true;
+aCurrentItem.m_aTriStateEnabled.eState = TRISTATE_INDET;
+}
 else
+{
 aCurrentItem.m_xCheck->set_state(nValue > 0 ? TRISTATE_TRUE : 
TRISTATE_FALSE);
+aCurrentItem.m_aTriStateEnabled.bTriStateEnabled = false;
+aCurrentItem.m_aTriStateEnabled.eState = 
aCurrentItem.m_xCheck->get_state();
+}
 aCurrentItem.m_xCheck->set_label(aDefinition.getDescription());
-aCurrentItem.m_xCheck->connect_toggled(aCheckBoxToggleHandler);
+aCurrentItem.m_aToggleHdl = aCheckBoxToggleHandler;
 aCurrentItem.m_xCheck->show();
 }
 
@@ -188,6 +198,13 @@ void FontFeaturesDialog::updateFontPreview()
 m_aPreviewWindow.SetFont(rPreviewFont, rPreviewFontCJK, rPreviewFontCTL);
 }
 
+IMPL_LINK(FontFeatureItem, CheckBoxToggledHdl, weld::Toggleable&, rToggle, 
void)
+{
+m_aTriStateEnabled.ButtonToggled(rToggle);
+m_aTriStateEnabled.bTriStateEnabled = false;
+m_aToggleHdl.Call(rToggle);
+}
+
 IMPL_LINK_NOARG(FontFeaturesDialog, CheckBoxToggledHdl, weld::Toggleable&, 
void)
 {
 updateFontPreview();
@@ -204,8 +221,9 @@ OUString FontFeaturesDialog::createFontNameWithFeatures()
 OUStringBuffer sNameSuffix;
 bool bFirst = true;
 
-for (const FontFeatureItem& rItem : m_aFeatureItems)
+for (const auto& rEntry : m_aFeatureItems)
 {
+const FontFeatureItem& rItem(*rEntry);
 if (rItem.m_xCheck->get_visible())
 {
 if (rItem.m_xCheck->get_state() != TRISTATE_INDET)
diff --git a/cui/source/inc/FontFeaturesDialog.hxx 
b/cui/source/inc/FontFeaturesDialog.hxx
index c4eb43b79e98..93ba0cb9f80d 100644
--- a/cui/source/inc/FontFeaturesDialog.hxx
+++ b/cui/source/inc/FontFeaturesDialog.hxx
@@ -29,21 +29,27 @@ struct FontFeatureItem
 , m_xCombo(m_xBuilder->weld_combo_box("combo"))
 , m_xCheck(m_xBuilder->weld_check_button("check"))
 {
+m_xCheck->connect_toggled(LINK(this, FontFeatureItem, 
CheckBoxToggledHdl));
 }
 
 sal_uInt32 m_aFeatureCode;
 sal_Int32 m_nDefault;
+weld::TriStateEnabled m_aTriStateEnabled;
+Link m_aToggleHdl;
 std::unique_ptr m_xBuilder;
 std::unique_ptr m_xContainer;
 std::unique_ptr m_xText;
  

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

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

BogdanB  changed:

   What|Removed |Added

 Depends on||144416


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=144416
[Bug 144416] Default formatting bar not showing on entering textbox in Impress
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 144416] Default formatting bar not showing on entering textbox in Impress

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

BogdanB  changed:

   What|Removed |Added

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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=84909
[Bug 84909] [META] Enhancing Impress/Draw toolbars and context menu
-- 
You are receiving this mail because:
You are the assignee for the bug.

  1   2   3   4   >