[Libreoffice-bugs] [Bug 130530] User fields broken for time formats broken

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130530

--- Comment #4 from Wolfgang Denk  ---
The bug is still present in LibreOffice
Version: 7.2.6.2
Environment: CPUthreads: 24; OS: Linux 5.16
User Interface: UI render: default; VCL: x11
Locale: de-DE (C.UTF-8); UI: en-US
Misc: Calc: threaded

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

[Libreoffice-bugs] [Bug 148751] [UI] Text toolbar is not in View - Toolbar menu and cannot be displayed

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148751

Rafael Lima  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |rafael.palma.l...@gmail.com
   |desktop.org |

--- Comment #3 from Rafael Lima  ---
Proposed patch at:
https://gerrit.libreoffice.org/c/core/+/133395

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

[Libreoffice-bugs] [Bug 132358] Part of content of window "Manage Names" not refreshed after deletion of named ranges

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132358

--- Comment #7 from Stephane Quenson  ---
The bug is still present with this version under Windows 10:
Version: 7.3.2.2 (x64) / LibreOffice Community
Build ID: 49f2b1bff42cfccbd8f788c8dc32c1c309559be0
CPU threads: 8; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL

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

[Libreoffice-bugs] [Bug 148446] LO Writer randomly restarts automatic numbering

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148446

--- Comment #9 from Christian Lehmann  ---
Timur, I did not mean to misuse this platform. And I am happy to be shown
mistaken. However, how could I even know that '2nd E is missing this:
continue-numbering="true"'? Right-clicking on this number, the checkbox
'Restart numbering' is unchecked. The user is not expected to look into
content.xml, is he?

Thus, I am ready to accept that I must have brought about the error in the file
myself. However, what can I, as a user, be expected to do about it?

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

[Libreoffice-commits] core.git: editeng/source include/tools sc/source svl/source tools/source

2022-04-25 Thread Noel Grandin (via logerrit)
 editeng/source/misc/svxacorr.cxx |4 ++--
 include/tools/urlobj.hxx |3 +--
 sc/source/filter/xml/xmltabi.cxx |2 +-
 svl/source/misc/urihelper.cxx|2 +-
 tools/source/fsys/urlobj.cxx |7 +++
 5 files changed, 8 insertions(+), 10 deletions(-)

New commits:
commit e156cd6610bf8cfe5097498f2223bbfd26819937
Author: Noel Grandin 
AuthorDate: Mon Apr 25 13:20:20 2022 +0200
Commit: Noel Grandin 
CommitDate: Mon Apr 25 14:45:03 2022 +0200

use string_view in CompareProtocolScheme

Change-Id: I3584042d0341d5c1b4f4e742e25e9eb0aa26f1da
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133378
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/editeng/source/misc/svxacorr.cxx b/editeng/source/misc/svxacorr.cxx
index 753e79a8126b..d969b09c0015 100644
--- a/editeng/source/misc/svxacorr.cxx
+++ b/editeng/source/misc/svxacorr.cxx
@@ -687,7 +687,7 @@ bool SvxAutoCorrect::FnAddNonBrkSpace(
 sal_Int32 nProtocolLen = nEndPos - nSttWdPos + 1;
 if (nIndex + nProtocolLen <= rTxt.getLength())
 {
-if (INetURLObject::CompareProtocolScheme(rTxt.copy(nIndex, 
nProtocolLen)) != INetProtocol::NotValid)
+if (INetURLObject::CompareProtocolScheme(rTxt.subView(nIndex, 
nProtocolLen)) != INetProtocol::NotValid)
 return false;
 }
 
@@ -895,7 +895,7 @@ void SvxAutoCorrect::FnCapitalStartSentence( 
SvxAutoCorrDoc& rDoc,
 sal_Int32 nProtocolLen = pDelim - pWordStt + 1;
 if (nIndex + nProtocolLen <= rTxt.getLength())
 {
-if (INetURLObject::CompareProtocolScheme(rTxt.copy(nIndex, 
nProtocolLen)) != INetProtocol::NotValid)
+if (INetURLObject::CompareProtocolScheme(rTxt.subView(nIndex, 
nProtocolLen)) != INetProtocol::NotValid)
 return; // already ok
 }
 
diff --git a/include/tools/urlobj.hxx b/include/tools/urlobj.hxx
index 82b30fe2676b..cb135497bc88 100644
--- a/include/tools/urlobj.hxx
+++ b/include/tools/urlobj.hxx
@@ -406,8 +406,7 @@ public:
  */
 static const OUString & GetSchemeName(INetProtocol eTheScheme);
 
-static INetProtocol CompareProtocolScheme(OUString const &
-  rTheAbsURIRef);
+static INetProtocol CompareProtocolScheme(std::u16string_view 
aTheAbsURIRef);
 
 // User Info:
 
diff --git a/sc/source/filter/xml/xmltabi.cxx b/sc/source/filter/xml/xmltabi.cxx
index 835474537401..217e08bebced 100644
--- a/sc/source/filter/xml/xmltabi.cxx
+++ b/sc/source/filter/xml/xmltabi.cxx
@@ -75,7 +75,7 @@ static bool lcl_isExternalRefCache(const OUString& rName, 
OUString& rUrl, OUStri
 
 // #i114504# Other schemes besides "file:" are also allowed.
 // CompareProtocolScheme is quick, only looks at the start of the string.
-INetProtocol eProt = INetURLObject::CompareProtocolScheme( rName.copy(1) );
+INetProtocol eProt = INetURLObject::CompareProtocolScheme( 
rName.subView(1) );
 if ( eProt == INetProtocol::NotValid )
 return false;
 
diff --git a/svl/source/misc/urihelper.cxx b/svl/source/misc/urihelper.cxx
index e5ddbc37a93e..30dfdc87f387 100644
--- a/svl/source/misc/urihelper.cxx
+++ b/svl/source/misc/urihelper.cxx
@@ -535,7 +535,7 @@ OUString URIHelper::FindFirstURLInText(OUString const & 
rText,
 if (rtl::isAsciiAlpha(c))
 {
 sal_Int32 i = nPos;
-INetProtocol eScheme = 
INetURLObject::CompareProtocolScheme(rText.copy(i, rEnd - i));
+INetProtocol eScheme = 
INetURLObject::CompareProtocolScheme(rText.subView(i, rEnd - i));
 if (eScheme == INetProtocol::File) // 2nd
 {
 while (rText[i++] != ':') ;
diff --git a/tools/source/fsys/urlobj.cxx b/tools/source/fsys/urlobj.cxx
index 1b171ad2ed8e..a4bc5ab0922d 100644
--- a/tools/source/fsys/urlobj.cxx
+++ b/tools/source/fsys/urlobj.cxx
@@ -3963,11 +3963,10 @@ const OUString & 
INetURLObject::GetSchemeName(INetProtocol eTheScheme)
 }
 
 // static
-INetProtocol INetURLObject::CompareProtocolScheme(OUString const &
-  rTheAbsURIRef)
+INetProtocol INetURLObject::CompareProtocolScheme(std::u16string_view 
aTheAbsURIRef)
 {
-sal_Unicode const * p = rTheAbsURIRef.getStr();
-PrefixInfo const * pPrefix = getPrefix(p, p + rTheAbsURIRef.getLength());
+sal_Unicode const * p = aTheAbsURIRef.data();
+PrefixInfo const * pPrefix = getPrefix(p, p + aTheAbsURIRef.size());
 return pPrefix ? pPrefix->m_eScheme : INetProtocol::NotValid;
 }
 


[Libreoffice-bugs] [Bug 148661] LibreOffice Import Dialog not working

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148661

--- Comment #6 from Vladimir Sokolinskiy  ---
Thank you very much!

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

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

2022-04-25 Thread Laurent BP (via logerrit)
 extras/source/templates/draw/bpmn/content.xml |   92 +-
 extras/source/templates/draw/bpmn/meta.xml|   12 +++
 extras/source/templates/draw/bpmn/styles.xml  |   36 --
 3 files changed, 72 insertions(+), 68 deletions(-)

New commits:
commit ace2e40a5b89967e247db1ebe9da65d41706d446
Author: Laurent BP 
AuthorDate: Tue Sep 7 08:41:57 2021 +0200
Commit: Laurent Balland-Poirier 
CommitDate: Mon Apr 25 14:37:42 2022 +0200

tdf#143956 Remove page size from Draw templates

Update BPMN template:
  - content.xml:
remove lang and country tags
remove asian and complex tags
  - meta.xml: indent and add title to enable translation
  - styles.xml:
 change style name to English to get automatic
translation
 remove lang and country tags
 remove page size

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

diff --git a/extras/source/templates/draw/bpmn/content.xml 
b/extras/source/templates/draw/bpmn/content.xml
index 7cf9fd2141ca..51f63518c9bd 100644
--- a/extras/source/templates/draw/bpmn/content.xml
+++ b/extras/source/templates/draw/bpmn/content.xml
@@ -492,26 +492,26 @@
 
 
   
-  
+  
 
 
   
   
-  
+  
 
 
   
 
 
   
-  
+  
 
 
   
-  
+  
 
 
-  
+  
 
 
   
@@ -522,21 +522,21 @@
   
 
   
-  
+  
 
 
   
-  
+  
 
 
   
   
-  
+  
 
 
   
   
-  
+  
 
 
   
@@ -544,82 +544,82 @@
 
   
   
-  
+  
 
 
   
   
-  
+  
 
 
   
   
-  
+  
 
 
   
 
 
   
-  
+  
 
 
   
   
-  
+  
 
 
   
   
-  
+  
 
 
   
   
-  
+  
 
 
   
   
-  
+  
 
 
   
-  
+  
 
 
   
   
-  
+  
 
 
   
-  
+  
 
 
   
   
-  
+  
 
 
   
   
-  
+  
 
 
   
   
-  
+  
 
 
   
   
-  
+  
 
 
   
   
-  
+  
 
 
   
@@ -627,71 +627,71 @@
 
   
   
-  
+  
 
 
   
-  
+  
 
 
   
-  
+  
 
 
   
   
-  
+  
 
 
-  
+  
 
 
-  
+  
 
 
-  
+  
 
 
-  
+  
 
 
-  
+  
 
 
-  
+  
 
 
-  
+  
 
 
-  
+  
 
 
-  
+  
 
 
-  
+  
 
 
-  
+  
 
 
-  
+  
 
 
-  
+  
 
 
-  
+  
 
 
-  
+  
 
 
-  
+  
 
 
-  
+  
 
 
   
diff --git a/extras/source/templates/draw/bpmn/meta.xml 
b/extras/source/templates/draw/bpmn/meta.xml
index 858cc31cb772..cfc606ed1eb0 100644
--- a/extras/source/templates/draw/bpmn/meta.xml
+++ b/extras/source/templates/draw/bpmn/meta.xml
@@ -1,2 +1,12 @@
 
-http://www.w3.org/2003/g/data-view#; 
xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" 
xmlns:officeooo="http://openoffice.org/2009/office; 
xmlns:xlink="http://www.w3.org/1999/xlink; 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:smil="urn:oasis:names:tc:opendocument:xmlns:smil-compatible:1.0" 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
office:version="1.2">2020-05-02T22:10:56.237002020-05-05T15:09:15.89700PT7H39M57S70LibreOfficeDev/7.0.0.0.alpha0$Linux_X86_64
 
LibreOffice_project/35f5520fc83a2c69a5d5eef283a37b1553c8ed65
\ No newline at end of file
+http://www.w3.org/2003/g/data-view#; 
xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" 
xmlns:ooo="http://openoffice.org/2004/office; 
xmlns:office="urn:oasis:names:tc:opendocument:xmlns:office:1.0" 
xmlns:officeooo="http://openoffice.org/2009/office; 
xmlns:xlink="http://www.w3.org/1999/xlink; 
xmlns:dc="http://purl.org/dc/elements/1.1/; 
xmlns:smil="urn:oasis:names:tc:opendocument:xmlns:smil-compatible:1.0" 
xmlns:meta="urn:oasis:names:tc:opendocument:xmlns:meta:1.0" 
office:version="1.2">
+  
+2020-05-02T22:10:56.23700
+2020-05-05T15:09:15.89700
+BPMN
+PT7H39M57S
+70
+LibreOfficeDev/7.0.0.0.alpha0$Linux_X86_64 
LibreOffice_project/35f5520fc83a2c69a5d5eef283a37b1553c8ed65
+
+  
+
diff --git a/extras/source/templates/draw/bpmn/styles.xml 
b/extras/source/templates/draw/bpmn/styles.xml
index 

[Libreoffice-bugs] [Bug 99708] Calc Formula Bar multiline input doesn't remember state

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99708

Samuel Mehrbrodt (allotropia)  changed:

   What|Removed |Added

 CC||samuel.mehrbrodt@allotropia
   ||.de
 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |samuel.mehrbrodt@allotropia
   |desktop.org |.de

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

[Libreoffice-bugs] [Bug 148770] UI: TOC background color isn't applied to the area with .... (but does in print preview)

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148770

Telesto  changed:

   What|Removed |Added

   Keywords||bibisectRequest, regression

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

[Libreoffice-bugs] [Bug 148770] UI: TOC background color isn't applied to the area with .... (but does in print preview)

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148770

--- Comment #1 from Telesto  ---
Created attachment 179758
  --> https://bugs.documentfoundation.org/attachment.cgi?id=179758=edit
Example file

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

[Libreoffice-bugs] [Bug 148770] New: UI: TOC background color isn't applied to the area with .... (but does in print preview)

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148770

Bug ID: 148770
   Summary: UI: TOC background color isn't applied to the area
with  (but does in print preview)
   Product: LibreOffice
   Version: 4.1.0.4 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
UI: TOC background color isn't applied to the area with  (but does in print
preview)

Steps to Reproduce:
1. Open the attached file
2. Notice the gray in the TOC .. press Print Preview.. notice the full TOC
being blue (expected)

Actual Results:
Partly gray

Expected Results:
Totally blue


Reproducible: Always


User Profile Reset: No



Additional Info:
Found in

Version: 7.4.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 4659fc2f0a7223a89446edff0b77e58758b5edf5
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: en-US (nl_NL); UI: en-US
Calc: CL

and in
4.4.7.2

and in
Versie: 4.1.0.4 
Build ID: 89ea49ddacd9aa532507cbf852f2bb22b1ace28

fine with
Versie 4.0.0.3 (Bouw-id: 7545bee9c2a0782548772a21bc84a9dcc583b89)

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

[Libreoffice-bugs] [Bug 148766] Hidden sheets are inaccessible to VBA scripts

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148766

--- Comment #2 from David Yang  ---
Accidentally bled a line into the attached file from another test, ignore and
remove all Selection.ClearContents lines in this report.

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

[Libreoffice-bugs] [Bug 148732] UI: Default Character in Format Styles is called No Character Style in character styles deck of the sidebar

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148732

Heiko Tietze  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Blocks||108014
   Keywords|needsUXEval |difficultyBeginner,
   ||easyHack, skillDesign,
   ||topicDesign
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=14
   ||0818
 CC|libreoffice-ux-advise@lists |heiko.tietze@documentfounda
   |.freedesktop.org|tion.org,
   ||sdc.bla...@youmail.dk
 Ever confirmed|0   |1

--- Comment #1 from Heiko Tietze  ---
"Default CS" was renamed "No CS" for bug 140818 and this command was obviously
missed.

The label for .uno:DefaultCharStyle is defined in
officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu

Seth, one for you?


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 148447] Replace All in Writer comments

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148447

Heiko Tietze  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
 CC|libreoffice-ux-advise@lists |heiko.tietze@documentfounda
   |.freedesktop.org|tion.org
   Keywords|needsUXEval |

--- Comment #2 from Heiko Tietze  ---
Don't see a reason why Replace All shouldn't be available. The opposite is true
from the UX POV.

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

[Libreoffice-bugs] [Bug 62185] FILEOPEN PPTX Text reflections not imported

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=62185

Heiko Tietze  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 132049] DOCX: Bitmap area size modifications of a shape not saved

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132049

--- Comment #9 from Dieter  ---
Steps to reproduce:

1. Open new document and insert a shape
2. Select shape -> Area in context menu -> Image
3. Choose an image and change size
4. Save as docx and reload

Actual result:
Size of image changes to size of shape

Expected result:
previous settings shoud persist


Version: 7.3.3.1 (x64) / LibreOffice Community
Build ID: 1688991ca59a3ca1c74bc2176b274fba1b034928
CPU threads: 4; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-GB
Calc: CL

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

[Libreoffice-bugs] [Bug 148730] UI: Unexpected tristate situation in Format -> Paragraph -> Text flow tab

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148730

Heiko Tietze  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||mikekagan...@hotmail.com
 Status|UNCONFIRMED |NEW

--- Comment #1 from Heiko Tietze  ---
(In reply to Telesto from comment #0)
> 1. Open the attached file

Missing, but not needed. Once "Do not Split" has been applied to the PS Orphan
and Widow control become tristate. After unchecking (and applying) "Do not
Split" the two options are binary again.

Mike, any idea? Probably an easyhack.

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

[Libreoffice-bugs] [Bug 148767] New: FILOPEN DOC: A centered table in ODT opens centered in DOC in Writer but LEFT in Word (and paragraph spacing is also off)

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148767

Bug ID: 148767
   Summary: FILOPEN DOC: A centered table in ODT opens centered in
DOC in Writer but LEFT in Word (and paragraph spacing
is also off)
   Product: LibreOffice
   Version: 4.1.0.4 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
FILOPEN DOC: A centered table in ODT opens centered in DOC in Writer but LEFT
in Word (and paragraph spacing is also off)

Steps to Reproduce:
1. Open the attached file
2. Save as DOC
3. File reload
4. Notice the table being centered the distance between table and paragraph
changing
5. Open the DOC in Word.. notice the table being aligned left

DOCX has an issue with distance to paragraph too.. similar to DOC but that's
even older (but does center properly)

Actual Results:
1) Difference opening to DOC with Writer and Word
2) Spacing being off to previous paragraph
3) Ideally table should be centered in Word too (but that's something since
ever)

Expected Results:
1) Proper distance from text
2) Opening left in Writer (as MSO) or ideally centered in MSO and Writer


Reproducible: Always


User Profile Reset: No



Additional Info:
Found in
Version: 7.4.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 4659fc2f0a7223a89446edff0b77e58758b5edf5
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: en-US (nl_NL); UI: en-US
Calc: CL




and in
4.4.7.2

and in
Versie: 4.2.0.4 
Build ID: 05dceb5d363845f2cf968344d7adab8dcfb2ba71

and in
Versie: 4.1.0.4 
Build ID: 89ea49ddacd9aa532507cbf852f2bb22b1ace28

still good in
Versie 4.0.0.3 (Bouw-id: 7545bee9c2a0782548772a21bc84a9dcc583b89)

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

[Libreoffice-bugs] [Bug 148723] Request improvement :Create a REFLECT text effect in Font attributes like italic, bold...

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148723

Heiko Tietze  changed:

   What|Removed |Added

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

--- Comment #3 from Heiko Tietze  ---
(In reply to V Stuart Foote from comment #2)
> IMHO => WF

Concur as those effects are rather fontwork or drawing related to me. But for
round trip compatibility with OOXML we need feature parity. => DUP

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

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

[Libreoffice-bugs] [Bug 148272] Cross-reference to numbering wrongly includes separator character

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148272

--- Comment #9 from Heiko Tietze  ---
To insert just the number you have to use Numbered Paragraph and Chapter (my
example is "Chaper One:" becoming "One"). Nothing has changed to my knowledge
with 7.2. Perhaps you share an example documents along with screenshots
expected / before 7.2 and unexpected / after 7.2.

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

[Libreoffice-bugs] [Bug 148446] LO Writer randomly restarts automatic numbering

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148446

--- Comment #8 from Timur  ---
(In reply to Christian Lehmann from comment #4)
> a valid and detectable bug because the file must contain a
> trace of it; otherwise the numbering would not be restarted.

2nd E is missing this: continue-numbering="true"

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

[Libreoffice-bugs] [Bug 108014] [META] Writer character style bugs and enhancements

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108014

Heiko Tietze  changed:

   What|Removed |Added

 Depends on||148732


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=148732
[Bug 148732] UI: Default Character in Format Styles is called No Character
Style in character styles deck of the sidebar
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 104103] FILEOPEN DOC: Textbox isn't separated from drawing canvas

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104103

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 148473] Use field type for subtreeing in Navigator

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148473

Heiko Tietze  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #4 from Heiko Tietze  ---
Wonder with what categories we end up. Number range, Date/Time, Page Number in
case of my formatted dummy text (=> available at the extensions site).

But in principle IO agree with more hierarchy for large trees. Could have been
also an option for the Foot/Endnote thingy.

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

[Libreoffice-bugs] [Bug 148728] Should Format -> Character/ Paragraph entry's not be called Paragraph/Character Direct Formatting

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148728

--- Comment #4 from Mike Kaganski  ---
(In reply to Heiko Tietze from comment #3)

I see that comment 2 is confused/misguided. And nothing needs any change.

(In reply to Telesto from comment #2)
> If you modify a style a PS style or introduce a new style, the caption of
> the dialog will be Paragraph Style: Style name
> 
> The dialog for Paragraph... will be Paragraph. 
> 
> A) If it where that obvious, you could call the Paragraph Styles dialog
> Paragraph. You are in the styles deck, so it would be a style anyhow.

Completely wrong. The two different captions reflect *precisely* what is being
edited.

* There is an object named "paragraph style", and that is *not* a paragraph,
but a named set of properties that *may* be applied to *any* paragraph; so when
you edit that *paragraph style* object, it is plain wrong to name the dialog
simply "Paragraph": it would mean you edit something different than you in fact
are editing.

* There is an object named "Paragraph". It represents a specific piece of text
in the document. It has own properties, among them: (a) style name; (b)
everything else. Whenever you assign a style to a paragraph, you define that
paragraph's specific direct property (a); whenever you assign font to a
paragraph, you assign another direct property (one of (b))... So when you edit
properties of paragraph, you have the dialog named "Paragraph".

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

[Libreoffice-bugs] [Bug 140579] It's unclear, how "Continue previous numbering" should work

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140579

Timur  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #62 from Timur  ---
Please make a full summary, what is this open for, is it Writer or
Documentation.

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

[Libreoffice-bugs] [Bug 141607] FILEOPEN XLSX Cell background colour missing (patternFill)

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141607

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

   What|Removed |Added

 CC||79045_79...@mail.ru
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=70
   ||384

--- Comment #3 from Roman Kuznetsov <79045_79...@mail.ru> ---
dupe of bug 70384?

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

[Libreoffice-bugs] [Bug 148446] LO Writer randomly restarts automatic numbering

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148446

Timur  changed:

   What|Removed |Added

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

--- Comment #7 from Timur  ---
(In reply to Christian Lehmann from comment #4)
> an example numbered E1 and further below another example, formatted
> with the very same style, which also bears number E1, followed by another
> one numbered E2. The second occurrence of E1 should be E2, followed by E3.

Yes, but we don't know how it was created, this may set be on purpose.
This is NotABug, can be easily corrected. 
I could explain why, but BZ is bug report tool, not a learning tool. 
If something is unclear like this, reporter should:
1. search in similar open and closed bugs. 
2. use Ask.Libreoffice.org

Christian, I see by your 65 reports that you are an advanced user and frequent
reporter. That means you should always search before reporting to avoid many
duplicates. 
Thanks.

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

[Libreoffice-bugs] [Bug 139464] Usability: "Move or Copy Sheet"; the difference is subtle, but important

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139464

Laurent BP  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |jumbo4...@yahoo.fr
   |desktop.org |
 Status|NEW |ASSIGNED
 CC||jumbo4...@yahoo.fr

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

[Libreoffice-bugs] [Bug 112700] [META] DOC (binary) table-related issues

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112700
Bug 112700 depends on bug 129585, which changed state.

Bug 129585 Summary: FILESAVE: DOC: Table is splitted after RT
https://bugs.documentfoundation.org/show_bug.cgi?id=129585

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 80412] FILESAVE: DOC save breaks correct Normal style font and font size in Word for Mac 2011 & 2016 ver 15

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80412

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

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 140818] Default Character Style should be renamed

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140818

Heiko Tietze  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 96474] It would be helpful to be able to search *only* within comments

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=96474

--- Comment #13 from Heiko Tietze  ---
Currently, we can either find/replace the document content or comments if the
checkbox is marked. Resolve WFM?

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

[Libreoffice-ux-advise] [Bug 148768] New: Test

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148768

Bug ID: 148768
   Summary: Test
   Product: LibreOffice
   Version: 7.4.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-b...@lists.freedesktop.org
  Reporter: heiko.tie...@documentfoundation.org
CC: heiko.tie...@documentfoundation.org,
libreoffice-ux-advise@lists.freedesktop.org,
xiscofa...@libreoffice.org

Just testing mail delivery

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

[Libreoffice-bugs] [Bug 148728] Should Format -> Character/ Paragraph entry's not be called Paragraph/Character Direct Formatting

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148728

Timur  changed:

   What|Removed |Added

 Resolution|--- |WONTFIX
 Status|UNCONFIRMED |RESOLVED

--- Comment #5 from Timur  ---
I guess we may close this.

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

[Libreoffice-bugs] [Bug 126996] FILESAVE DOCX The wideslash from a formula is not saved

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126996

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

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 148446] LO Writer randomly restarts automatic numbering

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148446

--- 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 62185] FILEOPEN PPTX Text reflections not imported

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=62185

Heiko Tietze  changed:

   What|Removed |Added

 CC||her...@etik.com

--- Comment #13 from Heiko Tietze  ---
*** Bug 148723 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 126672] Add search field to extension manager

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126672

Samuel Mehrbrodt (allotropia)  changed:

   What|Removed |Added

 CC||samuel.mehrbrodt@allotropia
   ||.de
   Assignee|libreoffice-b...@lists.free |samuel.mehrbrodt@allotropia
   |desktop.org |.de
 Status|NEW |ASSIGNED

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

[Libreoffice-bugs] [Bug 148446] LO Writer randomly restarts automatic numbering

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148446

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-ux-advise] [Bug 148473] Use field type for subtreeing in Navigator

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148473

Heiko Tietze  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #4 from Heiko Tietze  ---
Wonder with what categories we end up. Number range, Date/Time, Page Number in
case of my formatted dummy text (=> available at the extensions site).

But in principle IO agree with more hierarchy for large trees. Could have been
also an option for the Foot/Endnote thingy.

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

[Libreoffice-bugs] [Bug 123941] Font reflection effect from Word 365 gets lost in LO

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123941

Heiko Tietze  changed:

   What|Removed |Added

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

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

[Libreoffice-ux-advise] [Bug 148728] Should Format -> Character/ Paragraph entry's not be called Paragraph/Character Direct Formatting

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148728

Heiko Tietze  changed:

   What|Removed |Added

 CC|heiko.tietze@documentfounda |mikekagan...@hotmail.com
   |tion.org|

--- Comment #3 from Heiko Tietze  ---
You are right, formatting the paragraph is applied directly on top of the
style. But I also agree with Timur, renaming it to Format > Direct Paragraph
Format, or the like, confuses the users and wont help to understand the
concept.

The dialog name is a different question. Also not worth the effort, IMO.

Mike, what do you think?

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

[Libreoffice-bugs] [Bug 131828] Font size feedback is wrong

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131828

--- Comment #4 from Heiko Tietze  ---
<18>Hello World  => 10 //cell content partly direct formatted as 18pt
Hello <18>World  => 10
<18>Hello World  => 18 //all cell content direct formatted as 18pt
 <18>Hello World => 10 //white space w/o formatting before
<18>Hello World  => 10 //white space w/o formatting after

The cell content here is 51
(with T1 <> T2). Sounds like NAB to me.

PS: Ctrl+M clears direct formatting, and View > Value Highlighting helps to
identify data mistakenly formatted as text.

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

[Libreoffice-bugs] [Bug 106228] [META] Icon theme issues

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106228

Mike Kaganski  changed:

   What|Removed |Added

 Depends on||148764


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=148764
[Bug 148764] Icon themes need to include metadata and different variants in one
package
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 130241] FILEOPEN DOCX: Writer does not display all field names (seen with Ctrl+Ff9 in LO and Alt+F9 in MSO)

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130241

Justin L  changed:

   What|Removed |Added

 CC||jl...@mail.com

--- Comment #13 from Justin L  ---
I don't really understand this bug report. AFAICS, not only can you not see the
field names, but the fields themselves do not even exist. So why talk about
field names if the fields themselves don't function?

P.S. Word 2003 (with docx extensions so it can normally read DOCX) cannot open
this file.

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

[Libreoffice-bugs] [Bug 132358] Part of content of window "Manage Names" not refreshed after deletion of named ranges

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132358

--- Comment #6 from QA Administrators  ---
Dear Stephane Quenson,

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 148767] FILOPEN DOC: A centered table in ODT opens centered in DOC in Writer but LEFT in Word (and paragraph spacing is also off)

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148767

--- Comment #1 from Telesto  ---
Created attachment 179757
  --> https://bugs.documentfoundation.org/attachment.cgi?id=179757=edit
Example file

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

[Libreoffice-bugs] [Bug 148768] Test

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148768

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID
  Component|UI  |deletionRequest

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

[Libreoffice-bugs] [Bug 60205] Multi-column 1-page RTF(not doc) with text box (absolute position to margin with "Layout in table cell") opens with wrong frame position

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=60205

--- Comment #16 from Timur  ---
Repro 7.4+.

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

[Libreoffice-bugs] [Bug 148765] New: Calc Filter drop-down not opening Wayland

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148765

Bug ID: 148765
   Summary: Calc Filter drop-down not opening Wayland
   Product: LibreOffice
   Version: 7.3.2.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: fil7rac...@gmail.com

Description:
In Wayland, LibreOffice Calc filter list is not opening, if it somehow shows
its only a few milliseconds.

To reproduce, open a new Spreadsheet using calc.
>paste any data 
>Click Data then AutoFilter
>Once filter is applied, click the drop-down list that displays the filter 
>detail.
>then the issue will be seen.

It is happening when opening an excel file or a new one.


Steps to Reproduce:
1.open a new Spreadsheet using calc
2.enter any data
3.Click Data then AutoFilter
4.Once filter is applied, click the drop-down list that displays the filter
detail.

Actual Results:
Filter list does not show after clicking drop-down list.
If it shows after click, its only brief like 100ms only

Expected Results:
filter list from drop-down should show like how filter is supposed to work


Reproducible: Always


User Profile Reset: Yes



Additional Info:
[Information automatically included from LibreOffice]
Locale: en-US
Module: SpreadsheetDocument
[Information guessed from browser]
OS: Linux (All)
OS is 64bit: yes

Operating System: KDE neon 5.24
KDE Plasma Version: 5.24.4
KDE Frameworks Version: 5.93.0
Qt Version: 5.15.3
Kernel Version: 5.13.0-40-generic (64-bit)
Graphics Platform: Wayland
Processors: 4 × Intel® Core™ i5-6300U CPU @ 2.40GHz
Memory: 15.3 GiB of RAM
Graphics Processor: Mesa Intel® HD Graphics 520

Version: 7.3.2.2 / LibreOffice Community
Build ID: 49f2b1bff42cfccbd8f788c8dc32c1c309559be0
CPU threads: 4; OS: Linux 5.13; UI render: default; VCL: kf5 (cairo+wayland)
Locale: en-US (en_US.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 148728] Should Format -> Character/ Paragraph entry's not be called Paragraph/Character Direct Formatting

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148728

Heiko Tietze  changed:

   What|Removed |Added

 CC|heiko.tietze@documentfounda |mikekagan...@hotmail.com
   |tion.org|

--- Comment #3 from Heiko Tietze  ---
You are right, formatting the paragraph is applied directly on top of the
style. But I also agree with Timur, renaming it to Format > Direct Paragraph
Format, or the like, confuses the users and wont help to understand the
concept.

The dialog name is a different question. Also not worth the effort, IMO.

Mike, what do you think?

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

[Libreoffice-ux-advise] [Bug 148732] UI: Default Character in Format Styles is called No Character Style in character styles deck of the sidebar

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148732

Heiko Tietze  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Blocks||108014
   Keywords|needsUXEval |difficultyBeginner,
   ||easyHack, skillDesign,
   ||topicDesign
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=14
   ||0818
 CC|libreoffice-ux-advise@lists |heiko.tietze@documentfounda
   |.freedesktop.org|tion.org,
   ||sdc.bla...@youmail.dk
 Ever confirmed|0   |1

--- Comment #1 from Heiko Tietze  ---
"Default CS" was renamed "No CS" for bug 140818 and this command was obviously
missed.

The label for .uno:DefaultCharStyle is defined in
officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu

Seth, one for you?


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 144710] Crash in: ScViewData::GetDispatcher()

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144710

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-ux-advise] [Bug 148272] Cross-reference to numbering wrongly includes separator character

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148272

--- Comment #9 from Heiko Tietze  ---
To insert just the number you have to use Numbered Paragraph and Chapter (my
example is "Chaper One:" becoming "One"). Nothing has changed to my knowledge
with 7.2. Perhaps you share an example documents along with screenshots
expected / before 7.2 and unexpected / after 7.2.

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

[Libreoffice-ux-advise] [Bug 148723] Request improvement :Create a REFLECT text effect in Font attributes like italic, bold...

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148723

Heiko Tietze  changed:

   What|Removed |Added

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

--- Comment #3 from Heiko Tietze  ---
(In reply to V Stuart Foote from comment #2)
> IMHO => WF

Concur as those effects are rather fontwork or drawing related to me. But for
round trip compatibility with OOXML we need feature parity. => DUP

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

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

[Libreoffice-ux-advise] [Bug 148728] Should Format -> Character/ Paragraph entry's not be called Paragraph/Character Direct Formatting

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148728

--- Comment #4 from Mike Kaganski  ---
(In reply to Heiko Tietze from comment #3)

I see that comment 2 is confused/misguided. And nothing needs any change.

(In reply to Telesto from comment #2)
> If you modify a style a PS style or introduce a new style, the caption of
> the dialog will be Paragraph Style: Style name
> 
> The dialog for Paragraph... will be Paragraph. 
> 
> A) If it where that obvious, you could call the Paragraph Styles dialog
> Paragraph. You are in the styles deck, so it would be a style anyhow.

Completely wrong. The two different captions reflect *precisely* what is being
edited.

* There is an object named "paragraph style", and that is *not* a paragraph,
but a named set of properties that *may* be applied to *any* paragraph; so when
you edit that *paragraph style* object, it is plain wrong to name the dialog
simply "Paragraph": it would mean you edit something different than you in fact
are editing.

* There is an object named "Paragraph". It represents a specific piece of text
in the document. It has own properties, among them: (a) style name; (b)
everything else. Whenever you assign a style to a paragraph, you define that
paragraph's specific direct property (a); whenever you assign font to a
paragraph, you assign another direct property (one of (b))... So when you edit
properties of paragraph, you have the dialog named "Paragraph".

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

[Libreoffice-bugs] [Bug 70384] [FORMATTING] Patterns not available as cell background for tables

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=70384

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

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 131917] Export of text introduces line break

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131917

--- Comment #13 from QA Administrators  ---
Dear Paul Mirowsky,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 144710] Crash in: ScViewData::GetDispatcher()

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144710

--- Comment #3 from QA Administrators  ---
Dear Michael Dewsbury,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 135978] Undo deletes images not even inside the scope of changes (track & changes enabled)

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135978

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.4.0

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

[Libreoffice-ux-advise] [Bug 148768] Test

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148768

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID
  Component|UI  |deletionRequest

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

[Libreoffice-bugs] [Bug 129585] FILESAVE: DOC: Table is splitted after RT

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129585

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #4 from Xisco Faulí  ---
No longer reproducible in

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

Closing as RESOLVED WORKSFORME

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

[Libreoffice-bugs] [Bug 148439] Business card alignment and spacing problem

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148439

Dieter  changed:

   What|Removed |Added

 CC||dgp-m...@gmx.de
 Whiteboard| QA:needsComment|

--- Comment #1 from Dieter  ---
Thank you for reporting the bug. I've compared LO 7.3 with LO 6.3 but couldn't
see a difference. Page margins are the same

> The paper has 2x5 55mm x 85mm cards, with 10mm margins top, bottom and
> between the columns and 15mm margins left and right.
> 
> With 7.0.0.0.alpha1 the spacing between the prints are 55x95, just as they
> should, but with 7.2.6.2 and 7.3.1.3 the spacing is 54x93.5mm.
> 
> With 7.2.6.2 the print starts 8mm down on the page and 3mm to the right,
> compared with 7.0.0.0.alpha1.

Couldn't find a way to see that settings in a dialog.

Tested with

Version: 7.3.3.1 (x64) / LibreOffice Community
Build ID: 1688991ca59a3ca1c74bc2176b274fba1b034928
CPU threads: 4; OS: Windows 10.0 Build 19044; UI render: Skia/Raster; VCL: win
Locale: de-DE (de_DE); UI: en-GB
Calc: CL


BTW:
Why do you work with sections? have you created file with File -> New ->
Labels?

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

[Libreoffice-ux-advise] [Bug 148447] Replace All in Writer comments

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148447

Heiko Tietze  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
 CC|libreoffice-ux-advise@lists |heiko.tietze@documentfounda
   |.freedesktop.org|tion.org
   Keywords|needsUXEval |

--- Comment #2 from Heiko Tietze  ---
Don't see a reason why Replace All shouldn't be available. The opposite is true
from the UX POV.

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

[Libreoffice-bugs] [Bug 135978] Undo deletes images not even inside the scope of changes (track & changes enabled)

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135978

--- Comment #11 from Commit Notification 
 ---
Michael Stahl committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/98ae340307786c8fe18addc3714c9b859fdf12dd

tdf#135978 sw_redlinehide: recreate fly frames anchored to subsequent nodes

It will be available in 7.4.0.

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

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

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

[Libreoffice-bugs] [Bug 144709] Crash in: SwTextShell::Execute(SfxRequest &) New

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144709

--- Comment #4 from QA Administrators  ---
Dear Michael Dewsbury,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 148751] [UI] Text toolbar is not in View - Toolbar menu and cannot be displayed

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148751

--- Comment #2 from Rafael Lima  ---
The reason why this toolbar is hidden is because its property
"HideFromToolbarMenu" is set to True in DrawWindowState.xcu. Changing this
property to false will show the toolbar again.

See
https://opengrok.libreoffice.org/xref/core/officecfg/registry/data/org/openoffice/Office/UI/DrawWindowState.xcu?r=4f756024#618

This bug is very simple to fix... however I wonder if there's any special
reason why this toolbar was explicitly hidden from the tool bar.

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

[Libreoffice-bugs] [Bug 61357] DOC import: Equation numbering missing. DATA LOSS when saving.

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61357

--- Comment #13 from QA Administrators  ---
Dear A.S.,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 140066] Undo of 'as character' produces wrong results (DOCX)

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140066

--- Comment #7 from Telesto  ---
(In reply to raal from comment #6)
Still repro

Steps to Reproduce:
1. Open the attached file
2. Save as DOCX
2. File reload (Lacking in Comment 0)
3. Select frame figure 1
4. Change anchor to 'as character' 
5. Undo

Version: 7.4.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 4659fc2f0a7223a89446edff0b77e58758b5edf5
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: en-US (nl_NL); UI: en-US
Calc: CL

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

[Libreoffice-bugs] [Bug 131917] Export of text introduces line break

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131917

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 130241] FILEOPEN DOCX: Writer does not display custom non-existing field names (Ctrl+Ff9 in LO and Alt+F9 in MSO)

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130241

Timur  changed:

   What|Removed |Added

Summary|FILEOPEN DOCX: Writer does  |FILEOPEN DOCX: Writer does
   |not display all field names |not display custom
   |(seen with Ctrl+Ff9 in LO   |non-existing field names
   |and Alt+F9 in MSO)  |(Ctrl+Ff9 in LO and Alt+F9
   ||in MSO)

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

[Libreoffice-bugs] [Bug 148764] New: Icon themes need to include metadata and different variants in one package

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148764

Bug ID: 148764
   Summary: Icon themes need to include metadata and different
variants in one package
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mikekagan...@hotmail.com
CC: caol...@redhat.com,
heiko.tie...@documentfoundation.org,
kain...@gmail.com, riz...@libreoffice.org
Blocks: 106228

Current icon themes are packed in infinitely naïve way: a zipped directory
(which name consisting of a single "word" (!) makes its UI name (tdf#141000 is
an example of a palliative attempt to make it somehow work)) filled with tons
of sub-directories, image files, and a "links.txt" mapping those images to
internal resource names - but no metadata like true name, version, or icon
variants.

This makes many things impossible. You can't have normal names (e.g., some
characters are prohibited in file names on many FS); you can't have versioning;
you can't make themes support dynamically changing environments (switching
night mode, dark mode, different resolutions, etc.) which is common today - the
resolution may change when a window moves from one monitor to another, and
day/night or light/dark mode may change depending on time of the day. Icon
themes get multiple items in the View->Icon Style list: Breeze; Breeze (SVG +
dark); Breeze (SVG); Breeze (dark) ...

The normal icon theme should:
1. Include normal metadata that would allow to have normal naming independent
on the filename, versioning, integrity hash, copyright, etc.;
2. Allow to contain several variants (e.g. light and dark), allowing
application to choose relevant variant of the user-chosen theme automatically
depending on environment;
3. In each variant, allow to have multiple resolutions (ideally, a vector - SVG
- and optionally several pre-rendered bitmap variants for typical and/or
hard-to-render-automatically resolutions);
4. Each resource should also allow to have several sizes (to minimize
proliferation of resource variants, when we need "small" and "large" resources
e.g. for toolbars depending on user's toolbar button size preference).

There needs to be a re-design of the icon theme packing concept/design to
include these (and maybe others?) considerations.


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 148432] Navigator never presents an RTL tree for RTL documents

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148432

--- Comment #2 from Heiko Tietze  ---
Eyal, how do trees look like in other RTL applications? For example the file
browser.

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

[Libreoffice-bugs] [Bug 148768] New: Test

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148768

Bug ID: 148768
   Summary: Test
   Product: LibreOffice
   Version: 7.4.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: heiko.tie...@documentfoundation.org
CC: heiko.tie...@documentfoundation.org,
libreoffice-ux-adv...@lists.freedesktop.org,
xiscofa...@libreoffice.org

Just testing mail delivery

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

[Libreoffice-ux-advise] [Bug 148728] Should Format -> Character/ Paragraph entry's not be called Paragraph/Character Direct Formatting

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148728

Timur  changed:

   What|Removed |Added

 Resolution|--- |WONTFIX
 Status|UNCONFIRMED |RESOLVED

--- Comment #5 from Timur  ---
I guess we may close this.

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

[Libreoffice-bugs] [Bug 148730] UI: Unexpected tristate situation in Format -> Paragraph -> Text flow tab

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148730

--- Comment #2 from Mike Kaganski  ---
(In reply to Heiko Tietze from comment #1)

I'd suspect a regression, which Caolan could be interested to look at. Could
you please check?

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

[Libreoffice-bugs] [Bug 144709] Crash in: SwTextShell::Execute(SfxRequest &) New

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=144709

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 148446] LO Writer randomly restarts automatic numbering

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148446

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 118320] Add support for Windows 10/11 dark mode

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118320

--- Comment #105 from Pedro  ---
Agreed. And move it out of experimental.

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

[Libreoffice-bugs] [Bug 148766] New: Hidden sheets are inaccessible to VBA scripts

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148766

Bug ID: 148766
   Summary: Hidden sheets are inaccessible to VBA scripts
   Product: LibreOffice
   Version: 7.4.0.0 alpha0+ Master
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: davidyang...@gmail.com

Description:
The second installment in the series of using a spreadsheet game to assess VBA
support in Libreoffice. Previous chain at
https://bugs.documentfoundation.org/show_bug.cgi?id=148651, like before, the
game can be downloaded at https://carywalkin.itch.io/arenaxlsm

Judging by its usage in the file, it appears that VBA allows you to look at the
contents of hidden sheets, which the game uses to reference tables of data
hidden from the user. I've been able to simplify this behavior into a file that
consistently reproduces the issue, which contains the following:


Option VBASupport 1

Sub Main
Worksheets("Sheet2").Activate
msgbox(Range("A1").Value)
Selection.ClearContents
End Sub


Where Sheet2 can be a hidden sheet. When Sheet2 is hidden, msgbox() displays
nothing. When Sheet2 is not hidden, msgbox() displays the value in cell A1. The
file will be attached here. It seems like VBA allows activation and inspection
of a hidden sheet even if it's visibly hidden to the user.

Steps to Reproduce:
1. Run the macro in the attached file.
2. Hide sheet 2
3. Run the macro again

Actual Results:
The value in cell A1 of sheet2 should be printed both times.

Expected Results:
The value in cell A1 is only printed the first time.


Reproducible: Always


User Profile Reset: Yes



Additional Info:
If someone wants to see this in action in the file that I discovered this, the
game can be downloaded at https://carywalkin.itch.io/arenaxlsm. In order to get
to the point where this can be observed, reproduction step 3 from the previous
report still needs to be done, delete every line in Sub RestoreKeys() that
raises an error, I deleted the lines for characters [,'.pyu]. Still unable to
find an explanation for this bug. Then, run a find and replace to delete all
instances of "VBA." from the file. This step may or may not still be relevant
depending on what action is taken from the discussion in the previous report.

This issue can be bypassed by showing the monsterDB sheet. After this we get to
see some strange "rendering" (not rendering on the libreoffice level) issues
where Selection.ClearContents fails to work and Range().Interior.Color seems to
non-deterministically fail, but need to do some more investigating on those
before I can make a report on them.

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

[Libreoffice-bugs] [Bug 148743] UI Issue: TOC->Edit Index->Assign Styles; Styles aren't sorted.

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148743

Telesto  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #3 from Telesto  ---
Confirm
Version: 7.4.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 4659fc2f0a7223a89446edff0b77e58758b5edf5
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: en-US (nl_NL); UI: en-US
Calc: CL

1.  Open the attached `ODT` file.
2. Place cursor on the TOC, Right-Click, Edit Index -> Assign Styles 
3. Type Tab
4. Press Assign Styles
5. Scroll through the list.. notice content not being sorted.. 
Compare with Styles tab -> and the list with paragraph styles

Also there indeed at sorting triangle..

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

[Libreoffice-ux-advise] [Bug 148728] Should Format -> Character/ Paragraph entry's not be called Paragraph/Character Direct Formatting

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148728

Mike Kaganski  changed:

   What|Removed |Added

 Resolution|WONTFIX |NOTABUG

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

[Libreoffice-bugs] [Bug 148766] Hidden sheets are inaccessible to VBA scripts

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148766

--- Comment #1 from David Yang  ---
Created attachment 179756
  --> https://bugs.documentfoundation.org/attachment.cgi?id=179756=edit
Minimal reproducing file

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

[Libreoffice-bugs] [Bug 95555] FILEOPEN RTF Frames overlap in document created by Oracle Reports

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=9

--- Comment #16 from Timur  ---
Repro 7.4+.

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

[Libreoffice-bugs] [Bug 148728] Should Format -> Character/ Paragraph entry's not be called Paragraph/Character Direct Formatting

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148728

Mike Kaganski  changed:

   What|Removed |Added

 Resolution|WONTFIX |NOTABUG

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

[Libreoffice-bugs] [Bug 131642] Fileopen DOC: non-existing table added in between because of Wrap Around multiple tables

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131642

Timur  changed:

   What|Removed |Added

Summary|Fileopen DOC: non-existing  |Fileopen DOC: non-existing
   |table added in between  |table added in between
   ||because of Wrap Around
   ||multiple tables

--- Comment #5 from Timur  ---
Repro 7.4+. 
Emptty table is multiple Wrap Around tables and they make a confusion.

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

[Libreoffice-bugs] [Bug 148769] UI: Increasing the size of the Assign Styles dialog doesn't adapt size of elements within the window

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148769

Telesto  changed:

   What|Removed |Added

  Component|Android Viewer  |UI
Version|7.4.0.0 alpha0+ Master  |6.2.0.3 release
   Keywords||bibisectRequest, regression

--- Comment #1 from Telesto  ---
Also in
6.4

and in
Version: 6.2.9.0.0+ (x86)
Build ID: 5f01fe15eb2661f1f9ce12d1d99dc2a705b462ee
CPU threads: 4; OS: Windows 6.3; UI render: default; VCL: win; 
Locale: nl-NL (nl_NL); UI-Language: en-US
Calc: CL

still ok with
Version: 6.0.6.0.0+
Build ID: c30963b8b4bbbe42a24b97aafa161eff9d7ccdd4
CPU threads: 4; OS: Windows 6.3; UI render: default; 
Locale: nl-NL (nl_NL); Calc: CL

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

[Libreoffice-bugs] [Bug 148654] Audio from interaction click does not stop when exiting slideshow (gtk3-only)

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148654

Caolán McNamara  changed:

   What|Removed |Added

 Status|UNCONFIRMED |ASSIGNED
 Ever confirmed|0   |1
   Assignee|libreoffice-b...@lists.free |caol...@redhat.com
   |desktop.org |

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

[Libreoffice-bugs] [Bug 148769] New: UI: Increasing the size of the Assign Styles dialog doesn't adapt size of elements within the window

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148769

Bug ID: 148769
   Summary: UI: Increasing the size of the Assign Styles dialog
doesn't adapt size of elements within the window
   Product: LibreOffice
   Version: 7.4.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Android Viewer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
UI: Increasing the size of the Assign Styles dialog doesn't adapt size of
elements within the window

Steps to Reproduce:
1. Open attachment 179740
2. Place cursor on the TOC, Right-Click, Edit Index -> Assign Styles 
3. Type Tab
4. Press Assign Styles
5. Drag a corner of the window the expand it

Actual Results:
Dialog increases in size, but not the content

Expected Results:
not able to increase or adapt the size


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.1.0.0.beta1+ (x64)
Build ID: f9fab4203c1aa0b9a3f27ce2713b6d5addc7df19
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: nl-NL (nl_NL); UI: en-US
Calc: CL

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

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

2022-04-25 Thread Caolán McNamara (via logerrit)
 hwpfilter/source/hwpreader.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 8ad7603c7c6ba327ff1e836e023c2ad0ab529d53
Author: Caolán McNamara 
AuthorDate: Mon Apr 25 11:09:11 2022 +0100
Commit: Caolán McNamara 
CommitDate: Mon Apr 25 14:15:12 2022 +0200

vector is a little faster than deque here

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

diff --git a/hwpfilter/source/hwpreader.cxx b/hwpfilter/source/hwpreader.cxx
index 56e54d5920c0..3560d6d4b334 100644
--- a/hwpfilter/source/hwpreader.cxx
+++ b/hwpfilter/source/hwpreader.cxx
@@ -880,7 +880,7 @@ void HwpReader::makeMasterStyles()
 
 int i;
 int nMax = hwpfile.getMaxSettedPage();
-std::deque aSet(nMax + 1);
+std::vector aSet(nMax + 1);
 
 for( i = 0 ; i < hwpfile.getPageNumberCount() ; i++ )
 {


[Libreoffice-bugs] [Bug 148756] Document Type in Options dialog should correspond to the application that opened the dialog

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148756

Heiko Tietze  changed:

   What|Removed |Added

   Keywords|needsUXEval |
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=11
   ||8330
 Blocks||112724
 CC|libreoffice-ux-advise@lists |heiko.tietze@documentfounda
   |.freedesktop.org|tion.org

--- Comment #2 from Heiko Tietze  ---
Yes, Pete is right. The connected dropdown lists are not intuitive and to
initialize it per module is an improvement.

Some types are yet not associated with a specific module, namely HTML and
Master document. Not a big deal. What bothers me more is what we show when
started without module context meaning from the start center. Just the first
entry as today, I'd say. 

And I also struggle with "Text document" thinking of ASCII rather than
formatted text. My proposal is to rename the module specific entries with their
module name: "Text Documents (Writer)", "Spreadsheets (Calc)"... similar to bug
118330 and bug 118435.

It would also be an improvement if the arrangement of the two controls indicate
the relationship. Might be a bit too large if we place the two next to each
other, though.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112724
[Bug 112724] [META] Options dialog's Load/Save settings bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-ux-advise] [Bug 148756] Document Type in Options dialog should correspond to the application that opened the dialog

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148756

Heiko Tietze  changed:

   What|Removed |Added

   Keywords|needsUXEval |
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=11
   ||8330
 Blocks||112724
 CC|libreoffice-ux-advise@lists |heiko.tietze@documentfounda
   |.freedesktop.org|tion.org

--- Comment #2 from Heiko Tietze  ---
Yes, Pete is right. The connected dropdown lists are not intuitive and to
initialize it per module is an improvement.

Some types are yet not associated with a specific module, namely HTML and
Master document. Not a big deal. What bothers me more is what we show when
started without module context meaning from the start center. Just the first
entry as today, I'd say. 

And I also struggle with "Text document" thinking of ASCII rather than
formatted text. My proposal is to rename the module specific entries with their
module name: "Text Documents (Writer)", "Spreadsheets (Calc)"... similar to bug
118330 and bug 118435.

It would also be an improvement if the arrangement of the two controls indicate
the relationship. Might be a bit too large if we place the two next to each
other, though.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112724
[Bug 112724] [META] Options dialog's Load/Save settings bugs and enhancements
-- 
You are receiving this mail because:
You are on the CC list for the bug.

[Libreoffice-bugs] [Bug 129585] FILESAVE: DOC: Table is splitted after RT

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129585

Xisco Faulí  changed:

   What|Removed |Added

 Resolution|WORKSFORME  |FIXED

--- Comment #5 from Xisco Faulí  ---
This issue got fixed by

author  Justin Luth  2020-05-25 13:40:09 +0300
committer   Miklos Vajna 2020-05-25 14:59:45
+0200
commit  42a37f8ce27ad8fca222f50b712a8fed52dbda95 (patch)
treefe195e450f32ad25b03d9ad683f2ab0d00f8fcba
parent  39df467cd67ca7798e814d6c57f8bfd6791fc0ef (diff)
Revert "tdf#104017 DOC export: be less aggressive with merging page styles"

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

[Libreoffice-bugs] [Bug 112724] [META] Options dialog's Load/Save settings bugs and enhancements

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112724

Heiko Tietze  changed:

   What|Removed |Added

 Depends on||148756


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=148756
[Bug 148756] Document Type in Options dialog should correspond to the
application that opened the dialog
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 118330] [NEWHELP] Change of terminology in CONTENTS sidebar

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118330

Heiko Tietze  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 148743] UI Issue: TOC->Edit Index->Assign Styles; Styles aren't sorted.

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148743

Telesto  changed:

   What|Removed |Added

 CC||tele...@surfxs.nl
Version|7.3.2.2 release |7.1.0.3 release
   Keywords||bibisectRequest, regression

--- Comment #4 from Telesto  ---
Also in
Version: 7.1.0.0.beta1+ (x64)
Build ID: f9fab4203c1aa0b9a3f27ce2713b6d5addc7df19
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: nl-NL (nl_NL); UI: en-US
Calc: CL

not in 
6.4

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

[Libreoffice-bugs] [Bug 118962] "Tab position relative to paragraph style indent" issues in ToC where tab stop position less than “before text”

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118962

--- Comment #7 from Timur  ---
Repro 7.4+.

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

[Libreoffice-bugs] [Bug 148661] LibreOffice Import Dialog not working

2022-04-25 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=148661

Timur  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=14
   ||7876
 Resolution|WORKSFORME  |FIXED

--- Comment #5 from Timur  ---
Yes, different aspect of Import dialog problem although this one appears with
both OS and LO dialogs, all fixed now in 7.4+ with 
https://git.libreoffice.org/core/commit/618d40799d25474c48d984ce1d52b0f08f220958
 and backported to 7.3.3.

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

[Libreoffice-commits] core.git: include/svx sw/inc

2022-04-25 Thread Miklos Vajna (via logerrit)
 include/svx/svxids.hrc |   10 +-
 sw/inc/cmdid.h |2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

New commits:
commit 70c8e6abc0a4ed4a2c7a948ee206ba9d4cffd22b
Author: Miklos Vajna 
AuthorDate: Mon Apr 25 12:39:22 2022 +0200
Commit: Miklos Vajna 
CommitDate: Mon Apr 25 13:47:42 2022 +0200

sw: make it easier to look up an uno command from a slot id

This way if I see a slot id 20456, then searching with

git grep define.*20400 include/ */inc

finds FN_FORMAT, and searching with

git grep FN_FORMAT.*56 include/ */inc

finds FN_FORMAT_FRAME_DLG.

Change-Id: Ibda8b131f73c81221569618cda33e52b03448feb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133374
Reviewed-by: Miklos Vajna 
Tested-by: Jenkins

diff --git a/include/svx/svxids.hrc b/include/svx/svxids.hrc
index 4f4c07f2e2d5..d50be073c40d 100644
--- a/include/svx/svxids.hrc
+++ b/include/svx/svxids.hrc
@@ -174,7 +174,7 @@ class XFillGradientItem;
 
 // Writer IDs
 
-#define FN_EDIT (SID_SW_START +  100)
+#define FN_EDIT (SID_SW_START +  100) // 20100
 #define FN_NUM_BULLET_OFF   (FN_EDIT + 37)  // numbering off
 #define FN_NUM_BULLET_ON(FN_EDIT + 38)  // numbering with bullets on
 #define FN_NUM_NUMBERING_ON (FN_EDIT + 44)  // numbering on
@@ -182,7 +182,7 @@ class XFillGradientItem;
 #define FN_NUM_NUM_RULE_INDEX   (FN_EDIT + 121)
 #define FN_OUTLINE_RULE_INDEX   (FN_EDIT + 122)
 
-#define FN_INSERT   (SID_SW_START +  300)
+#define FN_INSERT   (SID_SW_START +  300) // 20300
 #define FN_DELETE_BOOKMARK  (FN_INSERT + 1)
 #define FN_INSERT_BREAK (FN_INSERT + 3)
 #define FN_INSERT_SOFT_HYPHEN   (FN_INSERT + 43)/* optional hyphen */
@@ -191,12 +191,12 @@ class XFillGradientItem;
 #define FN_INSERT_HARDHYPHEN(FN_INSERT + 85)/* hyphen without break*/
 
 //!! be aware to not overwrite something that is used in sw/inc/cmdid.h 
already !!
-#define FN_FORMAT   (SID_SW_START +  400)
+#define FN_FORMAT   (SID_SW_START +  400) // 20400
 #define FN_FORMAT_RESET (FN_FORMAT + 69)
 
-#define FN_EXTRA(SID_SW_START +  600)
+#define FN_EXTRA(SID_SW_START +  600) // 20600
 
-#define FN_SELECTION(SID_SW_START +  900)
+#define FN_SELECTION(SID_SW_START +  900) // 20900
 #define FN_END_OF_DOCUMENT  (FN_SELECTION +  8)
 #define FN_START_DOC_DIRECT (FN_SELECTION + 78)
 #define FN_END_DOC_DIRECT   (FN_SELECTION + 79)
diff --git a/sw/inc/cmdid.h b/sw/inc/cmdid.h
index df1321bb00e9..29adc6a580d6 100644
--- a/sw/inc/cmdid.h
+++ b/sw/inc/cmdid.h
@@ -33,7 +33,7 @@ class SwUINumRuleItem;
 
 #define FN_FILE SID_SW_START
 //#define FN_EDIT (SID_SW_START +  100) defined in svxids.hrc
-#define FN_VIEW (SID_SW_START +  200)
+#define FN_VIEW (SID_SW_START +  200) // 20200
 //#define FN_INSERT   (SID_SW_START +  300) defined in svxids.hrc
 //#define FN_FORMAT   (SID_SW_START +  400) defined in svxids.hrc
 //#define FN_EXTRA(SID_SW_START +  600) defined in svxids.hrc


<    1   2   3   4   >