[Libreoffice-bugs] [Bug 139332] UI: Expert Configuration doesn't show Ok/Cancel button

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139332

--- Comment #3 from Jambunathan K  ---
I am on a Dell laptop.

~$ lshw -c display
WARNING: you should run this program as super-user.
  *-display 
   description: VGA compatible controller
   product: Atom Processor Z36xxx/Z37xxx Series Graphics & Display
   vendor: Intel Corporation
   physical id: 2
   bus info: pci@:00:02.0
   version: 0e
   width: 32 bits
   clock: 33MHz
   capabilities: vga_controller bus_master cap_list rom
   configuration: driver=i915 latency=0
   resources: irq:91 memory:d000-d03f memory:c000-cfff
ioport:f080(size=8) memory:c-d
WARNING: output may be incomplete or inaccurate, you should run this program as
super-user.


~$ dmidecode | grep -A3 '^System Information'
Command 'dmidecode' is available in '/usr/sbin/dmidecode'
The command could not be located because '/usr/sbin' is not included in the
PATH environment variable.
This is most likely caused by the lack of administrative privileges associated
with your user account.
dmidecode: command not found
~$ sudo dmidecode | grep -A3 '^System Information'
System Information
Manufacturer: Dell Inc.
Product Name: Inspiron 3551
Version: A05

-- 
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 139332] UI: Expert Configuration doesn't show Ok/Cancel button

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139332

--- Comment #2 from Jambunathan K  ---

> I think there is a ok/cancel button which gets hidden the bottom panel
> 'gnome-panel'.  


In the attached screenshot, you can see that I have moved the bottom panel of
the 'gnome-panel' to the right to see if it makes difference. 

I still see that the form is "overflowing" the laptop display, and there is NO
ok/cancel button

-- 
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 139332] UI: Expert Configuration doesn't show Ok/Cancel button

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139332

--- Comment #1 from Jambunathan K  ---
The issue is seen with

LibreOfficeDev_7.2.0.0.alpha0_Linux_x86-64_deb 
master~2020-12-30_12.52.30_LibreOfficeDev_7.2.0.0.alpha0_Linux_x86-64_deb.tar.gz.

I am sure that this bug is an OLD one.  IIRC, I have seen this in stable
LibreOffice 7.0 builds.

~$ uname -a
Linux debian 5.9.0-5-amd64 #1 SMP Debian 5.9.15-1 (2020-12-17) x86_64 GNU/Linux


~$ dpkg -l | grep writer
ii  libreofficedev7.2-writer   7.2.0.0.alpha0-1
  amd64Writer brand module for LibreOfficeDev 7.2.0.0.alpha0
ii  lodevbasis7.2-writer   7.2.0.0.alpha0-1
  amd64Writer module for LibreOfficeDev 7.2.0.0.alpha0


~$ env | grep SESSION
SESSION_MANAGER=local/debian:@/tmp/.ICE-unix/2393,unix/debian:/tmp/.ICE-unix/2393
GNOME_DESKTOP_SESSION_ID=this-is-deprecated
DESKTOP_SESSION=gnome-flashback-metacity
XDG_SESSION_DESKTOP=gnome-flashback-metacity
XDG_SESSION_TYPE=x11
XDG_SESSION_CLASS=user
GDMSESSION=gnome-flashback-metacity
DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus

-- 
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-12-30 Thread Jochen Nitschke (via logerrit)
 xmloff/source/style/xmlexppr.cxx |   21 -
 1 file changed, 8 insertions(+), 13 deletions(-)

New commits:
commit 77f6990b5b990d7e9b247a36f0ed8cb72d00cd69
Author: Jochen Nitschke 
AuthorDate: Tue Dec 29 12:43:40 2020 +0100
Commit: Noel Grandin 
CommitDate: Thu Dec 31 08:48:10 2020 +0100

remove unnecessary list member counter

std::list::size() has constant complexity since C++11

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

diff --git a/xmloff/source/style/xmlexppr.cxx b/xmloff/source/style/xmlexppr.cxx
index 893e0fb36ee4..a9cc2962155e 100644
--- a/xmloff/source/style/xmlexppr.cxx
+++ b/xmloff/source/style/xmlexppr.cxx
@@ -156,7 +156,6 @@ typedef std::list 
FilterPropertyInfoList_Impl;
 
 class FilterPropertiesInfo_Impl
 {
-sal_uInt32  nCount;
 FilterPropertyInfoList_Impl aPropInfos;
 
 std::unique_ptr> pApiNames;
@@ -171,11 +170,10 @@ public:
 const Reference< XPropertySet >& xPropSet,
 const rtl::Reference< XMLPropertySetMapper >& maPropMapper,
 const bool bDefault);
-sal_uInt32 GetPropertyCount() const { return nCount; }
+sal_uInt32 GetPropertyCount() const { return aPropInfos.size(); }
 };
 
 FilterPropertiesInfo_Impl::FilterPropertiesInfo_Impl() :
-nCount(0),
 aPropInfos()
 {
 }
@@ -184,7 +182,6 @@ void FilterPropertiesInfo_Impl::AddProperty(
 const OUString& rApiName, const sal_uInt32 nIndex)
 {
 aPropInfos.emplace_back(rApiName, nIndex);
-nCount++;
 
 OSL_ENSURE( !pApiNames, "performance warning: API names already retrieved" 
);
 pApiNames.reset();
@@ -192,7 +189,6 @@ void FilterPropertiesInfo_Impl::AddProperty(
 
 const uno::Sequence& FilterPropertiesInfo_Impl::GetApiNames()
 {
-OSL_ENSURE(nCount == aPropInfos.size(), "wrong property count");
 if( !pApiNames )
 {
 // we have to do three things:
@@ -204,7 +200,7 @@ const uno::Sequence& 
FilterPropertiesInfo_Impl::GetApiNames()
 aPropInfos.sort();
 
 // merge duplicates
-if ( nCount > 1 )
+if ( aPropInfos.size() > 1 )
 {
 FilterPropertyInfoList_Impl::iterator aOld = aPropInfos.begin();
 FilterPropertyInfoList_Impl::iterator aEnd = aPropInfos.end();
@@ -225,7 +221,6 @@ const uno::Sequence& 
FilterPropertiesInfo_Impl::GetApiNames()
 aCurrent->GetIndexes().clear();
 // erase element, and continue with next
 aCurrent = aPropInfos.erase( aCurrent );
-nCount--;
 }
 else
 {
@@ -237,7 +232,7 @@ const uno::Sequence& 
FilterPropertiesInfo_Impl::GetApiNames()
 }
 
 // construct sequence
-pApiNames.reset( new Sequence < OUString >( nCount ) );
+pApiNames.reset( new Sequence < OUString >( aPropInfos.size() ) );
 OUString *pNames = pApiNames->getArray();
 
 for (auto const& propInfo : aPropInfos)
@@ -273,7 +268,7 @@ void FilterPropertiesInfo_Impl::FillPropertyStateArray(
 FilterPropertyInfoList_Impl::iterator 
aPropIter(aPropInfos.begin());
 XMLPropertyState aNewProperty( -1 );
 sal_uInt32 i = 0;
-while (nResultCount > 0 && i < nCount)
+while (nResultCount > 0 && i < aPropInfos.size())
 {
 if (pResults->Name == aPropIter->GetApiName())
 {
@@ -299,7 +294,7 @@ void FilterPropertiesInfo_Impl::FillPropertyStateArray(
 OSL_ENSURE( rApiNames.getLength() == aResults.getLength(), "wrong 
implemented XTolerantMultiPropertySet" );
 FilterPropertyInfoList_Impl::iterator 
aPropIter(aPropInfos.begin());
 XMLPropertyState aNewProperty( -1 );
-OSL_ENSURE( nCount == 
static_cast(aResults.getLength()), "wrong implemented 
XTolerantMultiPropertySet??" );
+OSL_ENSURE( aPropInfos.size() == 
static_cast(aResults.getLength()), "wrong implemented 
XTolerantMultiPropertySet??" );
 for( const auto& rResult : aResults )
 {
 if ((rResult.Result == 
beans::TolerantPropertySetResultType::SUCCESS) &&
@@ -339,7 +334,7 @@ void FilterPropertiesInfo_Impl::FillPropertyStateArray(
 sal_uInt32 nValueCount = 0;
 sal_uInt32 i;
 
-for( i = 0; i < nCount; ++i, ++pStates )
+for( i = 0; i < aPropInfos.size(); ++i, ++pStates )
 {
 if( *pStates == PropertyState_DIRECT_VALUE )
 nValueCount++;
@@ -400,7 +395,7 @@ void FilterPropertiesInfo_Impl::FillPropertyStateArray(
 const Any *pValues = aValues.getConstArray();
 
 FilterPropertyInfoList_Impl::iterator aItr = 

[Libreoffice-commits] core.git: scripting/examples

2020-12-30 Thread Kevin Suo (via logerrit)
 scripting/examples/python/NamedRanges.py |  174 ++-
 1 file changed, 127 insertions(+), 47 deletions(-)

New commits:
commit 8c9cc54bd7b6f3ba723d7a42ccc6a5372a80f970
Author: Kevin Suo 
AuthorDate: Thu Dec 31 10:46:45 2020 +0800
Commit: Noel Grandin 
CommitDate: Thu Dec 31 08:47:32 2020 +0100

tdf#128463: Rewrite NamedRanges.py to make it work when run from UI

This commit:
1. Updated the license header;
2. Added docstrings and notes to help the users to understand the API and 
code.
3. Make the code to create a new sheet named "data", define named ranges in 
it,
   modify the named range, define another named range, fill values in the 
cells
   related to the named ranges, the calcualte sum of each named range, and 
also
   calculate the difference between the two named ranges. The results are 
stored
   in the sheet named "information".
4. Cell alignment and background color methods are also used in this 
example.
5. Only show the parent function in the UI.

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

diff --git a/scripting/examples/python/NamedRanges.py 
b/scripting/examples/python/NamedRanges.py
index 0e47cb406745..f307d9644ffd 100644
--- a/scripting/examples/python/NamedRanges.py
+++ b/scripting/examples/python/NamedRanges.py
@@ -1,4 +1,3 @@
-# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
 #
 # This file is part of the LibreOffice project.
 #
@@ -6,59 +5,140 @@
 # License, v. 2.0. If a copy of the MPL was not distributed with this
 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
 #
-
-import traceback
+# This file incorporates work covered by the following license notice:
+#
+#   Licensed to the Apache Software Foundation (ASF) under one or more
+#   contributor license agreements. See the NOTICE file distributed
+#   with this work for additional information regarding copyright
+#   ownership. The ASF licenses this file to you under the Apache
+#   License, Version 2.0 (the "License"); you may not use this file
+#   except in compliance with the License. You may obtain a copy of
+#   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+#
 import uno
+from com.sun.star.container import NoSuchElementException
+
+def DefineNamedRange(doc, SheetName, rangeName, rangeReference):
+"""Defines a new named range. If the named range exists in the document, 
then
+update the rangeReference.
 
+Example: DefineNamedRange(doc, "Sheet1", "test_range", '$A$1:$F$14').
 
-def GetNamedRanges():
-"""Returns a list of the named ranges in the document.
+API Reference:
+
https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1sheet_1_1XNamedRanges.html
 """
+aName = rangeName
+# make sure the sheet name starts with "$"
+sheetName = "$" + SheetName.replace("$", "")
+aContent = sheetName + "." + rangeReference
+
 try:
-desktop = XSCRIPTCONTEXT.getDesktop()
-model = desktop.getCurrentComponent()
-rangeNames = model.NamedRanges.ElementNames
-result = []
-for i in rangeNames:
-range = model.NamedRanges.getByName(i).Content
-result.append((i, range))
-return result
-except Exception as e:
-print("Caught Exception: " + str(e))
-tb = e.__traceback__
-traceback.print_tb(tb)
-return None
-
-
-def DefineNamedRange(sheet, x0, y0, width, height, name):
-"""Defines a new (or replaces an existing) named range on a sheet,
-using zero-based absolute coordinates
-"""
-desktop = XSCRIPTCONTEXT.getDesktop()
-model = desktop.getCurrentComponent()
-# FIXME: Is there some Python-callable API to turn a row and column into 
an A1 string?
-# This obviously works only for the first 26 columns.
-abc = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
-content = "$" + sheet + "." + "$" + \
-abc[x0: x0+1] + "$" + str(y0+1) + ":" + "$" + abc[x0+width -
-  1: x0+width] + "$" + 
str(y0+height)
-position = uno.createUnoStruct('com.sun.star.table.CellAddress')
-position.Sheet = 0
-position.Column = 0
-position.Row = 0
-model.NamedRanges.addNewByName(name, content, position, 0)
-return None
+# If the named range exists, then update it
+doc.NamedRanges.getByName(rangeName)
+update = True
+except NoSuchElementException:
+update = False
 
+if update:
+doc.NamedRanges.getByName(rangeName).setContent(aContent)
+else:
+aPosition = uno.createUnoStruct('com.sun.star.table.CellAddress')
+sheet = doc.Sheets.getByName(SheetName)
+# the index of the sheet in the doc, 0-based
+aPosition.Sheet = sheet.getRangeAddress().Sheet
+
+addressObj = 

[Libreoffice-commits] core.git: scripting/examples

2020-12-30 Thread Kevin Suo (via logerrit)
 scripting/examples/python/SetCellColor.py |   47 +++---
 1 file changed, 31 insertions(+), 16 deletions(-)

New commits:
commit 97d51446052acb5465c7ebe0ba3ce4d4570d25b0
Author: Kevin Suo 
AuthorDate: Thu Dec 31 10:28:38 2020 +0800
Commit: Noel Grandin 
CommitDate: Thu Dec 31 08:46:15 2020 +0100

tdf#128463: Make SetCellColor python example actually do sth

The previous one, when run from within the application, gives a
runtime exception.

This commit rewrites this example to:
1. Hide the private function from the UI;
2. Create a new blank Calc file instead of operating directly in the 
existing file;
3. Set cell colors to draw a "LO" picture in the sheet.
4. Added docstrings and API reference links.

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

diff --git a/scripting/examples/python/SetCellColor.py 
b/scripting/examples/python/SetCellColor.py
index 4229d9914f6a..22d86edbbeff 100644
--- a/scripting/examples/python/SetCellColor.py
+++ b/scripting/examples/python/SetCellColor.py
@@ -15,24 +15,39 @@
 #   except in compliance with the License. You may obtain a copy of
 #   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 #
+import uno
 
-def SetCellColor(x, y, color):
-"""Sets the background of the cell at (x,y) (zero-based column and row
-   indices, for example (2,3) == C4) on the first sheet and
-   returns the contents of the cell as a string.
-"""
-# Get the doc from the scripting context which is made available to
-# all scripts.
-desktop = XSCRIPTCONTEXT.getDesktop()
-model = desktop.getCurrentComponent()
+def _SetCellColor(sheet, cellRange, color):
+"""Sets the background of 'cellRange' in 'sheet', to 'color'."""
+# 
https://api.libreoffice.org/docs/idl/ref/interfacecom_1_1sun_1_1star_1_1table_1_1XCellRange.html#a92c77dc3025ac50d55bf31bc80ab118f
+cells = sheet.getCellRangeByName(cellRange)
 
-# Check whether there's already an opened document.
-if not hasattr(model, "Sheets"):
-return ""
+# 
https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1table_1_1CellProperties.html
+cells.CellBackColor = color
 
-sheet = model.Sheets.Sheet1
-cell = sheet.getCellByPosition(x, y)
+def SetCellColor():
+ctx = uno.getComponentContext()
+smgr = ctx.ServiceManager
+desktop = smgr.createInstanceWithContext("com.sun.star.frame.Desktop", ctx)
 
-cell.CellBackColor = color
+# Create a blank spreadsheet document, instead of operating on the 
existing one
+doc = desktop.loadComponentFromURL("private:factory/scalc", "_blank", 0, 
())
 
-return cell.String
+# Select the first sheet in the spreadsheet (0-index based).
+sheet = doc.Sheets[0]
+
+# Call the above helper function to set color (in hex number).
+# To get the hex number:
+#1. go to Calc, click toolbar dropdown "Background Color" > Custome 
Color;
+#2. Pick a color, copy the hex number and prefix it with "0x".
+_SetCellColor(sheet, "C3:C21",0x4021c9)
+_SetCellColor(sheet, "D18:E21",   0x4021c9)
+_SetCellColor(sheet, "G3:G21",0x4021c9)
+_SetCellColor(sheet, "H3:I5", 0x4021c9)
+_SetCellColor(sheet, "I6:I21",0x4021c9)
+_SetCellColor(sheet, "H19:H21",   0x4021c9)
+
+# You should get a nice "LO" in the spreadsheet!
+
+# Only the specified function will show in the Tools > Macro > Organize Macro 
dialog:
+g_exportedScripts = (SetCellColor,)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 139331] Option to redact/ anonymizing file by replacing images by dummy or make them black (Sanitize media)

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139331

Telesto  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org

--- Comment #1 from Telesto  ---
Maybe as kind of redact function

-- 
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 139331] Option to redact/ anonymizing file by replacing images by dummy or make them black (Sanitize media)

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139331

Telesto  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org

--- Comment #1 from Telesto  ---
Maybe as kind of redact function

-- 
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 139332] New: UI: Expert Configuration doesn't show Ok/Cancel button

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139332

Bug ID: 139332
   Summary: UI: Expert Configuration doesn't show Ok/Cancel button
   Product: LibreOffice
   Version: 7.2.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kjambunat...@gmail.com

Created attachment 168588
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168588=edit
Expert Configuration doesn't show OK/Cancel button

The  attached screenshot shows the problem.

1) Go toTools – Options – LibreOffice – Advanced – Open Expert Configuration

2) search for the string 'prettyprinting' (without quotes).  You will be
presented with /org.openoffice.Office.Common/Save/Document PrettyPrinting 

3) Toggle the value from 'false' to 'true', for example.  

4) Close the window.  

5) Repeat (1) and (2) above to verify if the new value is saved.  

6) Note that new changes are NOT saved.



I think there is a ok/cancel button which gets hidden the bottom panel
'gnome-panel'.  

This bug is similar to the other recently closed bug
https://bugs.documentfoundation.org/show_bug.cgi?id=130275

-- 
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 139331] New: Option to redact/ anonymizing file by replacing images by dummy or make them black (Sanitize media)

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139331

Bug ID: 139331
   Summary: Option to redact/ anonymizing file by replacing images
by dummy or make them black (Sanitize media)
   Product: LibreOffice
   Version: 7.2.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Option to redact/ anonymizing file by replacing images by dummy or make them
black

Steps to Reproduce:
certain bug require anonymizing, but also contain images

Actual Results:
Not possible. see
https://wiki.documentfoundation.org/QA/Bugzilla/Sanitizing_Files_Before_Submission

Expected Results:
A function?


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.1.0.0.alpha1+
Build ID: c784b3da15102caf1022e83371863a86766e69cd
CPU threads: 4; OS: Mac OS X 10.12.6; UI render: default; VCL: osx
Locale: nl-NL (nl_NL.UTF-8); 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 139325] LO writer hangs/crashes--can't access my large ODT data file

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139325

--- Comment #6 from Telesto  ---
You could try opening the file in safe-mode with the older version (or newer)
help -> safe mode

Or copy paste the content into new document.. this sometimes helps..


The last solution might be sending to specific person (release engineer) or
attempting to anonymize the file, buts no help for images

-- 
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 139330] UI is unfriendly, opening a new layer instead of the last one when the layer tab list is full

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139330

Telesto  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
   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-bugs] [Bug 139330] UI is unfriendly, opening a new layer instead of the last one when the layer tab list is full

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139330

Telesto  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org
   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-bugs] [Bug 103683] PDF export mediabox trimbox cropbox bleedbox artbox

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103683

--- Comment #22 from hamilton  ---
Liteblue is a broad-based resource which allows any Postal employee to obtain
critically relevant information, such as payroll, health, benefits, and other
careers. Liteblue is the official portal for United States Postal Service
employees. Use liteblue usps gov to your Liteblue to manage work.
https://liteblue.fun

-- 
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 76258] Filter by Colours in LibreOffice Calc - Enchancement

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=76258

--- Comment #26 from hamilton  ---
QuickPayPortal is one largest & world’s most famous medical bill paying online
patient portal for the easiness of patients. The www.quickpayportal.com is also
known as Patient Portal. quickpayportal has made online bill portion
essentially less difficult. QuickPayPortal entrance is an online bill portion.
https://quickpayportal.red

-- 
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 115817] Correct implementation or remove the Navigation toolbar (a GSOC 2009 contribution see bug 32869) (comment 3 for history and functional intent)

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115817

--- Comment #41 from Jim Raykowski  ---
Here is effort to help improve the recency navigation feature by including
additional cursor movements in the recency stack:

https://gerrit.libreoffice.org/c/core/+/108529

-- 
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 138951] Moving shape with text box in table splits text box and shape at certain points in DOCX

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138951

QA Administrators  changed:

   What|Removed |Added

   Keywords||bibisectRequest

-- 
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 139296] Text font size changes when scrolling document with a mouse

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139296

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 138970] Maximum columns exceeded warning is shown while opening an MS Excel file via the SDK

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138970

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 138979] Dark-colored style previews lack contrast when using a dark theme

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138979

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 138974] Heading paragraph Style: Border color and width not maintained if no border set

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138974

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 138977] Automatic OCR text overlay in Libreoffice draw. Horrendously annoying and difficult to turn off

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138977

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 138947] Image + frame becoming empty white area when dragged to certain position after DOCX export

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138947

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 138967] Document scrolls when zooming into document with (large) image selected

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138967

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 139325] LO writer hangs/crashes--can't access my large ODT data file

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139325

--- 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 138966] Version 7.0.3.1 does not attach diacritics when we use Insert Special Character for Sanskrit Devanagari fonts

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138966

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 138247] Calc UI: Make the comment UI more consistent

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138247

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 139325] LO writer hangs/crashes--can't access my large ODT data file

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139325

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 138247] Calc UI: Make the comment UI more consistent

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138247

--- 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 139296] Text font size changes when scrolling document with a mouse

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139296

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

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


[Libreoffice-ux-advise] [Bug 138247] Calc UI: Make the comment UI more consistent

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138247

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

-- 
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 138247] Calc UI: Make the comment UI more consistent

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138247

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

-- 
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 133587] Following the update of W10 Libre Office crashes and stop working. Need to restart the computer

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133587

--- Comment #4 from QA Administrators  ---
Dear MIRA,

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 133587] Following the update of W10 Libre Office crashes and stop working. Need to restart the computer

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133587

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 133495] crash on using scrollbar "Object is nonfunctional" (MacOS Catalina)

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133495

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

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 133495] crash on using scrollbar "Object is nonfunctional" (MacOS Catalina)

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133495

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 130723] FORMATTING:hyperlinks broken into 2 after saving

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130723

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

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 134474] not able to type kannada unicode some words like ಯರ್‍ರಿಸ್ವಾಮಿ

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134474

--- Comment #2 from QA Administrators  ---
Dear Director dsert,

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 129031] distorted lines

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129031

--- Comment #18 from QA Administrators  ---
Dear Jochen,

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 127190] FILESAVE: math crashes when export to pdf (steps: comment 8, not always reproducible)

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127190

--- Comment #29 from QA Administrators  ---
Dear VincentYu,

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 122160] Dragging text on Impress leaves marks behind

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122160

--- Comment #3 from QA Administrators  ---
Dear Rodrigo Garcia Martin,

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 139191] charts with primary and secondary charts same main lines

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139191

--- Comment #6 from paulyste...@web.de ---
Yes, I see here this feature.

It should be automatically calculated, but also with the possibility of its own
count value in the options windows of the y-axes.

But the max value or the step size should also be corrected by hand like now.

-- 
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


Building LO on Raspberry pi 4b, error: unknown attribute 'externally_visible' on jni part

2020-12-30 Thread julien2412
Hello,

I'm giving a try at building LO on Raspberry pi 4b.
Here's the autogen.input I use:
CC=clang
CXX=clang++
--enable-compiler-plugins
--enable-ext-nlpsolver
--enable-ext-ct2n
--enable-ext-numbertext
--enable-ext-wiki-publisher
--enable-dbus
--enable-online-update
--enable-werror
--enable-dependency-tracking
--enable-python=fully-internal
--without-system-mariadb
--enable-bundle-mariadb
--enable-symbols
--enable-avahi
--enable-eot
--enable-odk
--with-lang=en-US fr
--with-myspell-dicts

Here's the first (I expect others) errors I get:
In file included from
/home/pi/lo/libreoffice/bean/native/unix/com_sun_star_comp_beans_LocalOfficeWindow.c:26:
/usr/lib/jvm/java-11-openjdk-armhf/include/jni.h:1945:1: error: unknown
attribute 'externally_visible' ignored [-Werror,-Wunknown-attributes]
_JNI_IMPORT_OR_EXPORT_ jint JNICALL
^
/usr/lib/jvm/java-11-openjdk-armhf/include/jni.h:1943:32: note: expanded
from macro '_JNI_IMPORT_OR_EXPORT_'
#define _JNI_IMPORT_OR_EXPORT_ JNIIMPORT
   ^
/usr/lib/jvm/java-11-openjdk-armhf/include/linux/jni_md.h:35:42: note:
expanded from macro 'JNIIMPORT'
#define JNIIMPORT
__attribute__((externally_visible,visibility("default")))
 ^
In file included from
/home/pi/lo/libreoffice/bean/native/unix/com_sun_star_comp_beans_LocalOfficeWindow.c:26:
/usr/lib/jvm/java-11-openjdk-armhf/include/jni.h:1948:1: error: unknown
attribute 'externally_visible' ignored [-Werror,-Wunknown-attributes]
_JNI_IMPORT_OR_EXPORT_ jint JNICALL
^
/usr/lib/jvm/java-11-openjdk-armhf/include/jni.h:1943:32: note: expanded
from macro '_JNI_IMPORT_OR_EXPORT_'
#define _JNI_IMPORT_OR_EXPORT_ JNIIMPORT
   ^
/usr/lib/jvm/java-11-openjdk-armhf/include/linux/jni_md.h:35:42: note:
expanded from macro 'JNIIMPORT'
#define JNIIMPORT
__attribute__((externally_visible,visibility("default")))
 ^
In file included from
/home/pi/lo/libreoffice/bean/native/unix/com_sun_star_comp_beans_LocalOfficeWindow.c:26:
/usr/lib/jvm/java-11-openjdk-armhf/include/jni.h:1951:1: error: unknown
attribute 'externally_visible' ignored [-Werror,-Wunknown-attributes]
_JNI_IMPORT_OR_EXPORT_ jint JNICALL
^
/usr/lib/jvm/java-11-openjdk-armhf/include/jni.h:1943:32: note: expanded
from macro '_JNI_IMPORT_OR_EXPORT_'
#define _JNI_IMPORT_OR_EXPORT_ JNIIMPORT
   ^
/usr/lib/jvm/java-11-openjdk-armhf/include/linux/jni_md.h:35:42: note:
expanded from macro 'JNIIMPORT'
#define JNIIMPORT
__attribute__((externally_visible,visibility("default")))
 ^
In file included from
/home/pi/lo/libreoffice/bean/native/unix/com_sun_star_comp_beans_LocalOfficeWindow.c:26:
/usr/lib/jvm/java-11-openjdk-armhf/include/jni.h:1955:1: error: unknown
attribute 'externally_visible' ignored [-Werror,-Wunknown-attributes]
JNIEXPORT jint JNICALL
^
/usr/lib/jvm/java-11-openjdk-armhf/include/linux/jni_md.h:34:42: note:
expanded from macro 'JNIEXPORT'
#define JNIEXPORT
__attribute__((externally_visible,visibility("default")))
 ^
In file included from
/home/pi/lo/libreoffice/bean/native/unix/com_sun_star_comp_beans_LocalOfficeWindow.c:26:
/usr/lib/jvm/java-11-openjdk-armhf/include/jni.h:1958:1: error: unknown
attribute 'externally_visible' ignored [-Werror,-Wunknown-attributes]
JNIEXPORT void JNICALL
^
/usr/lib/jvm/java-11-openjdk-armhf/include/linux/jni_md.h:34:42: note:
expanded from macro 'JNIEXPORT'
#define JNIEXPORT
__attribute__((externally_visible,visibility("default")))
 ^
In file included from
/home/pi/lo/libreoffice/bean/native/unix/com_sun_star_comp_beans_LocalOfficeWindow.c:28:
In file included from
/usr/lib/jvm/java-11-openjdk-armhf/include/linux/jawt_md.h:31:
/usr/lib/jvm/java-11-openjdk-armhf/include/jawt.h:337:1: error: unknown
attribute 'externally_visible' ignored [-Werror,-Wunknown-attributes]
_JNI_IMPORT_OR_EXPORT_
^
/usr/lib/jvm/java-11-openjdk-armhf/include/jni.h:1943:32: note: expanded
from macro '_JNI_IMPORT_OR_EXPORT_'
#define _JNI_IMPORT_OR_EXPORT_ JNIIMPORT
   ^
/usr/lib/jvm/java-11-openjdk-armhf/include/linux/jni_md.h:35:42: note:
expanded from macro 'JNIIMPORT'
#define JNIIMPORT
__attribute__((externally_visible,visibility("default")))
 ^
6 errors generated.
make[1]: *** [/home/pi/lo/libreoffice/solenv/gbuild/LinkTarget.mk:238 :
/home/pi/lo/libreoffice/workdir/CObject/bean/native/unix/com_sun_star_comp_beans_LocalOfficeWindow.o]
Erreur 1


Is it possible to fix this or can we just workaround this by forcing clang
to ignore these?

Julien



--
Sent from: 
http://document-foundation-mail-archive.969070.n3.nabble.com/Dev-f1639786.html
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org

[Libreoffice-commits] core.git: Branch 'feature/wasm' - 249 commits - accessibility/inc accessibility/Library_acc.mk accessibility/source autogen.sh avmedia/Library_avmediavlc.mk avmedia/Module_avmedi

2020-12-30 Thread Jan-Marek Glogowski (via logerrit)
Rebased ref, commits from common ancestor:
commit f85ec31b3a2d4101a587e0878212df5ae9c0a11a
Author: Jan-Marek Glogowski 
AuthorDate: Thu Dec 31 00:25:16 2020 +0100
Commit: Jan-Marek Glogowski 
CommitDate: Thu Dec 31 00:56:50 2020 +0100

Link writer

Change-Id: Ic475e2a9c5c9f493eb1b897dc8356aed5523037d

diff --git a/vcl/Executable_ui-previewer.mk b/vcl/Executable_ui-previewer.mk
index 8c0988ad67a1..bd3eb0036c0d 100644
--- a/vcl/Executable_ui-previewer.mk
+++ b/vcl/Executable_ui-previewer.mk
@@ -17,6 +17,7 @@ $(eval $(call gb_Executable_use_externals,ui-previewer,\
 boost_system \
 cairo \
 dtoa \
+epubgen \
 expat \
 fontconfig \
 freetype \
@@ -43,6 +44,7 @@ $(eval $(call gb_Executable_use_externals,ui-previewer,\
 orcus-parser \
 qrcodegen \
 qt5 \
+revenge \
 ) \
 ))
 
diff --git a/wasm/CustomTarget_components.mk b/wasm/CustomTarget_components.mk
index 0ba6e57eddbb..cb188166d894 100644
--- a/wasm/CustomTarget_components.mk
+++ b/wasm/CustomTarget_components.mk
@@ -19,6 +19,6 @@ $(wasm_WORKDIR)/component_maps.cxx: \
$(SRCDIR)/solenv/bin/native-code.py \
| $(wasm_WORKDIR)/.dir
$(call gb_Output_announce,$(subst $(BUILDDIR)/,,$@),$(true),GEN,2)
-   $(call gb_Helper_abbreviate_dirs,$(call 
gb_ExternalExecutable_get_command,python) $< -g core) > $@
+   $(call gb_Helper_abbreviate_dirs,$(call 
gb_ExternalExecutable_get_command,python) $< -g core -g writer) > $@
 
 # vim: set noet sw=4:
commit 6d93744463ecb3cc6eed40b5631b66d8c9a9b6bb
Author: Jan-Marek Glogowski 
AuthorDate: Tue Dec 29 11:49:50 2020 +0100
Commit: Jan-Marek Glogowski 
CommitDate: Thu Dec 31 00:56:50 2020 +0100

Add a static components library

This adds all component libraries as dependency to a new components
library, which otherwise just contains the "native" code with the
mapping of the component constructors.

Since there is no way to know, which components are actually used,
this has to include all build components.

Change-Id: Ie78af06c3325c0f58226a4c4da85a1d64fb45dc6

diff --git a/Makefile.gbuild b/Makefile.gbuild
index 6df4904421bd..f55f72c3da94 100644
--- a/Makefile.gbuild
+++ b/Makefile.gbuild
@@ -54,6 +54,10 @@ $(foreach lib,$(call gb_LinkTarget__get_link_depends,$(1)),
 ))
 endef
 
+ifeq ($(OS),EMSCRIPTEN)
+$(foreach lib,$(gb_Library_KNOWNLIBS),$(if $(call 
gb_Library__get_component,$(lib)),$(eval $(call 
gb_Library_use_libraries,components,$(lib)
+endif
+
 # gb_LinkTarget__fill_static_libs and gb_LinkTarget__remove_mark must run 
separate loops!
 $(foreach lib,$(gb_Library_KNOWNLIBS),$(eval $(call 
gb_LinkTarget__fill_static_libs,$(lib
 $(foreach lib,$(gb_Library_KNOWNLIBS),$(eval $(call 
gb_LinkTarget__remove_mark,$(call gb_Library_get_linktarget,$(lib)
diff --git a/Repository.mk b/Repository.mk
index 8d3fe5be50bd..2b5d597fc01b 100644
--- a/Repository.mk
+++ b/Repository.mk
@@ -345,6 +345,7 @@ $(eval $(call 
gb_Helper_register_libraries_for_install,OOOLIBS,ooo, \
$(call gb_Helper_optional,OPENCL,clew) \
$(if $(filter $(OS),WNT),,cmdmail) \
cppcanvas \
+   $(if $(filter $(OS),EMSCRIPTEN),components) \
configmgr \
ctl \
cui \
diff --git a/i18npool/Library_i18npool.mk b/i18npool/Library_i18npool.mk
index 6bbab747d462..da044da5b9b9 100644
--- a/i18npool/Library_i18npool.mk
+++ b/i18npool/Library_i18npool.mk
@@ -25,6 +25,17 @@ $(eval $(call gb_Library_use_libraries,i18npool,\
i18nlangtag \
i18nutil \
sal \
+$(if $(DISABLE_DYNLOADING), \
+collator_data \
+dict_ja \
+dict_zh \
+index_data \
+localedata_en \
+localedata_es \
+localedata_euro \
+localedata_others \
+textconv_dict \
+) \
 ))
 
 $(eval $(call gb_Library_use_externals,i18npool,\
diff --git a/i18nutil/source/utility/paper.cxx 
b/i18nutil/source/utility/paper.cxx
index 4e94f9b36a14..91b7bccb8376 100644
--- a/i18nutil/source/utility/paper.cxx
+++ b/i18nutil/source/utility/paper.cxx
@@ -233,7 +233,7 @@ PaperInfo PaperInfo::getSystemDefaultPaper()
 if (bInitialized)
 return aInstance;
 
-#ifndef MACOSX
+#if ! defined(MACOSX) && ! defined(EMSCRIPTEN)
 // try libpaper
 // #i78617# workaround missing paperconf command
 FILE* pPipe = popen( "paperconf 2>/dev/null", "r" );
diff --git a/idl/source/objects/types.cxx b/idl/source/objects/types.cxx
index 9cb1684caffc..52110127b842 100644
--- a/idl/source/objects/types.cxx
+++ b/idl/source/objects/types.cxx
@@ -251,7 +251,7 @@ void SvMetaType::WriteSfxItem(
 
 // write the implementation part
 rOutStm.WriteCharPtr( "#ifdef SFX_TYPEMAP" ) << endl;
-rOutStm.WriteCharPtr( "#if !defined(_WIN32) && 
(defined(DISABLE_DYNLOADING) && (defined(ANDROID) || defined(IOS) || 
defined(LINUX)))" ) << endl;
+rOutStm.WriteCharPtr( "#if 

[Libreoffice-bugs] [Bug 139330] New: UI is unfriendly, opening a new layer instead of the last one when the layer tab list is full

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139330

Bug ID: 139330
   Summary: UI is unfriendly, opening a new layer instead of the
last one when the layer tab list is full
   Product: LibreOffice
   Version: 7.0.3.1 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: chris.cows...@gmail.com

Description:
I work with a lot of layers, sometimes too many for the window of layer tabs.
When the tab window is full, if I click on the rightmost tab it slides left and
shows me a default new layer.  That's OK, but if I doubleclick on the rightmost
tab, instead of opening the dialogue to let me alter its visibility or
protected status, it creates and opens the default new layer.

The result is opening a dialogue for an existing layer becomes a
click-pause-shiftleft-doubleclick process for the last layer in the list.

It would seem  more intuitive for the creation and renaming of a new layer to
be the less convenient process of the two.

Not urgent, obviously.


Steps to Reproduce:
1.Use as many layers as will fill the tab space available
2.Right click on the right-most layer tab & protect it
3.Notice that you have just protected a brand new layer, not the one you meant
to.

Actual Results:
3 above

Expected Results:
Expected the layer selected to be protected


Reproducible: Always


User Profile Reset: No



Additional Info:
[Information automatically included from LibreOffice]
Locale: en-GB
Module: DrawingDocument
[Information guessed from browser]
OS: Windows (All)
OS is 64bit: no?  Yes it is AMD64.  Edge is lying

gerrit.libreoffice.org / core / d7547858d014d4cf69878db179d326fc3483e082

-- 
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 139230] Two images disappear on copy/paste if anchored to single position without a character present

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139230

neuf...@gmail.com changed:

   What|Removed |Added

 Ever confirmed|0   |1
Version|7.2.0.0.alpha0+ Master  |7.0.3.1 release
 Status|UNCONFIRMED |NEW

--- Comment #2 from neuf...@gmail.com ---
Could reproduce the bug in:
Version: 7.0.3.1 (x64)
Build ID: d7547858d014d4cf69878db179d326fc3483e082
CPU threads: 4; OS: Windows 10.0 Build 19041; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL

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

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


[Libreoffice-bugs] [Bug 139325] LO writer hangs/crashes--can't access my large ODT data file

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139325

--- Comment #4 from Hal  ---
I can't disclose content of my large document because it's confidential.

-- 
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 139325] LO writer hangs/crashes--can't access my large ODT data file

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139325

--- Comment #3 from Hal  ---
Here is LibreOffice's info on the crash as displayed on my computer:

Problem signature:
  Problem Event Name:   AppHangB1
  Application Name: soffice.bin
  Application Version:  7.1.0.1
  Application Timestamp:5fe0aea6
  Hang Signature:   41d1
  Hang Type:0
  OS Version:   6.1.7601.2.1.0.256.1
  Locale ID:1033
  Additional Hang Signature 1:  41d14a07f412abb51e7c59723139db62
  Additional Hang Signature 2:  2807
  Additional Hang Signature 3:  28072662d24236c2074800053da32aef
  Additional Hang Signature 4:  41d1
  Additional Hang Signature 5:  41d14a07f412abb51e7c59723139db62
  Additional Hang Signature 6:  2807
  Additional Hang Signature 7:  28072662d24236c2074800053da32aef

Read our privacy statement online:
  http://go.microsoft.com/fwlink/?linkid=104288=0x0409

If the online privacy statement is not available, please read our privacy
statement offline:
  C:\Windows\system32\en-US\erofflps.txt

-- 
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 97075] GL: flicker creating calc window ...

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97075

--- Comment #5 from Leyan  ---
*** Bug 97074 has been marked as a duplicate of this bug. ***

-- 
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 97074] flicker creating window ...

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97074

Leyan  changed:

   What|Removed |Added

 Resolution|FIXED   |DUPLICATE

--- Comment #1 from Leyan  ---


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

-- 
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 139314] Bugzilla / account registration too vulnerable for spammers

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139314

--- Comment #3 from Buovjaga  ---
(In reply to Matthijs from comment #2)
> (In reply to Buovjaga from comment #1)
> > Bugzilla 6 will have antispam functionality
> 
> Thanks Buovjaga for your response. Great that Bugzilla 6 will have antispam
> functionality. Any idea when Bugzilla 6 will be implemented?

It's a long and painful story (at least how I feel after all this waiting). BZ
6 has been ready for a long time, but tangled in Mozilla's fork. Now, thanks to
the  harmonising efforts of very dedicated individuals over the years, both in
hired & volunteer capacity, it is close to a release.

The release is basically waiting for the final polish and validation of this
database schema migration code: https://github.com/bugzilla/harmony/pull/52

-- 
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 139272] Clear formatting in table causes switch from Table Content style to Default formatting

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139272

--- Comment #12 from V Stuart Foote  ---
(In reply to Sascha Z from comment #11)
> Just out of curiosity:
> Why does LibO not use default paragraph style inside table cells on creation
> time?

It comes from what is defined in the 'standard' template, and there is actually
some thought (bug 47295) to rework the templates so very little would end up
with 'Default' PS. Which of course would require additional dev effort to
better manage style defaults for fall back when styles by object type are
'cleared'.

Styled 'Table contents' are necessary bcz we now also have Table styles.

-- 
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 139328] example Euler-Lagrange equation is wrong

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139328

--- Comment #3 from Jean-Baptiste Faure  ---
(In reply to Jean-Baptiste Faure from comment #2)
> (In reply to Ming Hua from comment #1)
> > Thanks for reporting, this mistake has been fixed in master:
> > https://git.libreoffice.org/core/+/ad8485ebe11396aaac68095ef9eec819de6af26c
> > 
> > It probably should be backported for 7.1 though.
> 
> Yes, I just found this commit.
> 
> @Laurent BP: is it possible to backport your commit to 7.0?
> 
> Best regards. JBF

Sorry, I meant 7.1.

Best regards. JBF

-- 
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 139325] LO writer hangs/crashes--can't access my large ODT data file

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139325

--- Comment #2 from Hal  ---
1.  I can't open my ODT file.  When I try to open it, LO Writer simply hangs.  

2.  I can't send you my ODT data file because it is confidential preventing me
from disclosing its content.

-- 
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 139323] Calc stopped calculating

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139323

Ming Hua  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||ming.v@qq.com
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from Ming Hua  ---
There is a switch in Calc that make it show formula instead of the result, and
can be turned on/off via menu View > Show Formula or keyboard shortcut Ctrl+`
(` is the key to the left of 1 key on an ordinary English keyboard).

Since you can not reproduce the problem, it's likely that you pressed the
shortcut by accident and turned on this "show formula instead of result"
feature.  It does not seem to be saved when closing LibreOffice, which explains
why saving document, closing and reopening fixed your problem.

If you disagree but can not give exact procedures to reproduce the problem, I'm
afraid we can't help you much and have to close this bug.

-- 
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 139328] example Euler-Lagrange equation is wrong

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139328

Jean-Baptiste Faure  changed:

   What|Removed |Added

 CC||jumbo4...@yahoo.fr

--- Comment #2 from Jean-Baptiste Faure  ---
(In reply to Ming Hua from comment #1)
> Thanks for reporting, this mistake has been fixed in master:
> https://git.libreoffice.org/core/+/ad8485ebe11396aaac68095ef9eec819de6af26c
> 
> It probably should be backported for 7.1 though.

Yes, I just found this commit.

@Laurent BP: is it possible to backport your commit to 7.0?

Best regards. JBF

-- 
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 139272] Clear formatting in table causes switch from Table Content style to Default formatting

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139272

--- Comment #11 from Sascha Z  ---
Just out of curiosity:
Why does LibO not use default paragraph style inside table cells on creation
time?

-- 
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 139074] CRASH on Paste from clipboard into dialog or other floating window, paste to document canvas is fine; Windows only?

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139074

Ming Hua  changed:

   What|Removed |Added

 CC||bright.em...@gmail.com

--- Comment #21 from Ming Hua  ---
*** Bug 139327 has been marked as a duplicate of this bug. ***

-- 
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 139327] Crash when copy/paste any text into 'Rename sheet' dialogue box

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139327

Ming Hua  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 CC||ming.v@qq.com
 Status|UNCONFIRMED |RESOLVED

--- Comment #1 from Ming Hua  ---
Thanks for reporting.  This is a known issue and has been reported as bug
139074, therefore I'm marking this as a DUPLICATE.

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

-- 
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 139328] example Euler-Lagrange equation is wrong

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139328

Ming Hua  changed:

   What|Removed |Added

 Whiteboard||target:7.2.0
 CC||ming.v@qq.com
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #1 from Ming Hua  ---
Thanks for reporting, this mistake has been fixed in master:
https://git.libreoffice.org/core/+/ad8485ebe11396aaac68095ef9eec819de6af26c

It probably should be backported for 7.1 though.

-- 
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 139329] Hatching and pattern fill options present on objects but not for page background

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139329

mwtjunkm...@gmail.com changed:

   What|Removed |Added

 CC||mwtjunkm...@gmail.com

--- Comment #1 from mwtjunkm...@gmail.com ---
Created attachment 168584
  --> https://bugs.documentfoundation.org/attachment.cgi?id=168584=edit
screen capture of sidebar

Difference between setting the fill on an object versus the page background.

-- 
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 139296] Text font size changes when scrolling document with a mouse

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139296

--- Comment #5 from spokanemagn...@gmail.com ---
(In reply to V Stuart Foote from comment #4)
> What you show is screen tearing, extending horizontally across entire lines
> of text as the document canvas is redrawn with scrolling (by mouse, touch
> pad, or cursor arrows).
> 
> It has nothing to do with font metrics and the rendering of the fonts.
> Likewise it probably has nothing to do with your mouse hardware & drivers
> (the scroll size is not read from your mouse settings, rather from LO
> program settings).
> 
> Skia rendering is enabled by default with the Windows builds. You must
> explicitly disable it to revert to "default" GDI based rendering by CPU
> (with optional CPU controlled Hardware Acceleration).
> 
> We need to know if the tearing continues when you eliminate Skia and switch
> to GDI rendering.
> 
> Also, we need to know your graphics hardware, so before disabling Skia--with
> Vulkan rendering enabled--copy the contents of the Skia.log from
> %APPDATA%\LibreOFfice\4\cache\skia.log  and if present the opengl_device.log


Ah, the term tearing explains it perfectly. Why I didn't think of that term, I
don't know. I found another possible bug in that when I checked for updates, it
would tell me I am current--but I found out that there was a newer version
(7.0.4.2), so I updated, but that did not fix the problem. I also tried running
it as an administrator (even though I only have one account, an administrator
account), but that did not fix the problem either. 

I thought I was onto something when I deselected the Math baseline alignment
under Tools>Options>LO Writer>Formatting Aids, but this morning I checked and
the checkbox was once again selected--and the tearing problem was back, even
though I had pressed Apply and OK the evening before.

The %APPDATA%\LO\4\cache\skia.log file that you requested only contained these
two lines of text:

RenderMethod: raster
Compiler: Clang

There was on opengl_device.log file.

After the change to deselect Skia, which I had done before without it fixing
the problem, the %APPDATA%\...\skia.log file contained the following:

DriverVersion: 20.19.15.5107
DriverDate: 11-15-2019
DeviceID: PCI\VEN_8086_22B1_10C01043_21
AdapterVendorID: 0x8086
AdapterDeviceID: 0x22b1
AdapterSubsysID: 0x10c01043
DeviceKey:
System\CurrentControlSet\Control\Video\{BCDC4E8B-D8FD-11EA-918F-B232891AD31F}\
DeviceString: Intel(R) HD Graphics

The dramatic difference in file size makes me think I might have messed up when
I copied the file before the skia change (perhaps LO has to be open at the
time, and I cannot remember if I had opened it before I hunted for the files
you requested. 

So, I made the change from Skia to using the hardware accelerator, and the Math
baseline alignment checkbox is again selected, and I it still fails. I did
notice another clue, and that is that if I turn off the Toggle Automatic Spell
Checking, then turn it right back on, the tearing text goes away without having
to scroll the page up or down passed the torn text and then back again.

-- 
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 139329] New: Hatching and pattern fill options present on objects but not for page background

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139329

Bug ID: 139329
   Summary: Hatching and pattern fill options present on objects
but not for page background
   Product: LibreOffice
   Version: 7.2.0.0.alpha0+ Master
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mwtjunkm...@gmail.com

Description:
Selecting Hatching or Pattern for a page background does not provide the
various types of fills for these options.  They're available for objects.

Steps to Reproduce:
1. Launch Microsoft Windows LibreOffice 7.2.0.0
2. Create a new Draw document
3. Select either Hatching or Pattern for the background option

Actual Results:
No hatching or pattern fill options appear after step 3.

Expected Results:
Hatching or pattern fill options should appear after step 3.


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.2.0.0.alpha0+ (x64)
Build ID: c0eee433e079d8e3413f4691607e075b99af92b0
CPU threads: 8; OS: Windows 10.0 Build 21277; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL

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


[Libreoffice-bugs] [Bug 139328] New: example Euler-Lagrange equation is wrong

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139328

Bug ID: 139328
   Summary: example Euler-Lagrange equation is wrong
   Product: LibreOffice
   Version: 7.1.0.1 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Formula Editor
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jbfa...@libreoffice.org

Description:
The right parenthesis in the example "Euler-Lagrange equation" is misplaced

Steps to Reproduce:
1. Open Math module
2. in the left panel choose example
3. look at Euler-Lagrange equation

Actual Results:
d over dt left( {partial L}over{partial dot q} = {partial L}over{partial q}
right)

Expected Results:
The right parenthesis must be before the equal sign:
d over dt left( {partial L}over{partial dot q} right) = {partial L}over{partial
q}


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.1.0.1.0+
Build ID: 3c44c403791754207142c60183a118c323b9c297
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3
Locale: fr-FR (fr_FR.UTF-8); UI: fr-FR
Ubuntu_18.04_x86-64
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' - external/cairo

2020-12-30 Thread Stephan Bergmann (via logerrit)
 external/cairo/UnpackedTarball_cairo.mk  |1 
 external/cairo/cairo/0001-Fix-mask-usage-in-image-compositor.patch.1 |   54 
++
 2 files changed, 55 insertions(+)

New commits:
commit 76cde069bcbb16c043e0a40925fd271d234eac53
Author: Stephan Bergmann 
AuthorDate: Tue Dec 29 10:56:48 2020 +0100
Commit: Caolán McNamara 
CommitDate: Wed Dec 30 22:26:36 2020 +0100

external/cairo: Fix mask usage in image-compositor

Change-Id: Id3d8e4715e295290e07146ef06898b313ead57a5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108449
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 
(cherry picked from commit c767e91c725b504db08e84b1fd25b11bfc33a4cc)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108344
Reviewed-by: Caolán McNamara 

diff --git a/external/cairo/UnpackedTarball_cairo.mk 
b/external/cairo/UnpackedTarball_cairo.mk
index dfd79d673be1..920722c2e77a 100644
--- a/external/cairo/UnpackedTarball_cairo.mk
+++ b/external/cairo/UnpackedTarball_cairo.mk
@@ -16,6 +16,7 @@ $(eval $(call gb_UnpackedTarball_add_patches,cairo,\
external/cairo/cairo/cairo-libtool-rpath.patch.1 \
external/cairo/cairo/cairo.oldfreetype.patch \
external/cairo/cairo/san.patch.0 \
+   external/cairo/cairo/0001-Fix-mask-usage-in-image-compositor.patch.1 \
 ))
 
 ifeq ($(OS),iOS)
diff --git 
a/external/cairo/cairo/0001-Fix-mask-usage-in-image-compositor.patch.1 
b/external/cairo/cairo/0001-Fix-mask-usage-in-image-compositor.patch.1
new file mode 100644
index ..c0431555b09a
--- /dev/null
+++ b/external/cairo/cairo/0001-Fix-mask-usage-in-image-compositor.patch.1
@@ -0,0 +1,54 @@
+From 03a820b173ed1fdef6ff14b4468f5dbc02ff59be Mon Sep 17 00:00:00 2001
+From: Heiko Lewin 
+Date: Tue, 15 Dec 2020 16:48:19 +0100
+Subject: [PATCH] Fix mask usage in image-compositor
+
+---
+ src/cairo-image-compositor.c|   8 ++--
+ test/Makefile.sources   |   1 +
+ test/bug-image-compositor.c |  39 
+ test/reference/bug-image-compositor.ref.png | Bin 0 -> 185 bytes
+ 4 files changed, 44 insertions(+), 4 deletions(-)
+ create mode 100644 test/bug-image-compositor.c
+ create mode 100644 test/reference/bug-image-compositor.ref.png
+
+diff --git a/src/cairo-image-compositor.c b/src/cairo-image-compositor.c
+index 79ad69f68..4f8aaed99 100644
+--- a/src/cairo-image-compositor.c
 b/src/cairo-image-compositor.c
+@@ -2610,14 +2610,14 @@ _inplace_src_spans (void *abstract_renderer, int y, 
int h,
+   unsigned num_spans)
+ {
+ cairo_image_span_renderer_t *r = abstract_renderer;
+-uint8_t *m;
++uint8_t *m, *base = (uint8_t*)pixman_image_get_data(r->mask);
+ int x0;
+ 
+ if (num_spans == 0)
+   return CAIRO_STATUS_SUCCESS;
+ 
+ x0 = spans[0].x;
+-m = r->_buf;
++m = base;
+ do {
+   int len = spans[1].x - spans[0].x;
+   if (len >= r->u.composite.run_length && spans[0].coverage == 0xff) {
+@@ -2655,7 +2655,7 @@ _inplace_src_spans (void *abstract_renderer, int y, int 
h,
+ spans[0].x, y,
+ spans[1].x - spans[0].x, h);
+ 
+-  m = r->_buf;
++  m = base;
+   x0 = spans[1].x;
+   } else if (spans[0].coverage == 0x0) {
+   if (spans[0].x != x0) {
+@@ -2684,7 +2684,7 @@ _inplace_src_spans (void *abstract_renderer, int y, int 
h,
+ #endif
+   }
+ 
+-  m = r->_buf;
++  m = base;
+   x0 = spans[1].x;
+   } else {
+   *m++ = spans[0].coverage;
+[test code changes removed]
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'libreoffice-7-0' - external/cairo

2020-12-30 Thread Stephan Bergmann (via logerrit)
 external/cairo/UnpackedTarball_cairo.mk  |1 
 external/cairo/cairo/0001-Fix-mask-usage-in-image-compositor.patch.1 |   54 
++
 2 files changed, 55 insertions(+)

New commits:
commit 76abecb3978603308db2edc6401a92a44f42f4e4
Author: Stephan Bergmann 
AuthorDate: Tue Dec 29 10:56:48 2020 +0100
Commit: Caolán McNamara 
CommitDate: Wed Dec 30 22:26:09 2020 +0100

external/cairo: Fix mask usage in image-compositor

Change-Id: Id3d8e4715e295290e07146ef06898b313ead57a5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108449
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 
(cherry picked from commit c767e91c725b504db08e84b1fd25b11bfc33a4cc)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/108345
Reviewed-by: Caolán McNamara 

diff --git a/external/cairo/UnpackedTarball_cairo.mk 
b/external/cairo/UnpackedTarball_cairo.mk
index 8e45e9c28c1d..e52c1af54c58 100644
--- a/external/cairo/UnpackedTarball_cairo.mk
+++ b/external/cairo/UnpackedTarball_cairo.mk
@@ -14,6 +14,7 @@ $(eval $(call 
gb_UnpackedTarball_set_tarball,cairo,$(CAIRO_TARBALL),,cairo))
 $(eval $(call gb_UnpackedTarball_add_patches,cairo,\
external/cairo/cairo/cairo-1.10.2.patch \
external/cairo/cairo/cairo-libtool-rpath.patch.1 \
+   external/cairo/cairo/0001-Fix-mask-usage-in-image-compositor.patch.1 \
 ))
 
 ifeq ($(OS),iOS)
diff --git 
a/external/cairo/cairo/0001-Fix-mask-usage-in-image-compositor.patch.1 
b/external/cairo/cairo/0001-Fix-mask-usage-in-image-compositor.patch.1
new file mode 100644
index ..c0431555b09a
--- /dev/null
+++ b/external/cairo/cairo/0001-Fix-mask-usage-in-image-compositor.patch.1
@@ -0,0 +1,54 @@
+From 03a820b173ed1fdef6ff14b4468f5dbc02ff59be Mon Sep 17 00:00:00 2001
+From: Heiko Lewin 
+Date: Tue, 15 Dec 2020 16:48:19 +0100
+Subject: [PATCH] Fix mask usage in image-compositor
+
+---
+ src/cairo-image-compositor.c|   8 ++--
+ test/Makefile.sources   |   1 +
+ test/bug-image-compositor.c |  39 
+ test/reference/bug-image-compositor.ref.png | Bin 0 -> 185 bytes
+ 4 files changed, 44 insertions(+), 4 deletions(-)
+ create mode 100644 test/bug-image-compositor.c
+ create mode 100644 test/reference/bug-image-compositor.ref.png
+
+diff --git a/src/cairo-image-compositor.c b/src/cairo-image-compositor.c
+index 79ad69f68..4f8aaed99 100644
+--- a/src/cairo-image-compositor.c
 b/src/cairo-image-compositor.c
+@@ -2610,14 +2610,14 @@ _inplace_src_spans (void *abstract_renderer, int y, 
int h,
+   unsigned num_spans)
+ {
+ cairo_image_span_renderer_t *r = abstract_renderer;
+-uint8_t *m;
++uint8_t *m, *base = (uint8_t*)pixman_image_get_data(r->mask);
+ int x0;
+ 
+ if (num_spans == 0)
+   return CAIRO_STATUS_SUCCESS;
+ 
+ x0 = spans[0].x;
+-m = r->_buf;
++m = base;
+ do {
+   int len = spans[1].x - spans[0].x;
+   if (len >= r->u.composite.run_length && spans[0].coverage == 0xff) {
+@@ -2655,7 +2655,7 @@ _inplace_src_spans (void *abstract_renderer, int y, int 
h,
+ spans[0].x, y,
+ spans[1].x - spans[0].x, h);
+ 
+-  m = r->_buf;
++  m = base;
+   x0 = spans[1].x;
+   } else if (spans[0].coverage == 0x0) {
+   if (spans[0].x != x0) {
+@@ -2684,7 +2684,7 @@ _inplace_src_spans (void *abstract_renderer, int y, int 
h,
+ #endif
+   }
+ 
+-  m = r->_buf;
++  m = base;
+   x0 = spans[1].x;
+   } else {
+   *m++ = spans[0].coverage;
+[test code changes removed]
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 139316] [WIKIHELP] Wrong use of double quotation marks in sample formula

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139316

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

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |sdc.bla...@youmail.dk
   |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 139261] Image anchor jumping unexpected position

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139261

mulla.tasa...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||mulla.tasa...@gmail.com
 Ever confirmed|0   |1

--- Comment #2 from mulla.tasa...@gmail.com ---
Thank you for reporting the bug.

I can confirm that the bug is present in

Version: 7.0.3.1 (x64)
Build ID: d7547858d014d4cf69878db179d326fc3483e082
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL

Version: 7.2.0.0.alpha0+ (x64)
Build ID: 761a672d62df1891b9f4f367a499b220ab2b33fa
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL

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


[Libreoffice-bugs] [Bug 70759] Apply Style toolbar "Clear formatting" action sets "Text Body" instead of "Default Style" from LO 4.1+

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=70759

V Stuart Foote  changed:

   What|Removed |Added

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

-- 
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 70759] Apply Style toolbar "Clear formatting" action sets "Text Body" instead of "Default Style" from LO 4.1+

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=70759

V Stuart Foote  changed:

   What|Removed |Added

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

-- 
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 139272] Clear formatting in table causes switch from Table Content style to Default formatting

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139272

V Stuart Foote  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=70
   ||759
 Resolution|--- |NOTABUG
   Keywords|needsUXEval |
 CC|libreoffice-ux-advise@lists |
   |.freedesktop.org|
 Status|UNCONFIRMED |RESOLVED

--- Comment #10 from V Stuart Foote  ---
(In reply to Dave Barton from comment #9)
> (In reply to V Stuart Foote from comment #8)
> 
> This is not about clearing "Direct Manual Formatting eg. Ctrl+M", it is
> about "Clear Formatting" of styles for one or more selected paragraphs,
> using the paragraph styles drop down list in the formatting toolbar. See
> point 3 of comment 3.
> 
> The point being that a paragraph within a cell is exactly the same as a
> paragraph in any other element of of a Writer document.
> 
> What is being asked for is to change a function of the software that has
> existed (with a minor refinement bug 70759) for over 20 years.

Oh, sorry. From the 'Set Paragraph Style' listbox, we are not 'Clear
Formatting' we are actually applying a default paragraph style.

In that case, taking each of the Paragraph objects held in cells back to
'Default paragraph style' is reasonable as it is the only way to assure
consistency--and effectively apply a new style. As described resolving the see
also bug 70759.

It would be much harder to reliably parse the current source template and
divine what default style should be applied.

Use case here to get back to 'Table Contents', would be no different than what
was fixed for bug 70759 where 'Text body' was being applied.

So for consistent results, work flows should include a "clear" that reverts to
'Default Paragraph style', and a second style action to apply the final style
to selected paragraphs. 

Agree with the NAB and no change.

-- 
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 139272] Clear formatting in table causes switch from Table Content style to Default formatting

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139272

V Stuart Foote  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=70
   ||759
 Resolution|--- |NOTABUG
   Keywords|needsUXEval |
 CC|libreoffice-ux-advise@lists |
   |.freedesktop.org|
 Status|UNCONFIRMED |RESOLVED

--- Comment #10 from V Stuart Foote  ---
(In reply to Dave Barton from comment #9)
> (In reply to V Stuart Foote from comment #8)
> 
> This is not about clearing "Direct Manual Formatting eg. Ctrl+M", it is
> about "Clear Formatting" of styles for one or more selected paragraphs,
> using the paragraph styles drop down list in the formatting toolbar. See
> point 3 of comment 3.
> 
> The point being that a paragraph within a cell is exactly the same as a
> paragraph in any other element of of a Writer document.
> 
> What is being asked for is to change a function of the software that has
> existed (with a minor refinement bug 70759) for over 20 years.

Oh, sorry. From the 'Set Paragraph Style' listbox, we are not 'Clear
Formatting' we are actually applying a default paragraph style.

In that case, taking each of the Paragraph objects held in cells back to
'Default paragraph style' is reasonable as it is the only way to assure
consistency--and effectively apply a new style. As described resolving the see
also bug 70759.

It would be much harder to reliably parse the current source template and
divine what default style should be applied.

Use case here to get back to 'Table Contents', would be no different than what
was fixed for bug 70759 where 'Text body' was being applied.

So for consistent results, work flows should include a "clear" that reverts to
'Default Paragraph style', and a second style action to apply the final style
to selected paragraphs. 

Agree with the NAB and no change.

-- 
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 139314] Bugzilla / account registration too vulnerable for spammers

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139314

--- Comment #2 from Matthijs  ---
(In reply to Buovjaga from comment #1)
> Bugzilla 6 will have antispam functionality

Thanks Buovjaga for your response. Great that Bugzilla 6 will have antispam
functionality. Any idea when Bugzilla 6 will be implemented?

-- 
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 139327] New: Crash when copy/paste any text into 'Rename sheet' dialogue box

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139327

Bug ID: 139327
   Summary: Crash when copy/paste any text into 'Rename sheet'
dialogue box
   Product: LibreOffice
   Version: 7.2.0.0.alpha0+ Master
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bright.em...@gmail.com

Description:
LO crashes every time I try to rename a sheet in Calc by pasting anything into
the renaming dialogue box. It does not matter if OpenCL is enabled or not.

Steps to Reproduce:
1. Open Calc and start a new document
2. Double-click of the sheet's name to bring up the 'Rename sheet' dialogue box
3. Paste anything you copied elsewhere such as the word "Alice" into the
dialogue box

Actual Results:
LO crashes immediately.

Expected Results:
The pasted text must show in the dialogue box.


Reproducible: Always


User Profile Reset: No



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

Processor   Intel(R) Core(TM) i5-7400 CPU @ 3.00GHz   3.00 GHz
Installed RAM   12.0 GB
System type 64-bit operating system, x64-based processor
Edition Windows 10 Home
Version 20H2
Installed on‎2020-‎06-‎05
OS build19042.685
Experience  Windows Feature Experience Pack 120.2212.551.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 139266] Page border not exported into DOCX

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139266

--- Comment #5 from Telesto  ---
(In reply to NISZ LibreOffice Team from comment #4)
> But there is a lot of problems with this one. There is a section followed by
> a text:soft-page-break - how does even one create that in Writer?

For a difference a self-made doc. Made by the following:
Insert -> Section -> Column Tab -> Click Two Column template

-- 
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 139325] LO writer hangs/crashes--can't access my large ODT data file

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139325

mulla.tasa...@gmail.com changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO
 CC||mulla.tasa...@gmail.com

--- Comment #1 from mulla.tasa...@gmail.com ---
Thank you for reporting the bug. Please attach a sample document, as this makes
it easier for us to verify the bug. 
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the requested document is provided.
(Note that the attachment will be public, remove any sensitive information
before attaching it.
See the QA FAQ Wiki for further detail.)

-- 
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 137826] weird Heading 4

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137826

Telesto  changed:

   What|Removed |Added

 Resolution|FIXED   |WORKSFORME
 CC||vstuart.fo...@utsa.edu

--- Comment #7 from Telesto  ---
(In reply to TorrAB from comment #6)
> (In reply to Telesto from comment #4)
> > It's hidden direct formatting.. remove all direct formatting and it will 
> > work
> 
> OK. But… what is ‘hidden direct formatting’? How/why would I do it if I
> cannot see it?

The style Inspector (LibreOffice 7.1) is able to show the issue. The C is
formatted with a specific Direct Character formatting. 

However no clue how this exactly happened.. I think

Selecting C.. Changing font size to say 16, and revert it back to 12. So more
or less what's debated in bug 135871

Except in this case not about highlighting or bold, but font size

-- 
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 139326] Crash if I "Use Wizard to Create Report"

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139326

Tim  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|UNCONFIRMED |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 133092] [META] Crash bugs

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133092
Bug 133092 depends on bug 135675, which changed state.

Bug 135675 Summary: Crash opening Report containing an image in a placeholder 
control - macOS 10.13 specific
https://bugs.documentfoundation.org/show_bug.cgi?id=135675

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

-- 
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 135675] Crash opening Report containing an image in a placeholder control - macOS 10.13 specific

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135675

Tim  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

--- Comment #32 from Tim  ---
Just downloaded Version 7.0.4.2 and bug is solved!!! Thanks!

-- 
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 139326] Crash if I "Use Wizard to Create Report"

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139326

--- Comment #2 from Tim  ---
I've just downloaded Version 7.0.4.2 and seems to be solved!

Now it works, but when I select the Table or Query, I have to hold down the
mouse button to be able to select the right one.

Also it's solved one of the other bugs, when tryingo to insert an image.

Lets see if others are also solved. Thank you for your work!

-- 
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 130447] [META] DOCX (OOXML) section-related issues

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130447

NISZ LibreOffice Team  changed:

   What|Removed |Added

 Depends on||139266


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=139266
[Bug 139266] Page border not exported into DOCX
-- 
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 139266] Page border not exported into DOCX

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139266

NISZ LibreOffice Team  changed:

   What|Removed |Added

 CC||jl...@mail.com,
   ||libreoff...@nisz.hu
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=64
   ||372
   Keywords|bibisectRequest |bibisected, bisected
 Blocks||130447

--- Comment #4 from NISZ LibreOffice Team  ---
Border from the second page started to disappear at:

https://cgit.freedesktop.org/libreoffice/core/commit/?id=a60b2f7c227709d27d6294558fd396557a9ffd20

author  Justin Luth2016-07-04 21:39:37 +0300
committer   Miklos Vajna   2016-07-08 07:24:10
+

tdf#64372 docx import: don't ignore continuous section break

Adding CC to: Justin Luth

But there is a lot of problems with this one. There is a section followed by a
text:soft-page-break - how does even one create that in Writer?


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=130447
[Bug 130447] [META] DOCX (OOXML) section-related 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 137826] weird Heading 4

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137826

tor...@yahoo.com changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|NEEDINFO|RESOLVED

--- Comment #6 from tor...@yahoo.com ---
(In reply to Telesto from comment #4)
> It's hidden direct formatting.. remove all direct formatting and it will work

OK. But… what is ‘hidden direct formatting’? How/why would I do it if I cannot
see it?

-- 
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 139324] Table of Contents Not Working Properly

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139324

Jean-Baptiste Faure  changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
 Status|UNCONFIRMED |RESOLVED
 CC||jbfa...@libreoffice.org

--- Comment #2 from Jean-Baptiste Faure  ---
The bug is on your side: you did not use header styles in your document.
https://help.libreoffice.org/latest/en-US/text/swriter/guide/indices_toc.html

Closing as WorksForMe.

Best regards. JBF

-- 
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 139326] Crash if I "Use Wizard to Create Report"

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139326

--- Comment #1 from Tim  ---
I've just downloaded Version 7.0.4.2 and seems to be solved! Now it works.

-- 
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 122652] [META] Memory problems in LibreOffice

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122652
Bug 122652 depends on bug 118339, which changed state.

Bug 118339 Summary: Memory used for RTF paste is only released after document 
close
https://bugs.documentfoundation.org/show_bug.cgi?id=118339

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME

-- 
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 118339] Memory used for RTF paste is only released after document close

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118339

Telesto  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #3 from Telesto  ---
Lets close.. looks reasonably OK.. slowness more annoying

-- 
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 109040] [META] RTF paste special bugs and enhancements

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109040
Bug 109040 depends on bug 118339, which changed state.

Bug 118339 Summary: Memory used for RTF paste is only released after document 
close
https://bugs.documentfoundation.org/show_bug.cgi?id=118339

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME

-- 
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 89606] [META] Table of Contents and Indexes bugs and enhancements

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89606
Bug 89606 depends on bug 135241, which changed state.

Bug 135241 Summary: Table of Contents: allow adjustment of space between text 
lines and page numbers
https://bugs.documentfoundation.org/show_bug.cgi?id=135241

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 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-ux-advise] [Bug 135241] Table of Contents: allow adjustment of space between text lines and page numbers

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135241

Timur  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WONTFIX

--- Comment #8 from Timur  ---
No response, so I close.. Anyway, this never was justified.

-- 
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 135241] Table of Contents: allow adjustment of space between text lines and page numbers

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135241

Timur  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WONTFIX

--- Comment #8 from Timur  ---
No response, so I close.. Anyway, this never was justified.

-- 
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 139321] [META] XLSX (OOXML) Image issues

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139321

Thomas Lendo  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||thomas.le...@gmail.com
 Ever confirmed|0   |1

-- 
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 139326] New: Crash if I "Use Wizard to Create Report"

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139326

Bug ID: 139326
   Summary: Crash if I "Use Wizard to Create Report"
   Product: LibreOffice
   Version: 7.0.3.1 release
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: woodf...@pobox.com

Description:
On an existing Database, with previous Reports I can execute, but not now creat
a new Report with Wizard option. I can do it using "Creat Report in Design
View" or copy and modify an existing one.

Steps to Reproduce:
1.Open Base
2.Use Wizard to Create Report
3.

Actual Results:
Just clicking on "Use Wizard to Create Report"

Expected Results:
Have the Wizard going on


Reproducible: Always


User Profile Reset: Yes



Additional Info:
It happend allready on one o two previuos release of LibreOffice.
I still suffer other crushes reported many months ago without solution. All
after changing to embeden Firebird.

-- 
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 139272] Clear formatting in table causes switch from Table Content style to Default formatting

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139272

--- Comment #9 from Dave Barton  ---
(In reply to V Stuart Foote from comment #8)

This is not about clearing "Direct Manual Formatting eg. Ctrl+M", it is about
"Clear Formatting" of styles for one or more selected paragraphs, using the
paragraph styles drop down list in the formatting toolbar. See point 3 of
comment 3.

The point being that a paragraph within a cell is exactly the same as a
paragraph in any other element of of a Writer document.

What is being asked for is to change a function of the software that has
existed (with a minor refinement bug 70759) for over 20 years.

-- 
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 139272] Clear formatting in table causes switch from Table Content style to Default formatting

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139272

--- Comment #9 from Dave Barton  ---
(In reply to V Stuart Foote from comment #8)

This is not about clearing "Direct Manual Formatting eg. Ctrl+M", it is about
"Clear Formatting" of styles for one or more selected paragraphs, using the
paragraph styles drop down list in the formatting toolbar. See point 3 of
comment 3.

The point being that a paragraph within a cell is exactly the same as a
paragraph in any other element of of a Writer document.

What is being asked for is to change a function of the software that has
existed (with a minor refinement bug 70759) for over 20 years.

-- 
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 80430] [META] Documentation gap for new features

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80430
Bug 80430 depends on bug 116381, which changed state.

Bug 116381 Summary: Update Calc documentation for image handling improvements
https://bugs.documentfoundation.org/show_bug.cgi?id=116381

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

-- 
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 116381] Update Calc documentation for image handling improvements

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116381

Bala  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

-- 
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 80430] [META] Documentation gap for new features

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80430
Bug 80430 depends on bug 84455, which changed state.

Bug 84455 Summary: UI: HELP: Missing hint that {Edit  ► Changes ► Record} will 
disable {Data  ► Group and Outline ► Group}
https://bugs.documentfoundation.org/show_bug.cgi?id=84455

   What|Removed |Added

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

-- 
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 139325] New: LO writer hangs/crashes--can't access my large ODT data file

2020-12-30 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139325

Bug ID: 139325
   Summary: LO writer hangs/crashes--can't access my large ODT
data file
   Product: LibreOffice
   Version: 7.0.3.1 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tech...@yahoo.com

Description:
FACTS:

I'm using LO 7.0.3.1 writer on Win7 with approx 280 pages in a single ODT
document.  My ODT document contains written text, tables, and 250 or so resized
medium resolution jpg images within Frames.  My ODT data file is formatted in
book-like fashion to perhaps be published.  

When I tried to add one more jpg image LO crashes (hangs).  I can't access,
update, or save my updated ODT file. LO doesn't crash when I open smaller LO
data files.  My LO ODT data file that crashes is approx 75MB.  

I reinstalled an earlier LO version and the problem still occurs.  
Interestingly, when I open a much smaller document containing images LO doesn't
crash.  For some strange reason it seems LO can't properly handle the large
size and complexity of my .odt file.  

A few of my ODT images are 'compressed' 
using LO.  Others are compressed using Photoshop.  

I don't want to abandon LO because it is a great software 
application that I have routinely used for years.

QUESTIONS:  

(1) Is there a problem with LO7 (and earlier versions) with large writer ODT
files containing many large images, captions, tablers, etc?
(2) Any solutions for the hangup problem?
(3) How do I recover my ODT file?

NOTE: I can't disclose content of my large document because it's confidential.

Actual Results:
See above Description of crash description.

Expected Results:
It crashes/hangs.  can't do anything with LO once it crashes.  The bottom line
shows "Loading document".  

Expected results: document should have been loaded and accessible for editing.


Reproducible: Always


User Profile Reset: Yes



Additional Info:
Version: 7.0.3.1 (x64)
Build ID: d7547858d014d4cf69878db179d326fc3483e082
CPU threads: 8; OS: Windows 6.1 Service Pack 1 Build 7601; UI render:
Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: threaded

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


  1   2   3   4   >