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

2020-11-27 Thread Noel (via logerrit)
 sw/source/filter/xml/xmltbli.cxx |  128 ---
 sw/source/filter/xml/xmltbli.hxx |4 -
 2 files changed, 54 insertions(+), 78 deletions(-)

New commits:
commit e46be5018d78097f9cd75a36992a2af88652fe4c
Author: Noel 
AuthorDate: Fri Nov 27 15:27:33 2020 +0200
Commit: Noel Grandin 
CommitDate: Sat Nov 28 08:49:59 2020 +0100

fastparser in SwXMLTableContext

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

diff --git a/sw/source/filter/xml/xmltbli.cxx b/sw/source/filter/xml/xmltbli.cxx
index e3061074329d..e26da2ab50b0 100644
--- a/sw/source/filter/xml/xmltbli.cxx
+++ b/sw/source/filter/xml/xmltbli.cxx
@@ -714,8 +714,8 @@ class SwXMLTableColContext_Impl : public SvXMLImportContext
 public:
 
 SwXMLTableColContext_Impl(
-SwXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLName,
-const Reference< xml::sax::XAttributeList > & xAttrList,
+SwXMLImport& rImport,
+const Reference< xml::sax::XFastAttributeList > & xAttrList,
 SwXMLTableContext *pTable );
 
 SwXMLImport& GetSwImport() { return 
static_cast(GetImport()); }
@@ -724,45 +724,43 @@ public:
 }
 
 SwXMLTableColContext_Impl::SwXMLTableColContext_Impl(
-SwXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLName,
-const Reference< xml::sax::XAttributeList > & xAttrList,
+SwXMLImport& rImport,
+const Reference< xml::sax::XFastAttributeList > & xAttrList,
 SwXMLTableContext *pTable ) :
-SvXMLImportContext( rImport, nPrfx, rLName ),
+SvXMLImportContext( rImport ),
 xMyTable( pTable )
 {
 sal_uInt32 nColRep = 1;
 OUString aStyleName, aDfltCellStyleName;
 
-sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0;
-for( sal_Int16 i=0; i < nAttrCount; i++ )
+for( auto  : sax_fastparser::castToFastAttributeList( xAttrList ) )
 {
-const OUString& rAttrName = xAttrList->getNameByIndex( i );
-
-OUString aLocalName;
-const sal_uInt16 nPrefix =
-GetImport().GetNamespaceMap().GetKeyByAttrName( rAttrName,
- );
-const OUString& rValue = xAttrList->getValueByIndex( i );
-if( XML_NAMESPACE_TABLE == nPrefix )
+OUString sValue = aIter.toString();
+switch (aIter.getToken())
 {
-if( IsXMLToken( aLocalName, XML_STYLE_NAME ) )
-aStyleName = rValue;
-else if( IsXMLToken( aLocalName, XML_NUMBER_COLUMNS_REPEATED ) )
+case XML_ELEMENT(TABLE, XML_STYLE_NAME):
+aStyleName = sValue;
+break;
+case XML_ELEMENT(TABLE, XML_NUMBER_COLUMNS_REPEATED):
 {
-nColRep = static_cast(std::max(1, 
rValue.toInt32()));
+nColRep = static_cast(std::max(1, 
sValue.toInt32()));
 if (nColRep > 256)
 {
 SAL_INFO("sw.xml", "ignoring huge 
table:number-columns-repeated " << nColRep);
 nColRep = 1;
 }
+break;
 }
-else if( IsXMLToken( aLocalName, XML_DEFAULT_CELL_STYLE_NAME ) )
-aDfltCellStyleName = rValue;
-}
-else if ( (XML_NAMESPACE_XML == nPrefix) &&
- IsXMLToken( aLocalName, XML_ID ) )
-{
-//FIXME where to put this??? columns do not actually exist in writer...
+case XML_ELEMENT(TABLE, XML_DEFAULT_CELL_STYLE_NAME):
+aDfltCellStyleName = sValue;
+break;
+case XML_ELEMENT(XML, XML_ID):
+{
+//FIXME where to put this??? columns do not actually exist in 
writer...
+break;
+}
+default:
+XMLOFF_WARN_UNKNOWN("sw", aIter);
 }
 }
 
@@ -803,13 +801,11 @@ class SwXMLTableColsContext_Impl : public 
SvXMLImportContext
 public:
 
 SwXMLTableColsContext_Impl(
-SwXMLImport& rImport, sal_uInt16 nPrfx,
-const OUString& rLName,
+SwXMLImport& rImport,
 SwXMLTableContext *pTable );
 
-virtual SvXMLImportContextRef CreateChildContext(
-sal_uInt16 nPrefix, const OUString& rLocalName,
-const Reference< xml::sax::XAttributeList > & xAttrList ) override;
+virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL 
createFastChildContext(
+sal_Int32 Element, const css::uno::Reference< 
css::xml::sax::XFastAttributeList > & xAttrList ) override;
 
 SwXMLImport& GetSwImport() { return 
static_cast(GetImport()); }
 };
@@ -817,26 +813,23 @@ public:
 }
 
 SwXMLTableColsContext_Impl::SwXMLTableColsContext_Impl(
-SwXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLName,
+

[Libreoffice-bugs] [Bug 138102] FILEOPEN DOCX Continous section break imported with extra paragraph if the first document node is table

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138102

Justin L  changed:

   What|Removed |Added

 CC||jl...@mail.com

--- Comment #7 from Justin L  ---
Created attachment 167634
  --> https://bugs.documentfoundation.org/attachment.cgi?id=167634=edit
sectionBreak.docx: should be only 2 pages

This is obviously a bRemove issue.
I thought it would be as simple as
- && !m_pImpl->GetIsDummyParaAddedForTableInSection()
+ && !(m_pImpl->GetIsDummyParaAddedForTableInSection() &&
m_pImpl->GetIsFirstParagraphInSection())

But it's not.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 137405] [Collabora Office for iOS] can't understand the version without opening a file.

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137405

baffclan  changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED
   See Also||https://github.com/Collabor
   ||aOnline/online/issues/808

--- Comment #2 from baffclan  ---
(In reply to Aron Budea from comment #1)
> Issues related to the Collabora Office iOS app should be reported here:
> https://github.com/CollaboraOnline/online/issues
> 
> Please open an issue there.

Aron Budea-san,
Thanks for information.
I filed this issue on github.
 https://github.com/CollaboraOnline/online/issues/808

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138122] LibreOffice text blurry on Retina displays on macOS 11

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138122

--- Comment #74 from Telesto  ---
(In reply to Alexander Barris from comment #73)
> I can confirm the latest OpenOffice 4.1.8 works fine. Which old version of
> LibreOffice should be tested?

Not having really systematic approach, but lets say
https://downloadarchive.documentfoundation.org/libreoffice/old/5.0.0.5/mac/x86_64/

if that one is also bad
https://downloadarchive.documentfoundation.org/libreoffice/old/4.2.0.4/mac/x86_64/
(there are no older x64 builds..)

if 5.0.0.5 being good, take 6.0.0.3

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138505] FILEOPEN XLSX: Experimental Feature: Cells with revised built-in styles reverted back to default style formats

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138505

Kevin Suo  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108560] Pasting or editing large amount of multi-line text into a cell result in unusable Calc

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108560

Buovjaga  changed:

   What|Removed |Added

 Status|REOPENED|NEW

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

2020-11-27 Thread Noel (via logerrit)
 sc/source/filter/xml/xmlconti.cxx |   28 
 sc/source/filter/xml/xmlconti.hxx |4 
 2 files changed, 32 deletions(-)

New commits:
commit 19382197332ee94b4725160267e987b447b49245
Author: Noel 
AuthorDate: Fri Nov 27 15:12:34 2020 +0200
Commit: Noel Grandin 
CommitDate: Sat Nov 28 08:33:19 2020 +0100

fastparser in ScXMLContentContext

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

diff --git a/sc/source/filter/xml/xmlconti.cxx 
b/sc/source/filter/xml/xmlconti.cxx
index 1c5d55292fdc..871cabf888be 100644
--- a/sc/source/filter/xml/xmlconti.cxx
+++ b/sc/source/filter/xml/xmlconti.cxx
@@ -46,34 +46,6 @@ ScXMLContentContext::~ScXMLContentContext()
 {
 }
 
-SvXMLImportContextRef ScXMLContentContext::CreateChildContext( sal_uInt16 
nPrefix,
-const OUString& rLName,
-const 
css::uno::Reference& xAttrList )
-{
-if ((nPrefix == XML_NAMESPACE_TEXT) && IsXMLToken(rLName, XML_S))
-{
-sal_Int32 nRepeat(0);
-sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0;
-for( sal_Int16 i=0; i < nAttrCount; ++i )
-{
-const OUString& sAttrName(xAttrList->getNameByIndex( i ));
-const OUString& sAttrValue(xAttrList->getValueByIndex( i ));
-OUString aLocalName;
-sal_uInt16 nPrfx = 
GetScImport().GetNamespaceMap().GetKeyByAttrName(
-sAttrName,  );
-if ((nPrfx == XML_NAMESPACE_TEXT) && IsXMLToken(aLocalName, XML_C))
-nRepeat = sAttrValue.toInt32();
-}
-if (nRepeat)
-for (sal_Int32 j = 0; j < nRepeat; ++j)
-sValue.append(' ');
-else
-sValue.append(' ');
-}
-
-return new SvXMLImportContext( GetImport(), nPrefix, rLName );
-}
-
 css::uno::Reference< css::xml::sax::XFastContextHandler > 
ScXMLContentContext::createFastChildContext(
 sal_Int32 nElement, const css::uno::Reference< 
css::xml::sax::XFastAttributeList >& xAttrList )
 {
diff --git a/sc/source/filter/xml/xmlconti.hxx 
b/sc/source/filter/xml/xmlconti.hxx
index 7fd2cb0274db..2eb568a27e24 100644
--- a/sc/source/filter/xml/xmlconti.hxx
+++ b/sc/source/filter/xml/xmlconti.hxx
@@ -36,10 +36,6 @@ public:
 
 virtual ~ScXMLContentContext() override;
 
-virtual SvXMLImportContextRef CreateChildContext( sal_uInt16 nPrefix,
- const OUString& rLocalName,
- const 
css::uno::Reference& xAttrList ) override;
-
 virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL 
createFastChildContext(
 sal_Int32 nElement, const css::uno::Reference< 
css::xml::sax::XFastAttributeList >& xAttrList ) override;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 137923] "Clone Formatting" disabled on some elements which can take cloned formats

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137923

--- Comment #3 from pavlog  ---
I've tried to repro it with different kinds of arrows but no success. If it's
no Linux connected issue it will help if you could specify the exact symbols
you have problem with. So now I can't reproduce it in my environment.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138417] Crash when customizing sidebar tab bar

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138417

--- Comment #3 from Jim Raykowski  ---
I am able to repro this without experimental features enabled using: 

Version: 7.2.0.0.alpha0+ (x64)
Build ID: 32fdb8eb3506bc8dcf013cc713fe8e5debceb940
CPU threads: 4; OS: Windows 10.0 Build 19041; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded

I had to choose three decks before crash occurred.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138526] Image missing for new Formats Only option

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138526

--- Comment #1 from Rizal Muttaqin  ---
(In reply to Heiko Tietze from comment #0)
> With bug 134802 a new preset was introduced that inserts "Formats Only".
> Please add the image as sc/res/paste_formats_only.png

Please tell me what's is Formats Only here? Is it supposed to be number
formatting  (date, currency, etc) or more like style formatting (color, bold,
etc)?

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138464] FORMCONTROLS: Value min and value max aren't saved in numeric fields

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138464

Justin L  changed:

   What|Removed |Added

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

--- Comment #1 from Justin L  ---
I tested with Ubuntu and bibisect-linux-64-7.1. using SAL_USE_VCLPLUGIN=gen
instdir/program/soffice and reproduced the problem. It is fixed in 7.0.4.

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

2020-11-27 Thread Noel (via logerrit)
 xmloff/source/draw/ximpstyl.cxx |   23 +++
 xmloff/source/draw/ximpstyl.hxx |5 -
 2 files changed, 7 insertions(+), 21 deletions(-)

New commits:
commit abdf72c6dc8e021de29459f129e39d6ff279c05c
Author: Noel 
AuthorDate: Fri Nov 27 15:03:56 2020 +0200
Commit: Noel Grandin 
CommitDate: Sat Nov 28 07:46:35 2020 +0100

fastparser in SdXMLMasterStylesContext

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

diff --git a/xmloff/source/draw/ximpstyl.cxx b/xmloff/source/draw/ximpstyl.cxx
index 8cf89f450484..3a25c4c65027 100644
--- a/xmloff/source/draw/ximpstyl.cxx
+++ b/xmloff/source/draw/ximpstyl.cxx
@@ -1307,7 +1307,11 @@ css::uno::Reference< css::xml::sax::XFastContextHandler 
> SdXMLMasterStylesConte
 sal_Int32 nElement,
 const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList )
 {
-if( nElement == XML_ELEMENT(STYLE, XML_MASTER_PAGE) )
+if( nElement == XML_ELEMENT(DRAW, XML_LAYER_SET) )
+{
+return new SdXMLLayerSetContext( GetImport() );
+}
+else if( nElement == XML_ELEMENT(STYLE, XML_MASTER_PAGE) )
 {
 // style:masterpage inside office:styles context
 uno::Reference< drawing::XDrawPage > xNewMasterPage;
@@ -1357,24 +1361,11 @@ css::uno::Reference< css::xml::sax::XFastContextHandler 
> SdXMLMasterStylesConte
 }
 }
 }
+else
+XMLOFF_WARN_UNKNOWN_ELEMENT("xmloff", nElement);
 return nullptr;
 }
 
-SvXMLImportContextRef SdXMLMasterStylesContext::CreateChildContext(
-sal_uInt16 nPrefix,
-const OUString& rLocalName,
-const uno::Reference< xml::sax::XAttributeList >& /*xAttrList*/)
-{
-SvXMLImportContextRef xContext;
-
-if( (nPrefix == XML_NAMESPACE_DRAW) && IsXMLToken( rLocalName, 
XML_LAYER_SET ) )
-{
-xContext = new SdXMLLayerSetContext( GetImport() );
-}
-
-return xContext;
-}
-
 SdXMLHeaderFooterDeclContext::SdXMLHeaderFooterDeclContext(SvXMLImport& 
rImport,
 const css::uno::Reference< css::xml::sax::XFastAttributeList >& xAttrList)
 : SvXMLStyleContext( rImport )
diff --git a/xmloff/source/draw/ximpstyl.hxx b/xmloff/source/draw/ximpstyl.hxx
index a7eee862783c..cebb2f93c3bf 100644
--- a/xmloff/source/draw/ximpstyl.hxx
+++ b/xmloff/source/draw/ximpstyl.hxx
@@ -224,11 +224,6 @@ public:
 
 virtual css::uno::Reference< css::xml::sax::XFastContextHandler > SAL_CALL 
createFastChildContext(
 sal_Int32 nElement, const css::uno::Reference< 
css::xml::sax::XFastAttributeList >& AttrList ) override;
-
-virtual SvXMLImportContextRef CreateChildContext(
-sal_uInt16 nPrefix,
-const OUString& rLocalName,
-const css::uno::Reference< css::xml::sax::XAttributeList >& xAttrList 
) override;
 };
 
 // ,  and 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 138536] The "outside border" in Calc cannot be in a floating window.

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138536

bear32  changed:

   What|Removed |Added

 Attachment #167631|0   |1
is obsolete||

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108560] Pasting or editing large amount of multi-line text into a cell result in unusable Calc

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108560

Francewhoa  changed:

   What|Removed |Added

Summary|Pasting or editing  |Pasting or editing large
   |multi-line cells ranges |amount of multi-line text
   |from slow to unusable Calc  |into a cell result in
   ||unusable Calc

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138536] The "outside border" in Calc cannot be in a floating window.

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138536

--- Comment #2 from bear32  ---
Created attachment 167633
  --> https://bugs.documentfoundation.org/attachment.cgi?id=167633=edit
Operation Movie

Operation Movie(mpeg4)

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108560] Pasting or editing multi-line cells ranges from slow to unusable Calc

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108560

Francewhoa  changed:

   What|Removed |Added

 Attachment #134060|0   |1
is obsolete||

--- Comment #30 from Francewhoa 
 ---
Created attachment 167632
  --> https://bugs.documentfoundation.org/attachment.cgi?id=167632=edit
Screenshot---About_LibreOffice_7---Francewhoa---2020-11-27.jpg

Updated screenshot LO 7 "About"

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138536] The "outside border" in Calc cannot be in a floating window.

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138536

--- Comment #1 from bear32  ---
Created attachment 167631
  --> https://bugs.documentfoundation.org/attachment.cgi?id=167631=edit
Operation Movie

Operation Movie

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138536] New: The "outside border" in Calc cannot be in a floating window.

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138536

Bug ID: 138536
   Summary: The "outside border" in Calc cannot be in a floating
window.
   Product: LibreOffice
   Version: 7.0.3.1 release
  Hardware: x86-64 (AMD64)
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bear...@yahoo.co.jp

Description:
>From the "outer border" icon in Calc, the displayed menu can not be turned into
a floating window by dragging the mouse.

Steps to Reproduce:
1.Lancer LibreOffice Calc.
2.Click the "outer border" icon in the top toolbar.
3.Drag the "outer border" menu with the mouse.
4.Release the mouse button.

Actual Results:
The "outer border" does not remain as a floating window.

Expected Results:
"Outer border" becomes a floating window.


Reproducible: Always


User Profile Reset: Yes



Additional Info:
Attached is a movie of the operation screen. Please refer to that as well.

In addition to mac OS, the same phenomenon appears in WIndows 7 and Windows 10
environments.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 133481] LibreOffice opens a odt file when a spreadsheet is selected

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133481

Justin L  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 137683] TABLE FORMATTING: DOCX, Paragraph background color set to 'No Fill' not persisted on save

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137683

Justin L  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |jl...@mail.com
   |desktop.org |

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108560] Pasting or editing multi-line cells ranges from slow to unusable Calc

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108560

--- Comment #29 from Francewhoa 
 ---
Hello again all LO enthusiasts :) This is to confirm that this challenge is
still present with the recent LO Calc version 7.0.3.1. And also with both
versions 6.1.5 and 5.2.7. So I'm re-opening this ticket. Same challenge with
OpenGL deactivated or activated.

I'm the original author of this ticket. I tried to edit my ticket "Description"
but found no way to do this. Anybody know how to do this?
Meanwhile, this present Comment 29 cancels and replaces my original ticket
Description above. It is the same Description, but to facilitate collaboration,
this new Comment 29 is a clarified and updated Description of the challenge. I
also clarified the ticket title to: "Pasting or editing multi-line cells ranges
from slow to unusable Calc"

This challenge can be reproduce with 7.0.3.1, and 6.1.5, and 5.2.7. But could
not be reproduce with 4.2.
--- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- 



Challenge summary:

Using LibreOffice (LO) Calc, pasting large amount of multi-lines text into a
cell result in Calc hangs. In turn, all other LO applications hang. This global
hang ranges from seconds to minutes. This range depends mostly on the amount of
multi-lines text, and your CPU. In turn, Calc and all LO application are
unusable. Same challenge with editing cells with large amount of multi-lines
text.
--- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- 



Steps to reproduce challenge:

1. Using the following fresh installs:
__• LO: 
• Version: 7.0.3.1
• Build ID: 00(Build:1)
• CPU threads: 8; OS: Linux 5.8; UI render: default; VCL: gtk3
• Locale: en-CA (en_CA.UTF-8); UI: en-US
• Debian package version: 1:7.0.3-3_bpo10+1
• Calc: threaded
• OpenGL: Deactivated or activated. Same result.
__• Debian:
• Version: 10. Buster. 64-bit.
• Gnome: 3.30.2 with Wayland
• Kernel: 5.8.0-0.bpo.2-amd64 #1 SMP Debian 5.8.10-1~bpo10+1
(2020-09-26) x86_64 GNU/Linux
__• Hardware:
• Ram: 31GB. Only LO is open and active.
• Processor: Intel Core i7 @ 3.10 GHz
• CPU: 8

2. Create a fresh Calc spreadsheet. Optionally, use the spreadsheet attached to
this Comment 1 above. Spreadsheet is titled:
"calc_spreadsheet---before---Slow_Edit_Large_Cell---Francewhoa---2017-06-15.ods"

3. Using any text editor to you liking, such as GEdit:

__3.1. Open the text file attached to Comment 11 above. This file is
titled:
"lorem_ipsum---940_lines---5639_characters---Francewhoa---2017-06-17.txt"

__3.2. Copy all the text as is. Double check that your text editor does not
make any formatting operations on this text without notifying you. Most
importantly, the multi-lines text need to be kept as is. Not automatically
reformatted on one line. If unsure about this, I suggest to use a very small
and simple text editor. Such as GEdit.

5. Using LO Calc, using cell A1, double check that the cell is presently
configured with Calc defaults. Including, but not limited to, no text
formatting of any kind. Do not make any change to the cell.

6. Before you proceed with the next step below. Heads up that both the Calc and
all other LO applications will likely hang for an extended period of time.
Maybe for 15 minutes. During that period, all LO applications are not usable
and 100% of a CPU is permanently use. So before proceeding with the next step
below, I suggest to either use a virtual environment, or save all your valuable
opened documents. As it's likely that you will need to kill LO Calc to resume
using LO. Which risk to result in both valuable time lost and data lost.

7. Still using LO Calc, still using cell A1, paste the text as as plain text.

8. LO hangs. This is the FIRST challenge:
__• This hang ranges from seconds to minutes depending mostly on the number
of multi-lines text
__• During this hang, one CPU is running at 100%.
__• In my case, Calc needs 14 minutes to process this one simple paste
operation for this file
"lorem_ipsum---940_lines---5639_characters---Francewhoa---2017-06-17.txt"
__• After this hang the text is pasted
__• In this Comment 24 above, the attached spreadsheet shows the end result
after this step is done. The file is titled
"calc_spreadsheet---after---Slow_Edit_Large_Cell---Francewhoa---2020-11-27.ods"

9. Double click on this cell A1 to open it. LO hangs again. This is the SECOND
challenge. And so on. In other words, at each paste, or edit, this cell result
in a hang. Thus LO and all its application are unusable. Because at each
operation the hang returns. As of November 27th, 2020 we were able to reproduce
this challenge on multiple devices. With freshly installed LO ranging from
versions 5 to 7.

10. If somehow you're not able to reproduce this challenge, I suggest to double
that you use the same steps as above as is, 

[Libreoffice-bugs] [Bug 108560] Pasting or editing multi-line cells ranges from slow to unusable Calc

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108560

--- Comment #28 from Francewhoa 
 ---
Hello all :) I searched but found no way to edit my comment 27 above. Anybody
know how to do this?

Meanwhile comment 27 is obsolete. I'll add my updated comment with the fixed
typo to a new comment below.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 112128] [META] Cell edit mode bugs and enhancements

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112128
Bug 112128 depends on bug 108560, which changed state.

Bug 108560 Summary: Pasting or editing multi-line cells ranges from slow to 
unusable Calc
https://bugs.documentfoundation.org/show_bug.cgi?id=108560

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|WONTFIX |---

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108560] Pasting or editing multi-line cells ranges from slow to unusable Calc

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108560

Francewhoa  changed:

   What|Removed |Added

 Resolution|WONTFIX |---
 Status|RESOLVED|REOPENED

--- Comment #27 from Francewhoa 
 ---
Hello again all LO enthusiasts :) This is to confirm that this challenge is
still present with the recent LO Calc version 7.0.3.1. And also with both
versions 6.1.5 and 5.2.7. So I'm re-opening this ticket. Same challenge with
OpenGL deactivated or activated.

I'm the original author of this ticket. I tried to edit my ticket "Description"
but found no way to do this. Anybody know how to do this?
Meanwhile, this present comment 27 cancels and replaces my original ticket
Description above. It is the same Description, but to facilitate collaboration,
this new comment 27 is a clarified and updated Description of the challenge. I
also clarified the ticket title to: "Pasting or editing multi-line cells ranges
from slow to unusable Calc"

This challenge can be reproduce with 7.0.3.1, and 6.1.5, and 5.2.7. But could
not be reproduce with 4.2.
--- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- 



Challenge summary:

Using LibreOffice (LO) Calc, pasting large amount of multi-lines text into a
cell result in Calc hangs. In turn, all other LO applications hang. This global
hang ranges from seconds to minutes. This range depends mostly on the amount of
multi-lines text, and your CPU. In turn, Calc and all LO application are
unusable. Same challenge with editing cells with large amount of multi-lines
text.
--- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- 



Steps to reproduce challenge:

1. Using the following fresh installs:
__• LO: 
• Version: 7.0.3.1
• Build ID: 00(Build:1)
• CPU threads: 8; OS: Linux 5.8; UI render: default; VCL: gtk3
• Locale: en-CA (en_CA.UTF-8); UI: en-US
• Debian package version: 1:7.0.3-3_bpo10+1
• Calc: threaded
• OpenGL: Deactivated or activated. Same result.
__• Debian:
• Version: 10. Buster. 64-bit.
• Gnome: 3.30.2 with Wayland
• Kernel: 5.8.0-0.bpo.2-amd64 #1 SMP Debian 5.8.10-1~bpo10+1
(2020-09-26) x86_64 GNU/Linux
__• Hardware:
• Ram: 31GB. Only LO is open and active.
• Processor: Intel Core i7 @ 3.10 GHz
• CPU: 8

2. Create a fresh Calc spreadsheet. Optionally, use the spreadsheet attached to
this Comment 1 above. Spreadsheet is titled:
"calc_spreadsheet---before---Slow_Edit_Large_Cell---Francewhoa---2017-06-15.ods"

3. Using any text editor to you liking, such as GEdit:

__3.1. Open the text file attached to Comment 12 above. This file is
titled:
"lorem_ipsum---940_lines---5639_characters---Francewhoa---2017-06-17.txt"

__3.2. Copy all the text as is. Double check that your text editor does not
make any formatting operations on this text without notifying you. Most
importantly, the multi-lines text need to be kept as is. Not automatically
reformatted on one line. If unsure about this, I suggest to use a very small
and simple text editor. Such as GEdit.

5. Using LO Calc, using cell A1, double check that the cell is presently
configured with Calc defaults. Including, but not limited to, no text
formatting of any kind. Do not make any change to the cell.

6. Before you proceed with the next step below. Heads up that both the Calc and
all other LO applications will likely hang for an extended period of time.
Maybe for 15 minutes. During that period, all LO applications are not usable
and 100% of a CPU is permanently use. So before proceeding with the next step
below, I suggest to either use a virtual environment, or save all your valuable
opened documents. As it's likely that you will need to kill LO Calc to resume
using LO. Which risk to result in both valuable time lost and data lost.

7. Still using LO Calc, still using cell A1, paste the text as as plain text.

8. LO hangs. This is the FIRST challenge:
__• This hang ranges from seconds to minutes depending mostly on the number
of multi-lines text
__• During this hang, one CPU is running at 100%.
__• In my case, Calc needs 14 minutes to process this one simple paste
operation for this file
"lorem_ipsum---940_lines---5639_characters---Francewhoa---2017-06-17.txt"
__• After this hang the text is pasted
__• In this comment 24 above, the attached spreadsheet shows the end result
after this step is done. The file is titled
"calc_spreadsheet---after---Slow_Edit_Large_Cell---Francewhoa---2020-11-27.ods"

9. Double click on this cell A1 to open it. LO hangs again. This is the SECOND
challenge. And so on. In other words, at each paste, or edit, this cell result
in a hang. Thus LO and all its application are unusable. Because at each
operation the hang returns. As 

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

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106179

--- Comment #14 from pourvan  ---
Roblox Gift Card Generator can help you to generate unlimited free Roblox cards
without any human verification. The generator works no matter where you are in
the world. All these generated Roblox Gift Card Codes 2021 are 100% random and
follow the gift code rules and formula. 
https://trickguys.net/roblox-gift-card-codes/

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


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

2020-11-27 Thread Noel (via logerrit)
 xmloff/source/text/XMLFootnoteBodyImportContext.cxx |7 +--
 xmloff/source/text/XMLFootnoteBodyImportContext.hxx |6 ---
 xmloff/source/text/XMLFootnoteImportContext.cxx |   38 +++-
 xmloff/source/text/XMLFootnoteImportContext.hxx |6 +--
 4 files changed, 19 insertions(+), 38 deletions(-)

New commits:
commit 818be5ed71d6c4eb515c907add4179100eed6072
Author: Noel 
AuthorDate: Fri Nov 27 14:56:19 2020 +0200
Commit: Noel Grandin 
CommitDate: Sat Nov 28 06:53:45 2020 +0100

fastparser in XMLFootnoteBodyImportContext

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

diff --git a/xmloff/source/text/XMLFootnoteBodyImportContext.cxx 
b/xmloff/source/text/XMLFootnoteBodyImportContext.cxx
index dc560f624c10..8b0268318355 100644
--- a/xmloff/source/text/XMLFootnoteBodyImportContext.cxx
+++ b/xmloff/source/text/XMLFootnoteBodyImportContext.cxx
@@ -28,11 +28,8 @@ using ::com::sun::star::uno::Reference;
 using ::com::sun::star::xml::sax::XAttributeList;
 
 
-XMLFootnoteBodyImportContext::XMLFootnoteBodyImportContext(
-SvXMLImport& rImport,
-sal_uInt16 nPrfx,
-const OUString& rLocalName ) :
-SvXMLImportContext(rImport, nPrfx, rLocalName)
+XMLFootnoteBodyImportContext::XMLFootnoteBodyImportContext( SvXMLImport& 
rImport ) :
+SvXMLImportContext(rImport)
 {
 }
 
diff --git a/xmloff/source/text/XMLFootnoteBodyImportContext.hxx 
b/xmloff/source/text/XMLFootnoteBodyImportContext.hxx
index 647867a5cdcf..19007558899e 100644
--- a/xmloff/source/text/XMLFootnoteBodyImportContext.hxx
+++ b/xmloff/source/text/XMLFootnoteBodyImportContext.hxx
@@ -37,11 +37,7 @@ class XMLFootnoteBodyImportContext : public 
SvXMLImportContext
 
 public:
 
-
-XMLFootnoteBodyImportContext(
-SvXMLImport& rImport,
-sal_uInt16 nPrfx,
-const OUString& rLocalName );
+XMLFootnoteBodyImportContext( SvXMLImport& rImport );
 
 protected:
 
diff --git a/xmloff/source/text/XMLFootnoteImportContext.cxx 
b/xmloff/source/text/XMLFootnoteImportContext.cxx
index 645e910c8a36..95a30097675e 100644
--- a/xmloff/source/text/XMLFootnoteImportContext.cxx
+++ b/xmloff/source/text/XMLFootnoteImportContext.cxx
@@ -34,6 +34,7 @@
 #include 
 #include 
 #include 
+#include 
 
 
 using namespace ::com::sun::star::uno;
@@ -164,49 +165,38 @@ void XMLFootnoteImportContext::endFastElement(sal_Int32 )
 }
 }
 
-SvXMLImportContextRef XMLFootnoteImportContext::CreateChildContext(
-sal_uInt16 p_nPrefix,
-const OUString& rLocalName,
-const Reference & xAttrList )
+css::uno::Reference< css::xml::sax::XFastContextHandler > 
XMLFootnoteImportContext::createFastChildContext(
+sal_Int32 nElement, const css::uno::Reference< 
css::xml::sax::XFastAttributeList >& xAttrList )
 {
 SvXMLImportContextRef xContext;
 
-static const SvXMLTokenMap aTokenMap(aFootnoteChildTokenMap);
-
-switch(aTokenMap.Get(p_nPrefix, rLocalName))
+switch(nElement)
 {
-case XML_TOK_FTN_NOTE_CITATION:
+case XML_ELEMENT(TEXT, XML_NOTE_CITATION):
 {
 // little hack: we only care for one attribute of the citation
 //  element. We handle that here, and then return a
 //  default context.
-sal_Int16 nLength = xAttrList->getLength();
-for(sal_Int16 nAttr = 0; nAttr < nLength; nAttr++)
+for( auto& aIter : 
sax_fastparser::castToFastAttributeList(xAttrList) )
 {
-OUString sLocalName;
-sal_uInt16 nPrefix = GetImport().GetNamespaceMap().
-GetKeyByAttrName( xAttrList->getNameByIndex(nAttr),
-   );
-
-if ( (nPrefix == XML_NAMESPACE_TEXT) &&
- IsXMLToken( sLocalName, XML_LABEL ) )
-{
-xFootnote->setLabel(xAttrList->getValueByIndex(nAttr));
-}
+if ( aIter.getToken() == XML_ELEMENT(TEXT, XML_LABEL) )
+xFootnote->setLabel(aIter.toString());
 }
 
 // ignore content: return default context
 break;
 }
 
-case XML_TOK_FTN_NOTE_BODY:
+case XML_ELEMENT(TEXT, XML_NOTE_BODY):
 // return footnote body
-xContext = new XMLFootnoteBodyImportContext(GetImport(),
-p_nPrefix, rLocalName);
+xContext = new XMLFootnoteBodyImportContext(GetImport());
 break;
+
+default:
+XMLOFF_WARN_UNKNOWN_ELEMENT("xmloff", nElement);
 }
 
-return xContext;
+return xContext.get();
 }
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/xmloff/source/text/XMLFootnoteImportContext.hxx 
b/xmloff/source/text/XMLFootnoteImportContext.hxx
index 

[Libreoffice-bugs] [Bug 86630] MENU: Easily insert page number into header/footer with extended menu Insert

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86630

--- Comment #23 from Albert Acer  ---
Created attachment 167630
  --> https://bugs.documentfoundation.org/attachment.cgi?id=167630=edit
Inserting Page Number in FreeOffice - TextMaker

Today I am attaching a screenshot in which we can see how the Page Number is
inserted, in a text document, using FreeOffice TextMaker (Spanish Version) from
the SoftMaker software house, running on Windows 10 Professional in Spanish.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108560] Pasting or editing multi-line cells ranges from slow to unusable Calc

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108560

--- Comment #26 from Francewhoa 
 ---
Created attachment 167629
  --> https://bugs.documentfoundation.org/attachment.cgi?id=167629=edit
mockup---suggested_resolution---francewhoa---ksnip---2020-11-27_nov---v2.jpg

@Francewhoa :) Note to myself. This mockup shows my suggested resolution. I'll
add another comment shortly to clarify this.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108560] Pasting or editing multi-line cells ranges from slow to unusable Calc

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108560

--- Comment #25 from Francewhoa 
 ---
Hello all LO enthusiasts :) I was able to reproduce this challenge again. I'll
re-open it shortly with clarified steps to reproduce with LibreOffice 7.

Thanks all for your tests & contributions above. As for some of the comments
above claiming that they were not able to reproduce this challenge. Maybe they
used outdated test files attached to this ticket? Or maybe it was not clear
which attached files were up to date and which ones were out dated? Anyhow, to
facilitate future communications, today I cleaned up my attached files. So that
only the up to date files are display, and the out dated files are hidden and
tag as "obsolete".

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108560] Pasting or editing multi-line cells ranges from slow to unusable Calc

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108560

Francewhoa  changed:

   What|Removed |Added

Summary|Editing multi-line cells|Pasting or editing
   |with thousands of words is  |multi-line cells ranges
   |slow when OpenGL is enabled |from slow to unusable Calc

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 119785] RTL: DOC: closing parenthesis is displayed as LTR in embedded document

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119785

--- Comment #10 from JamesAnderson  ---
Bug finding is the best technique for making your non-running code into the
running form. The code we write in https://aussiessayreviews.com/ is only
runnable when you will be able to find the bug. Bug removing is the most
important work which you can do.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138188] UI: Context depended table toolbar painted below sidebar (causing constant resizing)

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138188

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138376] The attached spread sheet frequently crashes after saving during closing.

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138376

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138178] EDITING OLE Icon inserted from dialog does not display file name

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138178

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138200] Please remove deleted printers

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138200

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138199] CTL text (with Persian alphabet) with footnote is incorrectly justified when a document is freshly opened

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138199

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138180] EDITING Drag n Drop from Windows Explorer remote folder creates OLE icons displaying long names

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138180

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138179] EDITING Drag n Drop from Windows Explorer local folder creates OLE icons displaying 8.3 filenames

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138179

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138505] FILEOPEN XLSX: Experimental Feature: Cells with revised built-in styles reverted back to default style formats

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138505

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138516] Libreoffice Crashes and hangs

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138516

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-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138175] Writer maxes out CPU core when table has dotted/dashed borders

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138175

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138505] FILEOPEN XLSX: Experimental Feature: Cells with revised built-in styles reverted back to default style formats

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138505

QA Administrators  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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138516] Libreoffice Crashes and hangs

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138516

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 137379] EDITING: Editing view freezes when going to another app and coming back to Writer occasionally

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137379

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-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138376] The attached spread sheet frequently crashes after saving during closing.

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138376

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-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 117567] Calc stops responding and finally crashes while using a chart

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117567

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 137379] EDITING: Editing view freezes when going to another app and coming back to Writer occasionally

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137379

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

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 117567] Calc stops responding and finally crashes while using a chart

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117567

QA Administrators  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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 132123] Can't add fill to any boxes after the update

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132123

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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 132123] Can't add fill to any boxes after the update

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132123

--- Comment #3 from QA Administrators  ---
Dear Stephen Pearson,

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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 129206] Macro is not always run & produce pdf file

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129206

--- Comment #6 from QA Administrators  ---
Dear Jaise James,

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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 129206] Macro is not always run & produce pdf file

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129206

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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 133559] Calc crashes when ungrouping charts

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133559

--- Comment #2 from QA Administrators  ---
Dear Joaquin Marquez Bugella,

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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 133531] Crash on undo after paste of external copy

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133531

--- Comment #2 from QA Administrators  ---
Dear Wil Hostman,

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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 93695] FILEOPEN DOC Wrong Chinese Numbering Character Displayed (compared with MSO)

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93695

--- Comment #13 from QA Administrators  ---
Dear hank.liu,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 42985] Impress: enable animations on embedded videos

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=42985

--- Comment #11 from QA Administrators  ---
Dear rotwang2011,

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://kiwiirc.com/nextclient/irc.freenode.net/#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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 114048] Scrolling multi-page (pages on a row) with a lot of images is slow

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114048

--- 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://kiwiirc.com/nextclient/irc.freenode.net/#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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 130057] Pasting image into .odt file in Collabora Online causes editor to hang/not open

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130057

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #1 from Aron Budea  ---
I don't see this issue in a recent Collabora Online 6.4 or 4.2 version, please
check with one of those, and if you can still reproduce the bug, open a ticket
here:
https://github.com/CollaboraOnline/online/issues

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 136045] Rows and Column Headers And Cell Selection Marker Frequently Get "Out Of Sync" With Calc Table

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136045

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||ba...@caesar.elte.hu
 Resolution|--- |MOVED
 Whiteboard| QA:needsComment|

--- Comment #5 from Aron Budea  ---
Since this bug was filed against CODE, let's keep the github issue open, and
close this.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138101] Comment Popup Frequently Auto-closes Suddenly and Unexpectedly (CODE 6.4)

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138101

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |MOVED
 CC||ba...@caesar.elte.hu
 Whiteboard| QA:needsComment|

--- Comment #4 from Aron Budea  ---
Since this bug was filed against CODE, let's keep the github issue open, and
close this.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138516] Libreoffice Crashes and hangs

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138516

--- Comment #4 from John  ---

seems exactly the same as this one  fyi.

https://bugs.documentfoundation.org/show_bug.cgi?id=120479

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138535] New: Crash in: libc-2.27.so

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138535

Bug ID: 138535
   Summary: Crash in: libc-2.27.so
   Product: LibreOffice
   Version: 6.4.7.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jronp...@gmail.com

This bug was filed from the crash reporting server and is
br-2c896909-7dd2-49ad-9264-f14dae63d622.
=

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138516] Libreoffice Crashes and hangs

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138516

--- Comment #3 from John  ---
hi,
im sorry, that is the only info i have..
when i open a doc and start working in libreoffice, it eventually will
just stop responding.. it doesnt seem to be any one thing.

I will look into the signature on the crash but im not sure how to go about
that.

im also not sure what 
"Once there are steps, they need to be tested with daily master. "
means..  i apologize again..

I do know how to reset the profile.. i will try that as well.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108560] Editing multi-line cells with thousands of words is slow when OpenGL is enabled

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108560

Francewhoa  changed:

   What|Removed |Added

 Attachment #134057|0   |1
is obsolete||

--- Comment #24 from Francewhoa 
 ---
Created attachment 167628
  --> https://bugs.documentfoundation.org/attachment.cgi?id=167628=edit
calc_spreadsheet---after---Slow_Edit_Large_Cell---Francewhoa---2020-11-27.ods

@Francois :) This is a note to myself. This new attached file titled
"calc_spreadsheet---after---Slow_Edit_Large_Cell---Francewhoa---2020-11-27.ods" 
cancels and replace the previous file titled 
"134057:
calc_spreadsheet---after---Slow_Edit_Large_Cell---Francewhoa---2017-06-15.ods"

The only two differences are that the new file titled 
"calc_spreadsheet---after---Slow_Edit_Large_Cell---Francewhoa---2020-11-27.ods":

1. Was created with LibreOffice 7
2. In cell A1, the content of the other file 
"lorem_ipsum---940_lines---5639_characters---Francewhoa---2017-06-17.txt" 
was paste as is. Calc needed 14 minutes to process. Using the same hardware &
resources as my 2017 comment above.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: Branch 'libreoffice-7-1' - icon-themes/elementary icon-themes/elementary_svg

2020-11-27 Thread Rizal Muttaqin (via logerrit)
 icon-themes/elementary/cmd/32/addressbooksource.png  |binary
 icon-themes/elementary/cmd/32/bmpmask.png|binary
 icon-themes/elementary/cmd/32/decrementlevel.png |binary
 icon-themes/elementary/cmd/32/decrementsublevels.png |binary
 icon-themes/elementary/cmd/32/downsearch.png |binary
 icon-themes/elementary/cmd/32/duplicatepage.png  |binary
 icon-themes/elementary/cmd/32/firstpage.png  |binary
 icon-themes/elementary/cmd/32/firstrecord.png|binary
 icon-themes/elementary/cmd/32/incrementlevel.png |binary
 icon-themes/elementary/cmd/32/incrementsublevels.png |binary
 icon-themes/elementary/cmd/32/lastpage.png   |binary
 icon-themes/elementary/cmd/32/lastrecord.png |binary
 icon-themes/elementary/cmd/32/movedown.png   |binary
 icon-themes/elementary/cmd/32/movedownsubitems.png   |binary
 icon-themes/elementary/cmd/32/movepagefirst.png  |binary
 icon-themes/elementary/cmd/32/movepagelast.png   |binary
 icon-themes/elementary/cmd/32/moveup.png |binary
 icon-themes/elementary/cmd/32/moveupsubitems.png |binary
 icon-themes/elementary/cmd/32/nextpage.png   |binary
 icon-themes/elementary/cmd/32/nextrecord.png |binary
 icon-themes/elementary/cmd/32/previouspage.png   |binary
 icon-themes/elementary/cmd/32/prevrecord.png |binary
 icon-themes/elementary/cmd/32/upsearch.png   |binary
 icon-themes/elementary/cmd/lc_addressbooksource.png  |binary
 icon-themes/elementary/cmd/lc_bmpmask.png|binary
 icon-themes/elementary/cmd/lc_decrementlevel.png |binary
 icon-themes/elementary/cmd/lc_decrementsublevels.png |binary
 icon-themes/elementary/cmd/lc_downsearch.png |binary
 icon-themes/elementary/cmd/lc_firstpage.png  |binary
 icon-themes/elementary/cmd/lc_firstrecord.png|binary
 icon-themes/elementary/cmd/lc_incrementlevel.png |binary
 icon-themes/elementary/cmd/lc_incrementsublevels.png |binary
 icon-themes/elementary/cmd/lc_lastpage.png   |binary
 icon-themes/elementary/cmd/lc_lastrecord.png |binary
 icon-themes/elementary/cmd/lc_movedown.png   |binary
 icon-themes/elementary/cmd/lc_movedownsubitems.png   |binary
 icon-themes/elementary/cmd/lc_movepagefirst.png  |binary
 icon-themes/elementary/cmd/lc_movepagelast.png   |binary
 icon-themes/elementary/cmd/lc_moveup.png |binary
 icon-themes/elementary/cmd/lc_moveupsubitems.png |binary
 icon-themes/elementary/cmd/lc_nextpage.png   |binary
 icon-themes/elementary/cmd/lc_nextrecord.png |binary
 icon-themes/elementary/cmd/lc_previouspage.png   |binary
 icon-themes/elementary/cmd/lc_prevrecord.png |binary
 icon-themes/elementary/cmd/lc_upsearch.png   |binary
 icon-themes/elementary/cmd/sc_addressbooksource.png  |binary
 icon-themes/elementary/cmd/sc_bmpmask.png|binary
 icon-themes/elementary/cmd/sc_decrementlevel.png |binary
 icon-themes/elementary/cmd/sc_decrementsublevels.png |binary
 icon-themes/elementary/cmd/sc_downsearch.png |binary
 icon-themes/elementary/cmd/sc_firstpage.png  |binary
 icon-themes/elementary/cmd/sc_firstrecord.png|binary
 icon-themes/elementary/cmd/sc_incrementlevel.png |binary
 icon-themes/elementary/cmd/sc_incrementsublevels.png |binary
 icon-themes/elementary/cmd/sc_lastpage.png   |binary
 icon-themes/elementary/cmd/sc_lastrecord.png |binary
 icon-themes/elementary/cmd/sc_movedown.png   |binary
 icon-themes/elementary/cmd/sc_movedownsubitems.png   |binary
 icon-themes/elementary/cmd/sc_movepagefirst.png  |binary
 icon-themes/elementary/cmd/sc_movepagelast.png   |binary
 icon-themes/elementary/cmd/sc_moveup.png |binary
 icon-themes/elementary/cmd/sc_moveupsubitems.png |binary
 icon-themes/elementary/cmd/sc_nextpage.png   |binary
 icon-themes/elementary/cmd/sc_nextrecord.png |binary
 icon-themes/elementary/cmd/sc_previouspage.png   |binary
 icon-themes/elementary/cmd/sc_prevrecord.png |binary
 icon-themes/elementary/cmd/sc_upsearch.png   |binary
 icon-themes/elementary/links.txt |   87 +--
 icon-themes/elementary_svg/cmd/32/addressbooksource.svg  |2 
 icon-themes/elementary_svg/cmd/32/bmpmask.svg|2 
 icon-themes/elementary_svg/cmd/32/decrementlevel.svg |1 
 icon-themes/elementary_svg/cmd/32/decrementsublevels.svg |2 
 icon-themes/elementary_svg/cmd/32/downsearch.svg |2 
 icon-themes/elementary_svg/cmd/32/duplicatepage.svg  |2 
 icon-themes/elementary_svg/cmd/32/firstpage.svg  |1 
 

[Libreoffice-bugs] [Bug 108560] Editing multi-line cells with thousands of words is slow when OpenGL is enabled

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108560

Francewhoa  changed:

   What|Removed |Added

 Attachment #134084|0   |1
is obsolete||

--- Comment #23 from Francewhoa 
 ---
Comment on attachment 134084
  --> https://bugs.documentfoundation.org/attachment.cgi?id=134084
Dependencies.txt

@Francewhoa :) This is a note to myself. To facilitate future communications.
I'm setting this file to "obsolete".

As this file titled "Dependencies.txt" was cancel and replace by these newer
files in:
• Comment 8
• Comment 9
• Comment 10
• Comment 11

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 137379] EDITING: Editing view freezes when going to another app and coming back to Writer occasionally

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137379

--- Comment #2 from Justin  ---
Yes I can give it a try. I can give it a go later today in a VM as I have now
switched to fully Linux on both my machines. Going to try in a Windows VM to
try to keep things as close to the same as I can for when I had the issue
previously.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108560] Editing multi-line cells with thousands of words is slow when OpenGL is enabled

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108560

Francewhoa  changed:

   What|Removed |Added

 Attachment #134059|0   |1
is obsolete||

--- Comment #22 from Francewhoa 
 ---
Comment on attachment 134059
  --> https://bugs.documentfoundation.org/attachment.cgi?id=134059
lorem_ipsum---Francewhoa---2017-06-15.txt

@Francewhoa :) This is a note to myself. To facilitate future communications.
I'm setting this file to "obsolete".

As this file titled "lorem_ipsum---Francewhoa---2017-06-15.txt" was cancel and
replace by these newer files in:
• Comment 8
• Comment 9
• Comment 10
• Comment 11

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138529] Drawing opens correctly in LibO 6.4 but not in 7.x

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138529

--- Comment #5 from sergio.calleg...@gmail.com ---
Thanks for the thorough analysis. Unfortunately, so much time has passed that I
do not really remember how I made that drawing!
In any case, it is good to know that it is not a regression, but a broken
document. And to have documented a workaround in case someone encounters a
similar issue.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138529] Drawing opens correctly in LibO 6.4 but not in 7.x

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138529

--- Comment #4 from Regina Henschel  ---
The document is faulty. It has an element  where it should be
.

The different placed triangle is the element  in the first
 element in content.xml. Problematic values are svg:width="-1.999cm"
and svg:height="-1.599cm" and svg:viewBox="0 0 -2000 -1600". Width and height
may not be negative in SVG.

I cannot create such shape, tested older OOo and LO 3.5. Meta data tell, that
the document was created with a Linux version of LO 3.4 in 2011-11-29. It might
be, that Novell Go-oo had used these negative values.

I suspect that the negative values were used to describe a 180 degree rotation.
But I don't know:
the center of rotation,
order of this rotation in regard to other transformations,
whether this was used for all kind of shapes,
how skew was written by that version.
So I see no obvious way how to repair such documents and keep the skew fixes. 

Open and save the file in LO 6.4. It repairs the document and then it will be
OK in LO 7.1 too.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: icon-themes/elementary icon-themes/elementary_svg

2020-11-27 Thread Rizal Muttaqin (via logerrit)
 icon-themes/elementary/cmd/32/addressbooksource.png  |binary
 icon-themes/elementary/cmd/32/bmpmask.png|binary
 icon-themes/elementary/cmd/32/decrementlevel.png |binary
 icon-themes/elementary/cmd/32/decrementsublevels.png |binary
 icon-themes/elementary/cmd/32/downsearch.png |binary
 icon-themes/elementary/cmd/32/duplicatepage.png  |binary
 icon-themes/elementary/cmd/32/firstpage.png  |binary
 icon-themes/elementary/cmd/32/firstrecord.png|binary
 icon-themes/elementary/cmd/32/incrementlevel.png |binary
 icon-themes/elementary/cmd/32/incrementsublevels.png |binary
 icon-themes/elementary/cmd/32/lastpage.png   |binary
 icon-themes/elementary/cmd/32/lastrecord.png |binary
 icon-themes/elementary/cmd/32/movedown.png   |binary
 icon-themes/elementary/cmd/32/movedownsubitems.png   |binary
 icon-themes/elementary/cmd/32/movepagefirst.png  |binary
 icon-themes/elementary/cmd/32/movepagelast.png   |binary
 icon-themes/elementary/cmd/32/moveup.png |binary
 icon-themes/elementary/cmd/32/moveupsubitems.png |binary
 icon-themes/elementary/cmd/32/nextpage.png   |binary
 icon-themes/elementary/cmd/32/nextrecord.png |binary
 icon-themes/elementary/cmd/32/previouspage.png   |binary
 icon-themes/elementary/cmd/32/prevrecord.png |binary
 icon-themes/elementary/cmd/32/upsearch.png   |binary
 icon-themes/elementary/cmd/lc_addressbooksource.png  |binary
 icon-themes/elementary/cmd/lc_bmpmask.png|binary
 icon-themes/elementary/cmd/lc_decrementlevel.png |binary
 icon-themes/elementary/cmd/lc_decrementsublevels.png |binary
 icon-themes/elementary/cmd/lc_downsearch.png |binary
 icon-themes/elementary/cmd/lc_firstpage.png  |binary
 icon-themes/elementary/cmd/lc_firstrecord.png|binary
 icon-themes/elementary/cmd/lc_incrementlevel.png |binary
 icon-themes/elementary/cmd/lc_incrementsublevels.png |binary
 icon-themes/elementary/cmd/lc_lastpage.png   |binary
 icon-themes/elementary/cmd/lc_lastrecord.png |binary
 icon-themes/elementary/cmd/lc_movedown.png   |binary
 icon-themes/elementary/cmd/lc_movedownsubitems.png   |binary
 icon-themes/elementary/cmd/lc_movepagefirst.png  |binary
 icon-themes/elementary/cmd/lc_movepagelast.png   |binary
 icon-themes/elementary/cmd/lc_moveup.png |binary
 icon-themes/elementary/cmd/lc_moveupsubitems.png |binary
 icon-themes/elementary/cmd/lc_nextpage.png   |binary
 icon-themes/elementary/cmd/lc_nextrecord.png |binary
 icon-themes/elementary/cmd/lc_previouspage.png   |binary
 icon-themes/elementary/cmd/lc_prevrecord.png |binary
 icon-themes/elementary/cmd/lc_upsearch.png   |binary
 icon-themes/elementary/cmd/sc_addressbooksource.png  |binary
 icon-themes/elementary/cmd/sc_bmpmask.png|binary
 icon-themes/elementary/cmd/sc_decrementlevel.png |binary
 icon-themes/elementary/cmd/sc_decrementsublevels.png |binary
 icon-themes/elementary/cmd/sc_downsearch.png |binary
 icon-themes/elementary/cmd/sc_firstpage.png  |binary
 icon-themes/elementary/cmd/sc_firstrecord.png|binary
 icon-themes/elementary/cmd/sc_incrementlevel.png |binary
 icon-themes/elementary/cmd/sc_incrementsublevels.png |binary
 icon-themes/elementary/cmd/sc_lastpage.png   |binary
 icon-themes/elementary/cmd/sc_lastrecord.png |binary
 icon-themes/elementary/cmd/sc_movedown.png   |binary
 icon-themes/elementary/cmd/sc_movedownsubitems.png   |binary
 icon-themes/elementary/cmd/sc_movepagefirst.png  |binary
 icon-themes/elementary/cmd/sc_movepagelast.png   |binary
 icon-themes/elementary/cmd/sc_moveup.png |binary
 icon-themes/elementary/cmd/sc_moveupsubitems.png |binary
 icon-themes/elementary/cmd/sc_nextpage.png   |binary
 icon-themes/elementary/cmd/sc_nextrecord.png |binary
 icon-themes/elementary/cmd/sc_previouspage.png   |binary
 icon-themes/elementary/cmd/sc_prevrecord.png |binary
 icon-themes/elementary/cmd/sc_upsearch.png   |binary
 icon-themes/elementary/links.txt |   87 +--
 icon-themes/elementary_svg/cmd/32/addressbooksource.svg  |2 
 icon-themes/elementary_svg/cmd/32/bmpmask.svg|2 
 icon-themes/elementary_svg/cmd/32/decrementlevel.svg |1 
 icon-themes/elementary_svg/cmd/32/decrementsublevels.svg |2 
 icon-themes/elementary_svg/cmd/32/downsearch.svg |2 
 icon-themes/elementary_svg/cmd/32/duplicatepage.svg  |2 
 icon-themes/elementary_svg/cmd/32/firstpage.svg  |1 
 

[Libreoffice-bugs] [Bug 138534] Alt-F menu automatically opens "New" submenu intermittently, so alt-f s opens a spreadsheet instead of saving

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138534

--- Comment #2 from lthallma...@comcast.net  ---
Created attachment 167627
  --> https://bugs.documentfoundation.org/attachment.cgi?id=167627=edit
Screenshot of menu seen after pressing F10

Note submenu isn't shown as it is when Alt-F is pressed

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138534] Alt-F menu automatically opens "New" submenu intermittently, so alt-f s opens a spreadsheet instead of saving

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138534

--- Comment #1 from lthallma...@comcast.net  ---
Created attachment 167626
  --> https://bugs.documentfoundation.org/attachment.cgi?id=167626=edit
Screenshot of menu seen after pressing Alt-F

Screenshot of menu seen after pressing Alt-F

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138122] LibreOffice text blurry on Retina displays on macOS 11

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138122

--- Comment #73 from Alexander Barris  ---
(In reply to Telesto from comment #72)
> Out of curiosity -  based on they assumption OoO working correctly... is
> there a working version in they LibreOffice archive.. 
> 
> https://downloadarchive.documentfoundation.org/libreoffice/old/
> 
> If so, maybe in a bibisecting range?
> https://wiki.documentfoundation.org/QA/Bibisect/macOS

I can confirm the latest OpenOffice 4.1.8 works fine. Which old version of
LibreOffice should be tested?

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 117567] Calc stops responding and finally crashes while using a chart

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117567

--- Comment #6 from a@inwind.it ---
I am the original reporter of this bug.

At the time it happened frequently (to the point of being risky for the safety
of one's data), but it was really hard to define a minimal case. My linux
installs are normally well tidied up, so I suppose it could really have been
some compatibility problem between LO and an official library from my distro.

After 2 years, every single library has changed on my system. I am currently on
Ubuntu 20.04. On that OS, I have used Libroffice 6.4 (official debs from the
website) for a long time with no recent crashes.

I recently moved on to 7.0.3.1 d7547858d014d4cf69878db179d326fc3483e082 (still
official debs) and from a quick test I am no longer able to cause a crash.

I think this bug can be safely closed, thank you.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138360] ROUND() large numbers to decimals and to negative -5 decimals inaccurate

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138360

Eike Rathke  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |er...@redhat.com
   |desktop.org |
 Status|NEW |ASSIGNED
Summary|calculation: basic math |ROUND() large numbers to
   |fail, !calc rounding wrong! |decimals and to negative -5
   |dividing by inverse |decimals inaccurate
   |sometimes different from|
   |multiply, 7E10/1E-5 wrong,  |

--- Comment #5 from Eike Rathke  ---
ROUND(1/0.1;-5)

0.1 == 1e-5 => 1.0001e-05
1/0.1 => 9.9985

1/0.1 * 1e-5 => 0.99989
+ 0.5 + ... (correction value) => 1.5091
floor() => 1
/ 1.0001e-05 => 9.9985

In round(), using the inverse factor and swapping multiplication and division
gives the proper result:

1/0.1 / 1e5 => 0.99989
+ 0.5 + 9e-15 (correction value) => 1.5091
floor() => 1
* 1e5 => 10


For large values like ROUND(5e15+1;9) it could be determined if the value can
be rounded at all.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138122] LibreOffice text blurry on Retina displays on macOS 11

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138122

--- Comment #72 from Telesto  ---
Out of curiosity -  based on they assumption OoO working correctly... is there
a working version in they LibreOffice archive.. 

https://downloadarchive.documentfoundation.org/libreoffice/old/

If so, maybe in a bibisecting range?
https://wiki.documentfoundation.org/QA/Bibisect/macOS

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138122] LibreOffice text blurry on Retina displays on macOS 11

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138122

--- Comment #71 from Tor Lillqvist  ---
No, the codebase of those is so different that it doesn't help much. Plus in
the NeoOffice case, its license makes it impossible.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138122] LibreOffice text blurry on Retina displays on macOS 11

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138122

--- Comment #70 from Mugs  ---
(In reply to Tor Lillqvist from comment #69)
> Feel free to use Apache OpenOffice then, we won't mind!

I have already done that, and as stated the interface is clear and beautiful as
you would expect on a Retina display - however for some reason, certain images
embedded in the files do not display. For this reason I have had to shell out
dollars to pay for NeoOffice which in my opinion is still far inferior to
LibreOffice, but fixes the blurring issue. Can the solution to the problem in
LibreOffice not be gleaned from why OpenOffice and NeoOffice do not suffer from
this problem - I would so desperately like to return to LibreOffice

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 137923] "Clone Formatting" disabled on some elements which can take cloned formats

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137923

Eyal Rozenberg  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #2 from Eyal Rozenberg  ---
(In reply to pavlog from comment #1)

It seems that you repeat this comment - the whole block - verbatim on different
bugs. That makes me wonder: Have you tried reproducing this issue based on my
description of when it occurs?

If you have, and couldn't, then I'll spell it out more explicitly; for now,
returning to UNCONFIRMED.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138534] New: Alt-F menu automatically opens "New" submenu intermittently, so alt-f s opens a spreadsheet instead of saving

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138534

Bug ID: 138534
   Summary: Alt-F menu automatically opens "New" submenu
intermittently, so alt-f s opens a spreadsheet instead
of saving
   Product: LibreOffice
   Version: 7.0.3.1 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: lthallma...@comcast.net

Alt-F menu automatically opens "New" submenu intermittently, so alt-f s opens a
spreadsheet instead of saving

OS: Ubuntu 18.04 up-to-date on patches

Using the F10 key to open the menu works as expected

Tested for Writer and Calc

Mouse cursor position not the issue.

Basically I use Alt-F, S to save my current document and sometimes it opens a
new spreadsheet instead.


Tried duplicating under Windows 7, didn't see it. But since it is intermittent
I may not have tried enough.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 137879] LO should know not to try and recover temporary files

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137879

--- Comment #4 from Eyal Rozenberg  ---
(In reply to pavlog from comment #3)
> I can't reproduce it in  7.0.3.1 

I kind of doubt that's possible... What happens on your system after step 10?

> What LO version do you use?

About the same:

Version: 7.0.3.1
Build ID: d7547858d014d4cf69878db179d326fc3483e082
CPU threads: 4; OS: Linux 5.2; UI render: default; VCL: gtk3
Locale: he-IL (en_IL); UI: en-US
Calc: threaded

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: Branch 'libreoffice-7-1' - connectivity/source

2020-11-27 Thread Julien Nabet (via logerrit)
 connectivity/source/commontools/TTableHelper.cxx |5 +
 1 file changed, 5 insertions(+)

New commits:
commit 5dae252e76da9c95049ba8124422a1f7b2f10596
Author: Julien Nabet 
AuthorDate: Thu Nov 26 23:12:46 2020 +0100
Commit: Julien Nabet 
CommitDate: Fri Nov 27 23:01:48 2020 +0100

tdf#137745: crash, when deleting tables and changed relationship isn't 
changed

bt here:
https://bugs.documentfoundation.org/attachment.cgi?id=166782

some explanations here:
https://bugs.documentfoundation.org/show_bug.cgi?id=137745#c8

Change-Id: I1d9dc8d2e3ad7e3e36c4687cb9b2c5990f2d2c8d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106715
(cherry picked from commit 4335810b00abb9b00a9d81caa5ffe09a3ea927fd)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106742
Reviewed-by: Lionel Mamane 
Tested-by: Jenkins

diff --git a/connectivity/source/commontools/TTableHelper.cxx 
b/connectivity/source/commontools/TTableHelper.cxx
index e86af9673052..03724d669704 100644
--- a/connectivity/source/commontools/TTableHelper.cxx
+++ b/connectivity/source/commontools/TTableHelper.cxx
@@ -72,6 +72,11 @@ public:
 }
 virtual void SAL_CALL elementRemoved( const 
css::container::ContainerEvent& Event ) override
 {
+// tdf#137745, perhaps connectivity::OTableHelper::disposing() has 
been called
+// which called OTableContainerListener::clear(), so m_pComponent may 
be null
+if (m_pComponent == nullptr)
+return;
+
 OUString sName;
 Event.Accessor  >>= sName;
 if ( m_aRefNames.find(sName) != m_aRefNames.end() )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 127294] Add more tips of the day (and make it module-specific eventually)

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127294

--- Comment #74 from Commit Notification 
 ---
andreas kainz committed a patch related to this issue.
It has been pushed to "libreoffice-7-1":

https://git.libreoffice.org/core/commit/dca40f028a6e050ed990a7604c09653af09e5d13

tdf#127294 add ToD Previews

It will be available in 7.1.0.0.beta2.

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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 127294] Add more tips of the day (and make it module-specific eventually)

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127294

--- Comment #74 from Commit Notification 
 ---
andreas kainz committed a patch related to this issue.
It has been pushed to "libreoffice-7-1":

https://git.libreoffice.org/core/commit/dca40f028a6e050ed990a7604c09653af09e5d13

tdf#127294 add ToD Previews

It will be available in 7.1.0.0.beta2.

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 on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 127294] Add more tips of the day (and make it module-specific eventually)

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127294

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:6.5.0 target:6.4.0.1 |target:6.5.0 target:6.4.0.1
   |target:7.1.0 target:7.2.0   |target:7.1.0 target:7.2.0
   ||target:7.1.0.0.beta2

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 127294] Add more tips of the day (and make it module-specific eventually)

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127294

Commit Notification  changed:

   What|Removed |Added

 Whiteboard|target:6.5.0 target:6.4.0.1 |target:6.5.0 target:6.4.0.1
   |target:7.1.0 target:7.2.0   |target:7.1.0 target:7.2.0
   ||target:7.1.0.0.beta2

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-commits] core.git: Branch 'libreoffice-7-1' - cui/inc extras/source vcl/Package_tipoftheday.mk

2020-11-27 Thread andreas kainz (via logerrit)
 cui/inc/tipoftheday.hrc  |8 
 extras/source/tipoftheday/formdocuments.png  |binary
 extras/source/tipoftheday/masterdocument.png |binary
 extras/source/tipoftheday/printnote.png  |binary
 extras/source/tipoftheday/statusbar.png  |binary
 vcl/Package_tipoftheday.mk   |4 
 6 files changed, 8 insertions(+), 4 deletions(-)

New commits:
commit dca40f028a6e050ed990a7604c09653af09e5d13
Author: andreas kainz 
AuthorDate: Fri Nov 27 08:54:43 2020 +0100
Commit: Andreas Kainz 
CommitDate: Fri Nov 27 22:43:52 2020 +0100

tdf#127294 add ToD Previews

Change-Id: Icd049b0ae313e4c3095975a98f8765372fa22abf
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106719
Tested-by: Jenkins
Reviewed-by: Andreas Kainz 
(cherry picked from commit c12bc5757c021f8ba3f802b26805964a11aaa71d)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106733

diff --git a/cui/inc/tipoftheday.hrc b/cui/inc/tipoftheday.hrc
index f5d06db9657e..95806eb9bff1 100644
--- a/cui/inc/tipoftheday.hrc
+++ b/cui/inc/tipoftheday.hrc
@@ -47,13 +47,13 @@ const std::tuple 
TIPOFTHEDAY_STRINGARRAY[] =
 {
  { NC_("RID_CUI_TIPOFTHEDAY", "%PRODUCTNAME offers a variety of user 
interface options to make you feel at home"), ".uno:ToolbarModeUI", 
"toolbarmode.png"},
  { NC_("RID_CUI_TIPOFTHEDAY", "Need to allow changes to parts of a 
read-only document in Writer? Insert frames or sections that can authorize 
changes."), 
"https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/section_edit.html;,
 "tipoftheday_w.png"}, //local help missing
- { NC_("RID_CUI_TIPOFTHEDAY", "To print the notes of your slides go to 
File ▸ Print ▸ Impress tab and select Notes under Document ▸ Type."), "", 
"tipoftheday_i.png"},
+ { NC_("RID_CUI_TIPOFTHEDAY", "To print the notes of your slides go to 
File ▸ Print ▸ Impress tab and select Notes under Document ▸ Type."), "", 
"printnote.png"},
  { NC_("RID_CUI_TIPOFTHEDAY", "To start temporarily with a fresh user 
profile, or to restore a non-working %PRODUCTNAME, use Help ▸ Restart in Safe 
Mode."), "svx/ui/safemodedialog/SafeModeDialog", ""}, 
//https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/01/profile_safe_mode.html
  { NC_("RID_CUI_TIPOFTHEDAY", "Writing a book? %PRODUCTNAME master 
document lets you manage large documents as a container for individual 
%PRODUCTNAME Writer files."), 
"https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/globaldoc.html;,
 "tipoftheday_w.png"}, //local help missing
  { NC_("RID_CUI_TIPOFTHEDAY", "Create editable Hybrid PDFs with 
%PRODUCTNAME."), 
"https://wiki.documentfoundation.org/Documentation/HowTo/CreateAHybridPDF;, ""},
  { NC_("RID_CUI_TIPOFTHEDAY", "Explore the ten different functions in the 
status bar (at the bottom of the document window). Place the cursor over each 
field for an explanation. If not visible, use View ▸ Status Bar."), "", 
"tipoftheday_w.png"},
  { NC_("RID_CUI_TIPOFTHEDAY", "Want to sum a cell through several sheets? 
Refer to the range of sheets e.g. =SUM(Sheet1.A1:Sheet3.A1)."), "", 
"tipoftheday_c.png"},
- { NC_("RID_CUI_TIPOFTHEDAY", "Create fillable form documents (even PDFs) 
with %PRODUCTNAME."), 
"https://www.techrepublic.com/article/how-to-create-interactive-pdfs-with-libreoffice;,
 ""},
+ { NC_("RID_CUI_TIPOFTHEDAY", "Create fillable form documents (even PDFs) 
with %PRODUCTNAME."), 
"https://www.techrepublic.com/article/how-to-create-interactive-pdfs-with-libreoffice;,
 "formdocuments.png"},
  { NC_("RID_CUI_TIPOFTHEDAY", "Cannot see all the text in a cell? Expand 
the input line in the formula bar and you can scroll."), "", 
"tipoftheday_c.png"},
  { NC_("RID_CUI_TIPOFTHEDAY", "Optimize your table layout with Table ▸ 
Size ▸ Distribute Rows / Columns Evenly."), "", "tipoftheday_w.png"},
  { NC_("RID_CUI_TIPOFTHEDAY", "Find all expressions in brackets per Edit ▸ 
Find and Replace ▸ Find ▸ \\([^)]+\\) (check “Regular expressions”)"), "", 
"tipoftheday_w.png"},
@@ -66,7 +66,7 @@ const std::tuple 
TIPOFTHEDAY_STRINGARRAY[] =
  { NC_("RID_CUI_TIPOFTHEDAY", "You can restart the slide show after a 
pause specified at Slide Show ▸ Slide Show Settings ▸ Loop and repeat."), "", 
"tipoftheday_i.png"},
  { NC_("RID_CUI_TIPOFTHEDAY", "To distribute some text in multi-columns 
select the text and apply Format ▸ Columns."), "", "tipoftheday_w.png"},
  { NC_("RID_CUI_TIPOFTHEDAY", "Use View ▸ Value Highlighting to display 
cell contents in colors: Text/black, Formulas/green, Numbers/blue, Protected 
cells/grey background."), 
"https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/0308.html;,
 "tipoftheday_c.png"}, //local help missing
- { NC_("RID_CUI_TIPOFTHEDAY", "Create different master pages in a 
presentation template: View ▸ Master Slide and Slide ▸ New Master (or per 
toolbar or right click in slide 

[Libreoffice-commits] core.git: Branch 'libreoffice-7-1' - sw/uiconfig

2020-11-27 Thread andreas kainz (via logerrit)
 sw/uiconfig/swriter/ui/notebookbar.ui |   51 +++---
 1 file changed, 41 insertions(+), 10 deletions(-)

New commits:
commit 9ffec868f9f42eaca7282e70fa0fd85182831777
Author: andreas kainz 
AuthorDate: Fri Nov 27 09:39:52 2020 +0100
Commit: Andreas Kainz 
CommitDate: Fri Nov 27 22:43:26 2020 +0100

writer notebookbar update for 7.1

Change-Id: Id754c59acd5a548fb96b085e63d1e8f39805ca46
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106721
Tested-by: Jenkins
Reviewed-by: Andreas Kainz 
(cherry picked from commit c8ca030367180330359ad3b0c6e0fcd8759741e8)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106738

diff --git a/sw/uiconfig/swriter/ui/notebookbar.ui 
b/sw/uiconfig/swriter/ui/notebookbar.ui
index b2db8be91554..3a5e5b195fba 100644
--- a/sw/uiconfig/swriter/ui/notebookbar.ui
+++ b/sw/uiconfig/swriter/ui/notebookbar.ui
@@ -3365,6 +3365,8 @@
   
 True
 True
+center
+True
 both-horiz
 False
 
@@ -3389,6 +3391,8 @@
   
 True
 True
+center
+True
 both-horiz
 False
 
@@ -3442,10 +3446,13 @@
   
 True
 False
+center
+True
 
   
 True
 True
+center
 True
 
   
@@ -3470,6 +3477,7 @@
   
 True
 True
+center
 5
 
   
@@ -3493,6 +3501,7 @@
   
 True
 True
+center
 icons
 False
 
@@ -3536,10 +3545,12 @@
 True
 False
 center
+True
 
   
 True
 True
+center
 icons
 False
 
@@ -3608,6 +3619,7 @@
 True
 False
 end
+center
 5
 5
 True
@@ -3624,6 +3636,7 @@
   
 True
 True
+center
 icons
 False
 
@@ -3659,6 +3672,7 @@
   
 True
 False
+center
 5
 5
 vertical
@@ -3674,6 +3688,7 @@
   
 True
 True
+center
 icons
 False
 
@@ -3741,8 +3756,6 @@
   
 True
 False
-center
-True
 
   
 True
@@ -3769,10 +3782,12 @@
 True
 False
 center
+True
 
   
 True
   

[Libreoffice-commits] core.git: Branch 'libreoffice-7-1' - sd/uiconfig

2020-11-27 Thread andreas kainz (via logerrit)
 sd/uiconfig/sdraw/ui/notebookbar.ui|   12 ++--
 sd/uiconfig/simpress/ui/notebookbar.ui |   49 -
 2 files changed, 47 insertions(+), 14 deletions(-)

New commits:
commit 9273b8bb8dee8ee627d59efa610b18aa4a4ebc4c
Author: andreas kainz 
AuthorDate: Fri Nov 27 10:10:56 2020 +0100
Commit: Andreas Kainz 
CommitDate: Fri Nov 27 22:42:58 2020 +0100

impress/draw notebookbar update for 7.1

Change-Id: I85b8fcc5cdc58752d1a9079046e2be26e64a3b74
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106724
Tested-by: Jenkins
Reviewed-by: Andreas Kainz 
(cherry picked from commit 364e440e024a4af6a0bdd354ae2bd4bcdd9536c6)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106744

diff --git a/sd/uiconfig/sdraw/ui/notebookbar.ui 
b/sd/uiconfig/sdraw/ui/notebookbar.ui
index 918e487e7ed3..512ddb512df7 100644
--- a/sd/uiconfig/sdraw/ui/notebookbar.ui
+++ b/sd/uiconfig/sdraw/ui/notebookbar.ui
@@ -11852,7 +11852,6 @@
 False
 
   
-130
 True
 False
 center
@@ -11877,12 +11876,11 @@
 both-horiz
 False
 
-  
-130
+  
 True
 False
 center
-.uno:GrafTransparence
+.uno:GrafContrast
   
   
 False
@@ -11933,12 +11931,11 @@
 both-horiz
 False
 
-  
-130
+  
 True
 False
 center
-.uno:GrafContrast
+.uno:GrafTransparence
   
   
 False
@@ -11960,7 +11957,6 @@
 False
 
   
-130
 True
 False
 center
diff --git a/sd/uiconfig/simpress/ui/notebookbar.ui 
b/sd/uiconfig/simpress/ui/notebookbar.ui
index 72d4edb0c0fb..318f7c61fd67 100644
--- a/sd/uiconfig/simpress/ui/notebookbar.ui
+++ b/sd/uiconfig/simpress/ui/notebookbar.ui
@@ -3540,6 +3540,8 @@
   
 True
 True
+center
+True
 both-horiz
 False
 
@@ -3564,6 +3566,8 @@
   
 True
 True
+center
+True
 both-horiz
 False
 
@@ -3617,10 +3621,13 @@
   
 True
 False
+center
+True
 
   
 True
 True
+center
 True
 
   
@@ -3645,6 +3652,7 @@
   
 True
 True
+center
 5
 
   
@@ -3669,6 +3677,7 @@
 True
 True
 end
+center
 icons
 False
 
@@ -3712,6 +3721,7 @@
 True
 False
 center
+True

[Libreoffice-bugs] [Bug 138533] Use GtkSpinButton for .uno:FontHeight

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138533

--- Comment #1 from andreas_k  ---
Not only in the Sidebar you can reduce remove .uno:Grow and .uno:Shrink
commands when there is a SpinButton for .uno:FontHeight.
- Toolbar
- Notebookbar
- Sidebar

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 138533] Use GtkSpinButton for .uno:FontHeight

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138533

--- Comment #1 from andreas_k  ---
Not only in the Sidebar you can reduce remove .uno:Grow and .uno:Shrink
commands when there is a SpinButton for .uno:FontHeight.
- Toolbar
- Notebookbar
- Sidebar

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 137992] Drag and drop fails to place an image into Draw

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137992

--- Comment #9 from mwtjunkm...@gmail.com ---
And in:

Version: 7.2.0.0.alpha0+ (x64)
Build ID: a470932949c3e8ee28aaf77a71a90a957bbfe1ce
CPU threads: 8; OS: Windows 10.0 Build 20262; UI render: Skia/Vulkan; 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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138533] Use GtkSpinButton for .uno:FontHeight

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138533

andreas_k  changed:

   What|Removed |Added

   Keywords||needsUXEval

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 138533] Use GtkSpinButton for .uno:FontHeight

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138533

andreas_k  changed:

   What|Removed |Added

   Keywords||needsUXEval

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-ux-advise] [Bug 138533] Use GtkSpinButton for .uno:FontHeight

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138533

andreas_k  changed:

   What|Removed |Added

 CC||kain...@gmail.com,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Libreoffice-ux-advise mailing list
Libreoffice-ux-advise@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-ux-advise


[Libreoffice-bugs] [Bug 138533] New: Use GtkSpinButton for .uno:FontHeight

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138533

Bug ID: 138533
   Summary: Use GtkSpinButton for .uno:FontHeight
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kain...@gmail.com

Created attachment 167625
  --> https://bugs.documentfoundation.org/attachment.cgi?id=167625=edit
GtkSpinButton for .uno:FontHeight

The GtkSpinButton has the benefit compare to the drop-down widget for
FontHeight, that .uno:Shrink and .uno:Grow are not needed, cause there are
already +/- buttons within the GtkSpinButton.

Google Docs has also some kind of a SpinButton.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 137992] Drag and drop fails to place an image into Draw

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137992

--- Comment #8 from mwtjunkm...@gmail.com ---
Still happening in:

Version: 7.2.0.0.alpha0+ (x64)
Build ID: a470932949c3e8ee28aaf77a71a90a957bbfe1ce
CPU threads: 8; OS: Windows 10.0 Build 20262; UI render: default; 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 mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 138513] Crash in: r600_dri.so

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138513

--- Comment #9 from PhLinuX  ---
Yes, I didn't upgrade my Deb version because time.
But I'm going to do that as soon as possible.

I actually give some sub-marine biology trainings via Zoom and I need this is
the reason why I use impress.
My try with LO7 was mainly to see if the notes are better displayed than with
LO5. Unfortunately, it is still unusable.

Many thanks Julien for advise and assistance.

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 137992] Drag and drop fails to place an image into Draw

2020-11-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137992

mwtjunkm...@gmail.com 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-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


  1   2   3   4   >