[Libreoffice-bugs] [Bug 135943] FILEOPEN: DOCX: LayoutInCell Frame and and text split on import (comment 4)

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135943

Justin L  changed:

   What|Removed |Added

Summary|FILEOPEN: DOCX: Frame and   |FILEOPEN: DOCX:
   |and text split on export|LayoutInCell Frame and and
   ||text split on import
   ||(comment 4)

--- Comment #9 from Justin L  ---
(In reply to Commit Notification from comment #8)
> tdf#135943 writerfilter: ignore compat LayoutInCell for txbx

This just avoids creating the compat15 LO problem that is already seen in
attachment 165272 from comment 7. But this is NOT how MS Word will see it, so
the underlying problem of textbox/frame syncing needs to be fixed first, and
then that commit can be reverted.

-- 
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 135943] FILEOPEN: DOCX: Frame and and text split on export

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135943

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.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 135943] FILEOPEN: DOCX: Frame and and text split on export

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135943

--- Comment #8 from Commit Notification 
 ---
Justin Luth committed a patch related to this issue.
It has been pushed to "master":

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

tdf#135943 writerfilter: ignore compat LayoutInCell for txbx

It will be available in 7.1.0.

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

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

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


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

2020-09-09 Thread Justin Luth (via logerrit)
 
sw/qa/extras/ooxmlexport/data/tdf135943_shapeWithText_LayoutInCell0_compat15.docx
 |binary
 sw/qa/extras/ooxmlexport/ooxmlexport14.cxx 
   |   23 ++
 writerfilter/source/dmapper/GraphicImport.cxx  
   |   17 ++-
 3 files changed, 38 insertions(+), 2 deletions(-)

New commits:
commit d865ae748ae3b1d054051b89938eaef30680e06c
Author: Justin Luth 
AuthorDate: Tue Sep 8 16:49:09 2020 +0300
Commit: Justin Luth 
CommitDate: Thu Sep 10 07:40:04 2020 +0200

tdf#135943 writerfilter: ignore compat LayoutInCell for txbx

... until such a time when the underlying problem of
textbox position not syncing with the moved frame is fixed.

Bug 77794 moved the frame to the correct position,
but the text only followed when going to the frame property,
looking at the values, and pressing OK.

So, it seems like the layout is re-positioning the frame,
but that frame change is not being synchronized back
to the paired up textbox.

Since I couldn't figure out how to resolve that,
I'm just temporarily avoiding the problem
that my 7.1 change for tdf#77794 has exposed.
That means that the textbox/frame is in the wrong position
(same as in previous LO versions), but at least the
text is inside of the frame.

Change-Id: I7dc712c613b164317bc4adf19ac231488d610c95
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102258
Tested-by: Justin Luth 
Tested-by: Jenkins
Reviewed-by: Justin Luth 

diff --git 
a/sw/qa/extras/ooxmlexport/data/tdf135943_shapeWithText_LayoutInCell0_compat15.docx
 
b/sw/qa/extras/ooxmlexport/data/tdf135943_shapeWithText_LayoutInCell0_compat15.docx
new file mode 100644
index ..b4bbcb94e82c
Binary files /dev/null and 
b/sw/qa/extras/ooxmlexport/data/tdf135943_shapeWithText_LayoutInCell0_compat15.docx
 differ
diff --git a/sw/qa/extras/ooxmlexport/ooxmlexport14.cxx 
b/sw/qa/extras/ooxmlexport/ooxmlexport14.cxx
index 834c59c785c2..fcbda86665cd 100644
--- a/sw/qa/extras/ooxmlexport/ooxmlexport14.cxx
+++ b/sw/qa/extras/ooxmlexport/ooxmlexport14.cxx
@@ -111,6 +111,29 @@ DECLARE_OOXMLEXPORT_TEST(testTdf135595_HFtableWrap, 
"tdf135595_HFtableWrap.odt")
 CPPUNIT_ASSERT_MESSAGE("Image must be contained inside the table cell", 
nRowHeight > 2000);
 }
 
+DECLARE_OOXMLEXPORT_TEST(testTdf135943_shapeWithText_L0c15,
+ "tdf135943_shapeWithText_LayoutInCell0_compat15.docx")
+{
+// With compat15, layoutinCell ought to be ignored/forced to true.
+// HOWEVER, currently only the shape is correctly placed, while its text 
is un-synced separately.
+// So to prevent this ugly mess, just leave everything together in the 
historical (wrong) spot.
+xmlDocUniquePtr pDump = parseLayoutDump();
+sal_Int32 nFrameLeft = getXPath(pDump, 
"//anchored/SwAnchoredDrawObject/bounds", "left").toInt32();
+sal_Int32 nFrameRight = getXPath(pDump, 
"//anchored/SwAnchoredDrawObject/bounds", "right").toInt32();
+sal_Int32 nTextLeft = getXPath(pDump, "//anchored/fly/infos/bounds", 
"left").toInt32();
+sal_Int32 nTextRight = getXPath(pDump, "//anchored/fly/infos/bounds", 
"right").toInt32();
+// The text must be inside of its frame boundaries
+CPPUNIT_ASSERT(nFrameRight >= nTextRight);
+CPPUNIT_ASSERT(nFrameLeft <= nTextLeft);
+// LayoutInCell: The text must fit inside cell A1 
//cell[1]/info/bounds/right = 4703
+//CPPUNIT_ASSERT(nTextRight < 4704);
+
+uno::Reference xShapeProperties(getShape(1), 
uno::UNO_QUERY);
+bool bValue;
+xShapeProperties->getPropertyValue("IsFollowingTextFlow") >>= bValue;
+CPPUNIT_ASSERT_EQUAL_MESSAGE("YOU FIXED ME? LayoutInCell ought to be 
true", false, bValue);
+}
+
 DECLARE_OOXMLEXPORT_TEST(testTdf135595_HFtableWrap_c12, 
"tdf135595_HFtableWrap_c12.docx")
 {
 xmlDocUniquePtr pXmlDoc = parseLayoutDump();
diff --git a/writerfilter/source/dmapper/GraphicImport.cxx 
b/writerfilter/source/dmapper/GraphicImport.cxx
index dde3e1adb3b7..9853bb48bb1e 100644
--- a/writerfilter/source/dmapper/GraphicImport.cxx
+++ b/writerfilter/source/dmapper/GraphicImport.cxx
@@ -206,6 +206,7 @@ public:
 sal_Int16 nVertRelation;
 text::WrapTextMode nWrap;
 bool  bLayoutInCell;
+bool  bCompatForcedLayoutInCell;
 bool bAllowOverlap = true;
 bool  bOpaque;
 bool  bBehindDoc;
@@ -273,6 +274,7 @@ public:
 ,nVertRelation( text::RelOrientation::FRAME )
 ,nWrap(text::WrapTextMode_NONE)
 ,bLayoutInCell(true)
+,bCompatForcedLayoutInCell(false)
 ,bOpaque( !rDMapper.IsInHeaderFooter() )
 ,bBehindDoc(false)
 ,bContour(false)
@@ -626,8 +628,10 @@ void GraphicImport::lcl_attribute(Id nName, Value& rValue)
 break;
 case NS_ooxml::LN_CT_Anchor_layoutInCell: // 90991; - ignored
 // Starting in MSO 2013, anchors are ALWAYS considered to be laid 
out in table 

[Libreoffice-bugs] [Bug 133049] Libreoffice Writer displays wrong glyph for GFS Didot

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133049

--- Comment #9 from Buovjaga  ---
Just for completeness, please copy and paste here the contents of your Help -
About. In 6.4 this is done by left-clicking on the text and pressing Ctrl-C. In
7.0, there is a button for copying.

-- 
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: sw/qa writerfilter/source

2020-09-09 Thread Justin Luth (via logerrit)
 sw/qa/extras/rtfexport/data/tdf136587_noStyleName.rtf |   13 +
 sw/qa/extras/rtfexport/rtfexport4.cxx |9 +
 writerfilter/source/dmapper/StyleSheetTable.cxx   |2 +-
 3 files changed, 23 insertions(+), 1 deletion(-)

New commits:
commit 2dc30bd6ee88a2e3a1b4607c144f151e7329f3b9
Author: Justin Luth 
AuthorDate: Wed Sep 9 12:48:04 2020 +0300
Commit: Justin Luth 
CommitDate: Thu Sep 10 07:31:25 2020 +0200

tdf#136587 writerfilter: prevent exception in applyStyleSheets

The only thing that a style needs to be valid is a name.
In this case, there was no name imported, so the
exception killed the import of the rest of the styles.

As a test, I forced the empty name to "junk"
and that also worked, so I am fairly confident
that this is all that is necessary to prevent
an exception.

This improves on 7.1 commit for tdf#68326.

NOTE: this unit test does prove that LO is not importing
the Normal style at all. It should import with
fontsize 32. So a proper reading of the RTF file
would also have solved the bug.

Change-Id: I9258bf985a501952dcd5aa52e54f920c99e509f9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102315
Tested-by: Jenkins
Reviewed-by: Justin Luth 

diff --git a/sw/qa/extras/rtfexport/data/tdf136587_noStyleName.rtf 
b/sw/qa/extras/rtfexport/data/tdf136587_noStyleName.rtf
new file mode 100644
index ..7255d893f392
--- /dev/null
+++ b/sw/qa/extras/rtfexport/data/tdf136587_noStyleName.rtf
@@ -0,0 +1,13 @@
+{\rtf1\ansi\uc1\deff0\deflang1033\deflangfe1033\ansicpg1252\deftab0
+{\fonttbl{\fnil\f0\fcharset0\fprq0 Arial;}}
+{\colortbl;\red0\green0\blue0;\red255\green255\blue255;}
+{\stylesheet
+{\nowidctlpar\widctlpar\ql\li0\ri0\faauto\itap0\f0\fs20\snext0 \sbasedon0\fs64 
Normal;}
+{\s15\nowidctlpar \sbasedon0\qc\tqc\tx5670\fs20 Style15;}
+{\s16\nowidctlpar \sbasedon0\tx60\fs20 Style16;}
+}
+\paperw12240\paperh15840\margl360\margr360\margt720\margb720\headery720\footery720
+\b0\i0\strike0\ul0\f0\fs20\cf0\chcbpat0
+{\footer
+\plain\fs20\sl-228\s15\tqc\tx5670\fs20\tqc\tx5670  \cf1 Page 1 of 
4\par\pard\cf0\sl-252\par\pard\sl-228\s16\tx60\fs20\tx60 \cf1 Printed:  
5/11/2012\par}
+\cf0\sl-355\tqc\tx5789 \cf1\fs24\b 
AGENDA\par\pard\b0\fs20\cf0\sl-283\par\pard\sl-283\tqc\tx5790   \cf1\fs24\b 
MUNICIPAL CODE ENFORCEMENT BOARD\par\pard\sl-283\b0\fs20\cf0\tqc\tx5790 
\cf1\fs24\b Commission Chambers\par\pard\sl-283\b0\fs20\cf0\tqc\tx5790  
\cf1\fs24\b 201 Highland Ave\par\pard\sl-283\b0\fs20\cf0\tqc\tx5790 
\cf1\fs24\b Thursday, May 31, 2012\par\pard\sl-283\b0\fs20\cf0\tqc\tx5790   
\cf1\fs24\b 1:30 P. M.\par\pard\b0\fs20\cf0\sl-283\par\pard\sl-283\tqc\tx5790   
\cf1\fs24\b\ul Cases may be heard in the order listed on the sign in 
sheet.\par\pard\sl-283\b0\ul0\fs20\cf0\tqc\tx5789  \cf1\fs24\b\ul Sign in 
starts at 1:15 p.m. on the day of the hearing in the Commission 
Chambers.\par\pard\b0\ul0\fs20\cf0\sl-283\par\pard\sl-263\tx240\tx600\tx960 
 \cf1\fs22\b I.CALL TO 
ORDER\par\pard\sl-263\b0\fs20\cf0\tx240\tx600\tx960\tx1320\tx1680   
  \cf1\fs22 Pledge of 
Allegiance\par\pard\fs20\cf0\sl-263\par\pard\sl-263\tx240\tx600\tx960   
\cf1\fs22\b II.   APPROVAL OF MINUTES\par\pard\sl-263\b0
 \fs20\cf0\tx240\tx600\tx960\tx1320\tx1680  
\cf1\fs22 April 26, 2012\par\pard\fs20\cf0\sl-372\par\pard\sl-100\tx10440   
\par\pard\sl-125\par\pard\sl-220\tx240\tx1080   \cf1\fs22\b III.CASES 
NOT BEING HEARD\par\pard\b0\fs20\cf0\sl-308\par\pard\sl-311\tx240\tx1080  
\cf1\fs22\b IV. PUBLIC HEARING\par\pard\sl-291\b0\fs20\cf0\tx1000   \cf1 
Swearing in of Speakers\par\pard\sl-250\cf0\tx1000 \cf1 Presentation 
Proceedures and Processes of the Code Enforcement 
Board\par\pard\cf0\sl-308\par\pard\sl-248\tx240\tx1080  \cf1\fs22\b V.  
CODE ENFORCEMENT BOARD CONSENT DOCKET\par\pard\sl-319\b0\fs20\cf0\tx1000
\cf1 The Respondents in the following cases came into compliance by the date 
Ordered by the Board. \par\pard\sl-228\cf0\tx1000  \cf1 There are no fines due. 
Request the Board to accept the Affidavits of 
Compliance.\par\pard\sl-300\cf0\tx60\tx779\tx2400\tqr\tx11400
\cf1\fs18\b  1  2012030118  \b0 A H F\_BAY FUND LLC 
In\_Compliance\par\pard\fs20\cf0\sl-104\par\pard\sl-204\tx2325  \cf1\fs18 1201  
SEMINOLE 
 BLVD  BLG 16 LARGO, FL  \par\pard\sl-204\fs20\cf0\tx2325   \cf1\fs18 
33771\par\pard\fs20\cf0\sl-127\par\pard\sl-204\tx660  \cf1\fs18 CDC 3203(F)1,  
PMC (EXTERMINATION; 
INFESTATION)\par\pard\fs20\cf0\sl-157\par\pard\sl-175\par\pard\sl-300\tx60\tx779\tx2400\tqr\tx11400
\cf1\fs18\b  2  2012030077  \b0 KEMP, JANET L / 
In\_Compliance\par\pard\fs20\cf0\sl-104\par\pard\sl-180\tx2325  \cf1\fs18 305  
INLET CT   CLEARWATER, FL  33756\par\pard\fs20\cf0\sl-355\par\pard\sl-204\tx660 
 \cf1\fs18 COO 11\_48,  

[Libreoffice-bugs] [Bug 103459] [META] Sidebar UI and UX bugs and enhancements

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103459

Ming Hua  changed:

   What|Removed |Added

 Depends on||133509


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=133509
[Bug 133509] Sidebar not displayed correctly when resized and overlapping with
the chart being edited
-- 
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 133509] Sidebar not displayed correctly when resized and overlapping with the chart being edited

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133509

Ming Hua  changed:

   What|Removed |Added

 Blocks||103459


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103459
[Bug 103459] [META] Sidebar UI and UX bugs and enhancements
-- 
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 136635] Change chart line Color about Series on Format Selection -> not change line Color on sidebar

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136635

--- Comment #1 from sawakaze  ---
Created attachment 165346
  --> https://bugs.documentfoundation.org/attachment.cgi?id=165346=edit
ScreenCast

if my description is uncleared, please see screen cast.

-- 
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 136635] New: Change chart line Color about Series on Format Selection -> not change line Color on sidebar

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136635

Bug ID: 136635
   Summary: Change chart line Color about Series on Format
Selection -> not change line Color on sidebar
   Product: LibreOffice
   Version: 7.1.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Chart
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: souichi...@gmail.com

Description:
after following steps, line color on sidebar was changed.
So, Aria color was changed.

if my description is uncleared, please see screencast. 

Steps to Reproduce:
1. open calc
2. input data
3. create chart (Chart type is line)
4. select chart and series
5. menu -> Format -> Format Selection
--> Open Data Series Dialog
6. Open Line tab
7. Change Color

Actual Results:
On side bar 
Aria Color was changed
Line Color was not changed

Expected Results:
On side bar 
Aria Color is not changed
Line Color is changed


Reproducible: Always


User Profile Reset: No



Additional Info:
I confirmed 

Version: 7.1.0.0.alpha0+
Build ID: e00e2be30436b636d93f8852bb6af44972638a7c
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3
Locale: ja-JP (ja_JP.UTF-8); UI: en-US
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2020-09-09_02:35:26
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 136634] Font feature descriptions for "Linux Biolinum G" et al. can't be localized

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136634

--- Comment #2 from Ming Hua  ---
Created attachment 165345
  --> https://bugs.documentfoundation.org/attachment.cgi?id=165345=edit
Screenshot of font feature dialog for "Times New Roman"

The font feature descriptions for other fonts are properly displayed in Chinese

-- 
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 135788] Substitute fonts Linux Libertine and Linux Biolinum with Libertinus

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135788

V Stuart Foote  changed:

   What|Removed |Added

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

-- 
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 136634] Font feature descriptions for "Linux Biolinum G" et al. can't be localized

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136634

--- Comment #1 from Ming Hua  ---
Created attachment 165344
  --> https://bugs.documentfoundation.org/attachment.cgi?id=165344=edit
Screenshot of font feature dialog for "Linux Biolinum G"

The font descriptions are displayed in English, even in Chinese UI

-- 
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 136604] Unbundle the Source font families and remove them from our templates

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136604

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #3 from V Stuart Foote  ---
(In reply to Mike Kaganski from comment #2)

I suppose (pensive sigh here...)

But, how do we feel about LibreOffice as a demonstration platform for Graphite
smart font features--Tim & Martin from SIL put a lot of effort in with Lazlo,
and Khaled used a lot of their framework for OpenFont support with the Harfbuzz
implementation.

Do we dump Linux Libertine G and Linux Biolinum G outright? Or, maybe recognize
unique capabilities of Graphite framework, and as for bug 135788 build Khaled's
Libertinus with Graphite support, and swap it in as a viable Graphite enabled
font?

-- 
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 136634] New: Font feature descriptions for "Linux Biolinum G" et al. can't be localized

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136634

Bug ID: 136634
   Summary: Font feature descriptions for "Linux Biolinum G" et
al. can't be localized
   Product: LibreOffice
   Version: 6.4.6.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Localization
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ming.v@qq.com
Blocks: 114068

My understanding is that the three fonts "Linux Biolinum G", "Linux Libertine
G", and "Linux Libertine Display G" have a rather special place in the fonts
bundled by LibreOffice, as they provice some feautures that are not available
in other free fonts.

However, if a user wants to explore the features provided by these fonts, they
are going to see a list of English text, instead of in their favorite local
language, even though these feature descriptions have been translated for LO,
and other fonts display localized feature descriptions.

Steps to reproduce:
1. Switch to a non-English UI language with font feature descriptions
translated (I use simplified Chinese, zh-CN);
2. Open a dialog that shows the font features button, for example in Writer,
the Format > Characters menu item, then select "Font" tab;
3. Choose "Linux Biolinum G" font, press "Features" button;
4. English feature descriptions are displayed (will attach screenshot);
5. Press "Cancel" to quit the features dialog, and choose a different font, say
"Times New Roman", then press "Features" button again;
5. Now localized feature descriptions are displayed (will also attach
screenshot).

This problem has been present for quite some time, I can now reproduce with
6.4.6 and 7.0.1, but likely reproducible with earlier versions as well.

Version: 7.0.1.2 (x64)
Build ID: 7cbcfc562f6eb6708b5ff7d7397325de9e764452
CPU threads: 2; OS: Windows 10.0 Build 18363; UI render: Skia/Raster; VCL: win
Locale: zh-CN (zh_CN); 界面: zh-CN
Calc: threaded
and
Version: 6.4.6.2 (x64)
Build ID: 0ce51a4fd21bff07a5c061082cc82c5ed232f115
CPU threads: 2; OS: Windows 10.0 Build 18363; UI render: default; VCL: win; 
Locale: zh-CN (zh_CN); UI-Language: en-US
Calc: threaded


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=114068
[Bug 114068] [META] Text strings that are not yet possible to localize or dont
appear localized
-- 
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 114068] [META] Text strings that are not yet possible to localize or dont appear localized

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114068

Ming Hua  changed:

   What|Removed |Added

 Depends on||136634


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=136634
[Bug 136634] Font feature descriptions for "Linux Biolinum G" et al. can't be
localized
-- 
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 136621] CALC INDIRECT() Function does not work correctly if local function separator for formulae is defined

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136621

--- Comment #3 from Colin  ---
(In reply to Eike Rathke from comment #2)
> 0. the Swedish currency symbol certainly is not ':' colon but 'kr' for
> Svensk krona instead.
> 
> If the function parameter separator is ';' semicolon then the formula
> =SUM(D1;INDIRECT(C1))
> returns the sum of two individual arguments, namely D1 and the reference
> returned by the call to INDIRECT(C1).
> 
> In the formula
> =SUM(D1:INDIRECT(C1))
> the ':' colon is the range operator so the range passed to sum is the result
> of D1 as one corner and the second corner is the reference returned by the
> call to INDIRECT(C1). So if C1 contains "D7" the resulting range is D1:D7
> passed to SUM().
> 
> There is no bug and not an esoteric issue, the function parameter separator
> is not misbehaving and there is no malfunction. It is simply that you were
> not aware of the syntax.

Hi Eike,
I inadvertently referred to the currency separator as the currency symbol.
The currency symbol is in fact the two character ISO country code for Sverige
which is "SE" plus the single character currency initial "K" hence "SEK". The
currency separator for numerical representations of the value is the colon with
two potential presentations - 123:25 when there are fractional portions and
123:- when it is a simple integer. The fractional representation is sometimes
also supplemented with "k" or "kr". As we have three local Kronor to contend
with (Danska, Norska och Svenska)monetary represetations become slightly
complicated.
Something has definitely gone wrong. Further experiments have identified that
if I use the "drag select" and Sigma [sum] function or alternatively the Sigma
[sum] function in an empty cell adjacent to "populated" data cells then the
system automatically writes two different formulae - one each with the colon
and semicolon separators. It also produces inconsistency when some of the
selected or inferred cells contain the results of their own formulae.
My assumption that it was the INDIRECT() function was indeed erroneous. I will
endeavour to clearly define the inconsistencies and submit a new report

-- 
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 136633] New: Text in LO brand logo rendered ugly when anti-aliasing is disabled

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136633

Bug ID: 136633
   Summary: Text in LO brand logo rendered ugly when anti-aliasing
is disabled
   Product: LibreOffice
   Version: 7.0.0.3 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ming.v@qq.com
Blocks: 103202

Created attachment 165343
  --> https://bugs.documentfoundation.org/attachment.cgi?id=165343=edit
Screenshot of the "About LibreOffice" dialog

When anti-aliasing feature is turned off, the text of the LibreOffice logo in
the "About LO" dialog is rendered with rugged boundary and very ugly, see
attached screenshot.

Steps to produce:
1. In Tools > Options > LibreOffice > View panel, find the "Use anti-aliasing"
option and uncheck it;
2. Restart LO as required;
3. Help > About LibreOffice to open the dialog, look at the LO logo.

Happens in 7.0 series only and not in 6.4 or earlier, presumably because the
logo was redesigned for 7.0?
Version: 7.0.1.2 (x64)
Build ID: 7cbcfc562f6eb6708b5ff7d7397325de9e764452
CPU threads: 2; OS: Windows 10.0 Build 18363; UI render: Skia/Raster; VCL: win
Locale: zh-CN (zh_CN); 界面: zh-CN
Calc: threaded

The problem persists when switched to English UI, as well as when Skia is
disabled.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103202
[Bug 103202] [META] About dialog bugs and enhancements
-- 
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 103202] [META] About dialog bugs and enhancements

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103202

Ming Hua  changed:

   What|Removed |Added

 Depends on||136633


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=136633
[Bug 136633] Text in LO brand logo rendered ugly when anti-aliasing is disabled
-- 
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 136632] New: Save transparency when exporting selected drawing objects is not working for PNG

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136632

Bug ID: 136632
   Summary: Save transparency when exporting selected drawing
objects is not working for PNG
   Product: LibreOffice
   Version: 6.3.6.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: nikunjbhat...@gmail.com

Description:
If object(s) is/are selected, exported as PNG when 'Save transparency' option
is NOT checked under 'Drawing Objects' section in the 'PNG options' dialog box,
the image is saved WITH transparency.

However if 'Selection' option is not checked in the Export dialog box (full
page is considered to be exported) then the 'Save transparency' option/checkbox
in last 'PNG options' dialog box is honoured.

Steps to Reproduce:
1. Add one or more objects in a page in Draw which could result in PNG
transparent image
2. Select all the objects
3. Open the Export wizard from File menu
4. Enter file name with PNG extension or select PNG from 'Filter' dropdown in
the Export dialog box
5. Check the option 'Selection' in the Export dialog box and click on 'Save'
button
6. In the PNG options dialog box, UNCHECK the 'Save transparency' checkbox
under section 'Drawing Objects'
7. Click on 'OK' button to finally export/save the image is PNG

Actual Results:
The PNG image is being saved with transparency

Expected Results:
The PNG image must not have transparency, it must have white pixels in place of
the transparent pixels.


Reproducible: Always


User Profile Reset: No



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

Version: 6.3.6.2
Build ID: 6.3.6.2-4.fc31
CPU threads: 4; OS: Linux 5.7; UI render: default; VCL: kde5; 
Locale: en-IN (en_IN.UTF-8); UI-Language: 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 136604] Unbundle the Source font families and remove them from our templates

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136604

--- Comment #2 from Mike Kaganski  ---
(In reply to V Stuart Foote from comment #1)
> some thought though to TDF sponsored font pack 'extensions'?

Please no. We are not a platform to distribute some unrelated products. If at
least those were created *for* LibreOffice! But fonts are just products of
respective unrelated projects, with their own distribution means.

-- 
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 135614] Image anchored to paragraph jump from third page to first page (anchor to character or to paragraph) ODT/DOCX not DOC

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135614

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 135998] Double clicking on a docx that has spaces in the path or file name generates an error but won't open

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135998

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 135581] Changing anchor from "to page" "to paragraph' or 'to character' moves the image to a total different position

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135581

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 135602] MSO/docx compatibility: substitute fonts not working when docx/odt saved as docx by LO

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135602

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 135832] UI: Configuring a bitmap to show on full page with custom position and size not easy to do/ user friendly

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135832

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 136153] FORMCONTROLS: Image Control should provide scrollbars for bigger images

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136153

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 136155] "Sort" Dialogue Box Too Large for Long Sort Keys

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136155

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 134186] Inserting a table into a new footer on page 1 scrolls to pag 3 with with prexisting footer and to last page with new created one

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134186

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 136102] Sidebar: Shadow Distance change will activate

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136102

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 133299] Option to set the default anchor mode for images in Calc

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133299

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-ux-advise] [Bug 136140] Sidebar: Fontwork sidebar is missing

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136140

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
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 136151] LO Does denies me as an administrator

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136151

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 136146] Group policy for update is ignored

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136146

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 136160] Chart displays incorrectly, but, if I double-click on it to edit, it then displays correctly (EDITING)

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136160

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 136145] Sidebar: 3d settings sidebar

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136145

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 136137] Restoring operability for Microsoft Visual Studio 2013

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136137

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 136140] Sidebar: Fontwork sidebar is missing

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136140

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 136026] Text Sidebar proposal

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136026

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 136075] Sidebar: remove separate List section in draw/impress

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136075

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 136130] FORMATTING: Paste table from LibreOffice is affecting mail text paragraph size in Thunderbird

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136130

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 135820] bad pivot table sheet relative reference auto-correction

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135820

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-ux-advise] [Bug 136102] Sidebar: Shadow Distance change will activate

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136102

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
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 136007] [Enhancement] Document Outline Collabora Online

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136007

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 124631] OLE link doe not show preview

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124631

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 107810] [META] OLE/Embedded object bugs and enhancements

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107810
Bug 107810 depends on bug 124631, which changed state.

Bug 124631 Summary: OLE link doe not show preview
https://bugs.documentfoundation.org/show_bug.cgi?id=124631

   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-ux-advise] [Bug 136075] Sidebar: remove separate List section in draw/impress

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136075

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
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 136026] Text Sidebar proposal

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136026

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

-- 
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 130562] Arrow moved automatically down after created

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130562

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 136600] Application Error crash at start ( psp::PrintFontManager::convertSfntName )

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136600

--- 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 133049] Libreoffice Writer displays wrong glyph for GFS Didot

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133049

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 133049] Libreoffice Writer displays wrong glyph for GFS Didot

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133049

--- Comment #8 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 130562] Arrow moved automatically down after created

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=130562

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

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 136600] Application Error crash at start ( psp::PrintFontManager::convertSfntName )

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136600

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 124631] OLE link doe not show preview

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124631

--- Comment #19 from QA Administrators  ---
Dear Dave Nadler,

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 129254] when copy and pasting lots of text from a pdf writer freezes

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129254

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

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 111959] Unnecessary selection activity after a change of locale which forces a change of separator character

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111959

--- Comment #9 from QA Administrators  ---
Dear Luis,

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 131276] problem with cloning the formatting (translation of cloner le formatage in french)

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131276

--- Comment #5 from QA Administrators  ---
Dear serge.bouc...@univ-tln.fr,

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 112084] The subsection dropdowns in the Page sidebar deck do not resize uniformly

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112084

--- Comment #3 from QA Administrators  ---
Dear Emil Tanev,

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 107962] Styles and Formatting deck's controls should all be disabled when inserting/selecting/editing a textbox

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107962

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://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 85976] Feature Request - Add "Remove Duplicates" button to LibreOffice / filtering showing duplicates is too complicated

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=85976

--- Comment #22 from stutisharma900  ---
Being the outstanding website development company in delhi It is renowned for
providing beautiful websites and allows you to enjoy the seamless experience
from website design and development to website optimization for various
platforms for all your website design and development needs. We work both for
higher rankings as well as for conversions. We are Top 5 Digital marketing
company in delhi that ensures your business visibility on top of the search
engines. At Wondermouse Technologies- website development company, our team has
a wealth of experience in making sure it is easy to use and professional.

https://www.wondermouse.in/web-development-company-in-delhi/
https://www.wondermouse.in/top-digital-marketing-company-in-delhi/
https://www.wondermouse.in/best-website-development-company-gurgaon/

-- 
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 135614] Image anchored to paragraph jump from third page to first page (anchor to character or to paragraph) ODT/DOCX not DOC

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135614

SteveDee  changed:

   What|Removed |Added

 CC||stevedee.atw...@gmail.com

--- Comment #2 from SteveDee  ---
I have been unable to reproduce the bug in the following builds:

Version: 6.4.6.2 (x64)
Build ID: 0ce51a4fd21bff07a5c061082cc82c5ed232f115
CPU threads: 4; OS: Windows 10.0 Build 18363; UI render: GL; VCL: win; 
Locale: en-AU (en_US); UI-Language: en-GB
Calc: CL

and

Version: 7.1.0.0.alpha0+ (x64)
Build ID: fb8334aa79e811bb6780e072e24d2580932f1031
CPU threads: 4; OS: Windows 10.0 Build 18363; UI render: Skia/Raster; VCL: win
Locale: en-AU (en_US); UI: en-GB
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 135602] MSO/docx compatibility: substitute fonts not working when docx/odt saved as docx by LO

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135602

SteveDee  changed:

   What|Removed |Added

 CC||stevedee.atw...@gmail.com

--- Comment #5 from SteveDee  ---
I have been unable to reproduce this bug in the following builds:

Version: 6.4.6.2 (x64)
Build ID: 0ce51a4fd21bff07a5c061082cc82c5ed232f115
CPU threads: 4; OS: Windows 10.0 Build 18363; UI render: GL; VCL: win; 
Locale: en-AU (en_US); UI-Language: en-GB
Calc: CL

and:

Version: 7.1.0.0.alpha0+ (x64)
Build ID: fb8334aa79e811bb6780e072e24d2580932f1031
CPU threads: 4; OS: Windows 10.0 Build 18363; UI render: Skia/Raster; VCL: win
Locale: en-AU (en_US); UI: en-GB
Calc: CL

I think this might be MacOS specific as outlined in the ask.libreoffice post.

-- 
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 134520] Remote Files FTP feature can not change charset, leading to error when opening file with Chinese filename

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134520

--- Comment #5 from m15611858...@163.com ---
(In reply to Ming Hua from comment #2)
> Please don't set bug status to NEW on your own.  It doesn't help anyone and
> usually reduces the chance that an interested QA/developer will see your bug.
> 
> 请不要自行将你提交的 bug 设为 NEW 状态。这样反而可能会让相关的质控人员和开发者看不到你的 bug 报告。
> 
> Also adding random aliases and keywords is frowned upon.
> 
> 自主加很多别名和关键词也是不礼貌的行为。

我不添加别人会看见吗?你看看最早什么时候发布的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 134520] Remote Files FTP feature can not change charset, leading to error when opening file with Chinese filename

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134520

--- Comment #4 from m15611858...@163.com ---
(In reply to m15611858237 from comment #3)
> I do not need somebody tell me about which is "frowned upon".I just post a
> bug about a software.If I don't add random aliases and keywords,maybe this
> bug will never be noticed.

-- 
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 134520] Remote Files FTP feature can not change charset, leading to error when opening file with Chinese filename

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134520

m15611858...@163.com changed:

   What|Removed |Added

Version|7.0.0.3 release |7.1.0.0.alpha0+ Master
 CC|ming.v@qq.com   |

--- Comment #3 from m15611858...@163.com ---
I don not need somebody tell me about which is "frowned upon".I just post a bug
about a software.If I don't add random aliases and keywords,maybe this bug will
never be noticed.

-- 
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 136631] Attempting to paste content from Notepad to LO .odt can fail

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136631

natedhee...@gmail.com changed:

   What|Removed |Added

Summary|Attempting to paste content |Attempting to paste content
   |from Notepad to LO .odt Can |from Notepad to LO .odt can
   |Fail|fail

-- 
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 136631] New: Attempting to paste content from Notepad to LO .odt Can Fail

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136631

Bug ID: 136631
   Summary: Attempting to paste content from Notepad to LO .odt
Can Fail
   Product: LibreOffice
   Version: 6.4.6.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: natedhee...@gmail.com

Description:
My workflow has me frequently copying/cutting content from a notepad .txt on my
first monitor to an LO .odt on my second monitor. Normally this works fine, but
recently I've run into an issue where sometimes LO thinks I have nothing
copied. When this happens and I right-click in the LO doc, the Paste option is
greyed out. But when I attempt to paste (w/out performing an additional copy)
in Notepad, it recognizes I have something copied and pastes it.

Obviously this bug is very irritating and interferes with my workflow. I can
generally finangle it to work after a bit (e.g., by closing and reopening the
LO doc, or moving the .txt to the second monitor and re-copying the content),
but not always consistently and I haven't hammered down an elegant solution to
this problem.

I have no idea if this can occur with other word processor programs besides the
combination of Notepad and LO, but I know that the copy-paste issue does not
happen between two notepad .txt's even when they're on separate screens.

It might be possible that this can occur with a single monitor setup, but so
far I've only run into this issue when using a second monitor.

It may be that a large document is necessary (think > 800 KB large w/ just text
and > 1200 headings) to reproduce this issue, as that's the only case that I've
run into this problem with so far.

One possibility I've thought of is that the computer going to sleep can somehow
make this possible afterward. I'll keep track of this to see if the issue ever
occurs for me before my computer has gone to sleep once.

Currently I'm using LO 7.1, but I first ran into this issue w/ 6.4. That was
actually why I upgraded to 7.1, hoping get rid of it, but it's still there.

Steps to Reproduce:
1. Open notepad on first monitor.
2. Open LO .odt on second monitor.
3. Continue to cut content from the notepad and paste it in the LO .odt until
the attempt to paste fails.

Actual Results:
On occasion LO will think you have nothing copied, and the paste option shows
as greyed out. Requires finangling to fix.

Expected Results:
Should paste the content currently in the clipboard.


Reproducible: Sometimes


User Profile Reset: No



Additional Info:
Running Windows 10.

-- 
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 131947] Writer sidebar minimum width is too wide when docked

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131947

--- Comment #13 from natedhee...@gmail.com ---
I am also experiencing this issue of excessive minimum width of the sidebar. I
like to have the navigator open at all times and document zoom at 120%, but the
sidebar's width overlaps with the page at that point. It's very irritating to
be unable to reduce the width of the sidebar farther, especially since there
don't seem to be any elements which demand the excess space. I would much
prefer being able to collapse the sidebar in a way that distorts it to being
forced to adhere to a fat minimum width.

My LO version is 7.1, but I've been experiencing it since at least 6.4.

My laptop screen is ~17", resolution of 1920x1080, and screen scaling at
recommended setting of 150%.

-- 
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 136630] Can't open help page about Insert -> Legend on Chart

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136630

--- Comment #1 from sawakaze  ---
Created attachment 165342
  --> https://bugs.documentfoundation.org/attachment.cgi?id=165342=edit
ScreenCast on version 6.2

if my description is uncleared. please see attachment.
Note: this screencast is version 6.2

-- 
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 136630] New: Can't open help page about Insert -> Legend on Chart

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136630

Bug ID: 136630
   Summary: Can't open help page about Insert -> Legend on Chart
   Product: LibreOffice
   Version: 6.2.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Documentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: souichi...@gmail.com
CC: olivier.hal...@libreoffice.org

Description:
After following step, Help page can't open.

if my description is uncleared, please see attachment screencast.

Steps to Reproduce:
1. open calc
2. input data
3. create chart
4. select chart object
5. menu -> Insert -> Legend
--> Open Legend Window
6. Press Help button

Actual Results:
Can't open help page about Legend

Help ID:  modules/schart/ui/dlg_InsertLegend/dlg_LegendPosition  

Expected Results:
open help page


Reproducible: Always


User Profile Reset: No



Additional Info:
I confirm both versions

(1) Version: 6.2.0.1
Build ID: 0412ee99e862f384c1106d0841a950c4cfaa9df1
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3; 
Locale: ja-JP (ja_JP.UTF-8); UI-Language: en-US
Calc: threaded

(2) 
Version: 7.1.0.0.alpha0+
Build ID: e00e2be30436b636d93f8852bb6af44972638a7c
CPU threads: 4; OS: Linux 4.15; UI render: default; VCL: gtk3
Locale: ja-JP (ja_JP.UTF-8); UI: en-US
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2020-09-09_02:35:26
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 133092] [META] Crash bugs

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133092

Aron Budea  changed:

   What|Removed |Added

 Depends on||136626


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=136626
[Bug 136626] Crash in BigPtrArray::Index2Block(...) after undoing the pasting
of a document
-- 
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 105948] [META] Undo/Redo bugs and enhancements

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105948

Aron Budea  changed:

   What|Removed |Added

 Depends on||136626


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=136626
[Bug 136626] Crash in BigPtrArray::Index2Block(...) after undoing the pasting
of a document
-- 
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 108843] [META] Clipboard bugs and enhancements

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108843

Aron Budea  changed:

   What|Removed |Added

 Depends on||136626


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=136626
[Bug 136626] Crash in BigPtrArray::Index2Block(...) after undoing the pasting
of a document
-- 
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 136626] Crash in BigPtrArray::Index2Block(...) after undoing the pasting of a document

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136626

Aron Budea  changed:

   What|Removed |Added

Summary|swlo!BigPtrArray::Index2Blo |Crash in
   |ck  |BigPtrArray::Index2Block(..
   ||.) after undoing the
   ||pasting of a document
 Ever confirmed|0   |1
Crash report or||["BigPtrArray::Index2Block(
crash signature||unsigned __int64)"]
 Blocks||105948, 108843, 133092
 CC||ba...@caesar.elte.hu
 Status|UNCONFIRMED |NEW

--- Comment #2 from Aron Budea  ---
Version field has 4.4.0.3, but that version isn't mentioned in the description.
Plus a crash report would've been nice.

https://crashreport.libreoffice.org/stats/crash_details/d74394f5-4140-490d-a81b-0991b303f42c

Confirmed in LO 7.0.0.3 / Windows.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=105948
[Bug 105948] [META] Undo/Redo bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=108843
[Bug 108843] [META] Clipboard bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=133092
[Bug 133092] [META] Crash bugs
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 136629] cppunit are not functioning

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136629

rsprupansh...@gmail.com changed:

   What|Removed |Added

 Resolution|--- |WONTFIX
 Status|NEW |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 136629] cppunit are not functioning

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136629

rsprupansh...@gmail.com changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

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


[Libreoffice-bugs] [Bug 136629] New: cppunit are not functioning

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136629

Bug ID: 136629
   Summary: cppunit are not functioning
   Product: cppunit
   Version: unspecified
  Hardware: PowerPC
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rsprupansh...@gmail.com
CC: markus.mohrh...@googlemail.com

steps to reproduce


expected


actaul



screenshot

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


[ANN] mdds 1.7.0 on master

2020-09-09 Thread Kohei Yoshida

Hi there,

I've just upgraded mdds on the master branch to 1.7.0.  You can find the 
details of the new version here:


https://gitlab.com/mdds/mdds/-/releases/1.7.0

Since this version only has changes in trie_map and packed_trie_map, 
neither of which are AFAIK used in the LibreOffice codebase, this is a 
low risk upgrade.


Best,

Kohei
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 125619] 'performance problem with plenty comments' still in 6.3 alpha1, *only after save of file/autosave*

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125619

--- Comment #21 from David  ---
Something has definitely changed with version 7.10 alpha.  Version 7.02 still
has the problem, but in 7.10 alpha, using the sample file, changing cells after
a save is now approximately twice as fast as in 7.02.  But changing cells in my
real life file is now immediate.  There is no observable delay in that file in
ver. 7.10 alpha, while it is still a major issue in 7.02.

-- 
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: download.lst external/mdds

2020-09-09 Thread Kohei Yoshida (via logerrit)
 download.lst  |4 -
 external/mdds/UnpackedTarball_mdds.mk |2 
 external/mdds/delta-signed-int.diff   |   44 -
 external/mdds/remove-warnings.diff|   84 --
 4 files changed, 2 insertions(+), 132 deletions(-)

New commits:
commit 833dd84e85a29734e69277a590f4f9942e9af8a2
Author: Kohei Yoshida 
AuthorDate: Wed Sep 9 18:41:49 2020 -0400
Commit: Kohei Yoshida 
CommitDate: Thu Sep 10 01:46:54 2020 +0200

Upgrade mdds to 1.7.0.

Change-Id: I2a66017fb5f93ecd39dbf980aa04798dbd33b3e8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102343
Tested-by: Jenkins
Reviewed-by: Kohei Yoshida 

diff --git a/download.lst b/download.lst
index efcbf7419a72..ee4ba8a1c83b 100644
--- a/download.lst
+++ b/download.lst
@@ -180,8 +180,8 @@ export LXML_SHA256SUM := 
940caef1ec7c78e0c34b0f6b94fe42d0f2022915ffc78643d28538a
 export LXML_TARBALL := lxml-4.1.1.tgz
 export MARIADB_CONNECTOR_C_SHA256SUM := 
431434d3926f4bcce2e5c97240609983f60d7ff50df5a72083934759bb863f7b
 export MARIADB_CONNECTOR_C_TARBALL := mariadb-connector-c-3.1.8-src.tar.gz
-export MDDS_SHA256SUM := 
f1585c9cbd12f83a6d43d395ac1ab6a9d9d5d77f062c7b5f704e24ed72dae07d
-export MDDS_TARBALL := mdds-1.6.0.tar.bz2
+export MDDS_SHA256SUM := 
a66a2a8293a3abc6cd9baff7c236156e2666935cbfb69a15d64d38141638fecf
+export MDDS_TARBALL := mdds-1.7.0.tar.bz2
 export MDNSRESPONDER_SHA256SUM := 
e777b4d7dbf5eb1552cb80090ad1ede319067ab6e45e3990d68aabf6e8b3f5a0
 export MDNSRESPONDER_TARBALL := mDNSResponder-878.200.35.tar.gz
 export MSPUB_SHA256SUM := 
ef36c1a1aabb2ba3b0bedaaafe717bf4480be2ba8de6f3894be5fd3702b013ba
diff --git a/external/mdds/UnpackedTarball_mdds.mk 
b/external/mdds/UnpackedTarball_mdds.mk
index 17834c6d100e..65dd0109e972 100644
--- a/external/mdds/UnpackedTarball_mdds.mk
+++ b/external/mdds/UnpackedTarball_mdds.mk
@@ -14,8 +14,6 @@ $(eval $(call 
gb_UnpackedTarball_set_tarball,mdds,$(MDDS_TARBALL)))
 $(eval $(call gb_UnpackedTarball_set_patchlevel,mdds,1))
 
 $(eval $(call gb_UnpackedTarball_add_patches,mdds,\
-external/mdds/remove-warnings.diff \
-external/mdds/delta-signed-int.diff \
 ))
 
 # vim: set noet sw=4 ts=4:
diff --git a/external/mdds/delta-signed-int.diff 
b/external/mdds/delta-signed-int.diff
deleted file mode 100644
index 8612b854378d..
--- a/external/mdds/delta-signed-int.diff
+++ /dev/null
@@ -1,44 +0,0 @@
-diff --git a/include/mdds/multi_type_vector.hpp 
b/include/mdds/multi_type_vector.hpp
-index d941ee2..71c34f3 100644
 a/include/mdds/multi_type_vector.hpp
-+++ b/include/mdds/multi_type_vector.hpp
-@@ -1071,7 +1071,7 @@ public:
- 
- private:
- 
--void adjust_block_positions(int64_t start_block_index, size_type delta);
-+void adjust_block_positions(int64_t start_block_index, int64_t delta);
- 
- /**
-  * Delete only the element block owned by an outer block.
-diff --git a/include/mdds/multi_type_vector_def.inl 
b/include/mdds/multi_type_vector_def.inl
-index d4fff49..7509e3e 100644
 a/include/mdds/multi_type_vector_def.inl
-+++ b/include/mdds/multi_type_vector_def.inl
-@@ -503,7 +503,7 @@ multi_type_vector<_CellBlockFunc, _EventFunc>::set(const 
iterator& pos_hint, siz
- }
- 
- template
--void multi_type_vector<_CellBlockFunc, 
_EventFunc>::adjust_block_positions(int64_t start_block_index, size_type delta)
-+void multi_type_vector<_CellBlockFunc, 
_EventFunc>::adjust_block_positions(int64_t start_block_index, int64_t delta)
- {
- int64_t n = m_blocks.size();
- 
-@@ -2927,7 +2927,7 @@ void multi_type_vector<_CellBlockFunc, 
_EventFunc>::erase_impl(size_type start_r
- // Now, erase all blocks in between.
- delete_element_blocks(it_erase_begin, it_erase_end);
- auto it_adjust_block = m_blocks.erase(it_erase_begin, it_erase_end);
--size_type delta = end_row - start_row + 1;
-+int64_t delta = end_row - start_row + 1;
- m_cur_size -= delta;
- 
- if (m_blocks.empty())
-@@ -2945,7 +2945,7 @@ void multi_type_vector<_CellBlockFunc, 
_EventFunc>::erase_in_single_block(
- {
- // Range falls within the same block.
- block* blk = _blocks[block_pos];
--size_type size_to_erase = end_pos - start_pos + 1;
-+int64_t size_to_erase = end_pos - start_pos + 1;
- if (blk->mp_data)
- {
- // Erase data in the data block.
diff --git a/external/mdds/remove-warnings.diff 
b/external/mdds/remove-warnings.diff
deleted file mode 100644
index b98ddb9eef79..
--- a/external/mdds/remove-warnings.diff
+++ /dev/null
@@ -1,84 +0,0 @@
-diff --git a/configure.ac b/configure.ac
-index ef22726..00ab937 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -70,7 +70,7 @@ AC_ARG_ENABLE(openmp,
- )
- 
- AS_IF([test x"$enable_openmp" == "xyes"], [
--  CXXFLAGS="$CXXFLAGS -fopenmp"
-+  CXXFLAGS="$CXXFLAGS -fopenmp -DMDDS_USE_OPENMP=1"
-   LDFLAGS="$LDFLAGS -fopenmp"
- ])
- 
-diff --git a/include/mdds/global.hpp b/include/mdds/global.hpp
-index f92f0a5..11f0325 100644
 

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

2020-09-09 Thread andreas kainz (via logerrit)
 sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui |   45 -
 1 file changed, 15 insertions(+), 30 deletions(-)

New commits:
commit d435997f446941adaa76fe4b253946cd08861ffd
Author: andreas kainz 
AuthorDate: Wed Sep 9 14:47:26 2020 +0200
Commit: Andreas Kainz 
CommitDate: Thu Sep 10 00:49:26 2020 +0200

tdf#128135 update Pivot Table Layout to fit minimum height

Change-Id: I450625ccac06aec54371ede6bf9b50a221e1ba8f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102319
Tested-by: Jenkins
Reviewed-by: Andreas Kainz 

diff --git a/sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui 
b/sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui
index f4c9fbfc4209..607f9190a2da 100644
--- a/sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui
+++ b/sc/uiconfig/scalc/ui/pivottablelayoutdialog.ui
@@ -1,5 +1,5 @@
 
-
+
 
   
   
@@ -49,6 +49,9 @@
 0
 0
 dialog
+
+  
+
 
   
 False
@@ -135,7 +138,6 @@
 False
 True
 True
-6
 6
 
   
@@ -224,7 +226,7 @@
   
   
 1
-1
+0
   
 
 
@@ -306,7 +308,7 @@
   
   
 1
-2
+1
   
 
 
@@ -386,7 +388,7 @@
   
   
 0
-2
+1
   
 
 
@@ -469,12 +471,8 @@
   
 0
 0
-2
   
 
-
-  
-
   
   
 True
@@ -565,7 +563,7 @@
 
   
   
-True
+False
 True
 0
   
@@ -596,15 +594,15 @@
 False
 12
 6
-6
+3
 12
+True
 
   
 Ignore empty 
rows
 True
 True
 False
-True
 True
 0
 True
@@ -625,7 +623,6 @@
 True
 True
 False
-True
 True
 0
 True
@@ -646,7 +643,6 @@
 True
 True
 False
-True
 True
 0
 True
@@ -667,7 +663,6 @@
 True
 True
 False
-True
 True
 0
 True
@@ -688,7 +683,6 @@
 True
 True
 False
-True
 True
 0
 True
@@ -709,7 +703,6 @@
 True
 True
 False
-True
 True
 0
 True
@@ -755,7 +748,6 @@
 12
 6
 True
-True
 6
 12
 
@@ -763,7 +755,6 @@
 True
 False
 True
-True
 0
 none
 
@@ -777,9 +768,8 @@
 True
 False
 True
-True
-6
-12
+3
+6
 
   
 New 
sheet
@@ -902,7 +892,6 @@
 True
 False
 True
-True
 0
 none
 
@@ -916,9 +905,8 @@
 

[Libreoffice-bugs] [Bug 128135] UI GTK3: dialog Pivot Table Layout / properties is too high: section Source and Destination cannot be fully used

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128135

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

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

tdf#128135 update Pivot Table Layout to fit minimum height

It will be available in 7.1.0.

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

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

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


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

2020-09-09 Thread andreas kainz (via logerrit)
 sc/uiconfig/scalc/ui/selectsource.ui |   10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

New commits:
commit 5c8792d0e4849f52dfdf914d6f17f4901420404b
Author: andreas kainz 
AuthorDate: Thu Sep 10 00:00:37 2020 +0200
Commit: Andreas Kainz 
CommitDate: Thu Sep 10 00:48:58 2020 +0200

fix button image in gtk3 backend

Change-Id: Ice7c2fc8cb27dccb15fde57dae6fed4253819cc4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102338
Tested-by: Jenkins
Reviewed-by: Andreas Kainz 

diff --git a/sc/uiconfig/scalc/ui/selectsource.ui 
b/sc/uiconfig/scalc/ui/selectsource.ui
index f954e389e90e..355ba1bd13b2 100644
--- a/sc/uiconfig/scalc/ui/selectsource.ui
+++ b/sc/uiconfig/scalc/ui/selectsource.ui
@@ -1,5 +1,5 @@
 
-
+
 
   
   
@@ -11,6 +11,9 @@
 0
 0
 dialog
+
+  
+
 
   
 False
@@ -57,7 +60,6 @@
 True
 True
 True
-top
   
   
 False
@@ -121,6 +123,7 @@
   
 True
 False
+True
 
   
 
@@ -232,9 +235,6 @@
   cancel
   help
 
-
-  
-
 
   
 Opens a dialog where you 
can select the source for your pivot table, and then create your 
table.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-ux-advise] [Bug 128135] UI GTK3: dialog Pivot Table Layout / properties is too high: section Source and Destination cannot be fully used

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128135

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.1.0

-- 
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 128135] UI GTK3: dialog Pivot Table Layout / properties is too high: section Source and Destination cannot be fully used

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128135

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

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

tdf#128135 update Pivot Table Layout to fit minimum height

It will be available in 7.1.0.

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

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

-- 
You are receiving this mail because:
You are 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 128135] UI GTK3: dialog Pivot Table Layout / properties is too high: section Source and Destination cannot be fully used

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128135

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.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 128895] Hidden Columns but keep reappearing! Unlike Rows which will stay hidden

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128895

--- Comment #15 from m.a.riosv  ---
No repro.
Version: 7.1.0.0.alpha0+ (x64)
Build ID: e00e2be30436b636d93f8852bb6af44972638a7c
CPU threads: 4; OS: Windows 10.0 Build 20180; UI render: Skia/Vulkan; VCL: win
Locale: es-ES (es_ES); 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 136628] New: fontwork shadow blur didn't work in calc

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136628

Bug ID: 136628
   Summary: fontwork shadow blur didn't work in calc
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kain...@gmail.com

Fontwork can have an shadow with blur feature, but blur didn't work in calc on
fontworks.

-- 
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] online.git: Branch 'feature/calc-canvas' - loleaflet/src

2020-09-09 Thread Jan Holesovsky (via logerrit)
 loleaflet/src/layer/tile/CanvasTileLayer.js   |   20 
 loleaflet/src/layer/tile/GridLayer.js |2 +-
 loleaflet/src/map/anim/Map.ZoomAnimation.js   |4 ++--
 loleaflet/src/map/handler/Map.TouchGesture.js |4 ++--
 4 files changed, 21 insertions(+), 9 deletions(-)

New commits:
commit b7295e51e2a3a6a82e359eaf107a7819935ea0ce
Author: Jan Holesovsky 
AuthorDate: Thu Sep 10 00:03:10 2020 +0200
Commit: Jan Holesovsky 
CommitDate: Thu Sep 10 00:09:35 2020 +0200

calc canvas: Zoom during the pinch-to-zoom too.

Set the canvas' scale and translate back so that the zoom happens in the
middle of the pinch.  Also change some getZoom() calls to accessing the
map's _zoom directly, because the getZoom()'s value depend on whether we
are in the middle of the animation or not.

Change-Id: Iced7d67e49044c901a2c21496d9d12dbe718207b

diff --git a/loleaflet/src/layer/tile/CanvasTileLayer.js 
b/loleaflet/src/layer/tile/CanvasTileLayer.js
index e60042334..d035f6ee9 100644
--- a/loleaflet/src/layer/tile/CanvasTileLayer.js
+++ b/loleaflet/src/layer/tile/CanvasTileLayer.js
@@ -182,7 +182,13 @@ L.CanvasTilePainter = L.Class.extend({
 
// when using the pinch to zoom, set additional 
translation based */
// on the pinch movement
+   var scale = 1;
if (this._map._animatingZoom) {
+   // set the canvas' scale according to the 
pinch-to-zoom
+   this._canvasCtx.save();
+   scale = 
this._map.getZoomScale(this._map._animateToZoom, this._lastZoom);
+   this._canvasCtx.scale(scale, scale);
+
var centerOffset = 
this._map._getCenterOffset(this._map._animateToCenter);
paneOffset.x += Math.round(centerOffset.x);
paneOffset.y += Math.round(centerOffset.y);
@@ -202,14 +208,19 @@ L.CanvasTilePainter = L.Class.extend({
  crop.min.x - tileBounds.min.x,
  crop.min.y - tileBounds.min.y,
  cropWidth, cropHeight,
- crop.min.x - paneOffset.x,
- crop.min.y - paneOffset.y,
+ (crop.min.x - paneOffset.x) / 
scale,
+ (crop.min.y - paneOffset.y) / 
scale,
  cropWidth, cropHeight);
if (this._layer._debug)
{
this._canvasCtx.strokeStyle = 'rgba(255, 0, 0, 
0.5)';
this._canvasCtx.strokeRect(tile.coords.x, 
tile.coords.y, 256, 256);
}
+
+   if (this._map._animatingZoom) {
+   // we have set a scale, restore the state
+   this._canvasCtx.restore();
+   }
}
},
 
@@ -432,12 +443,13 @@ L.CanvasTileLayer = L.TileLayer.extend({
movestart: this._moveStart,
moveend: this._move,
// update tiles on move, but not more often than once 
per given interval
-   move: L.Util.throttle(this._move, 
this.options.updateInterval, this), // TODO we might want to make the updates 
more often (?)
+   move: L.Util.throttle(this._move, 
this.options.updateInterval, this),
splitposchanged: this._move,
};
 
if (this._zoomAnimated) {
-   events.zoomanim = L.Util.throttle(this._animateZoom, 
this.options.updateInterval, this); // TODO we might want to make the updates 
more often (?)
+   // update tiles on zoom, but not more often than once 
per given interval
+   events.zoomanim = L.Util.throttle(this._animateZoom, 
this.options.updateInterval, this);
}
 
return events;
diff --git a/loleaflet/src/layer/tile/GridLayer.js 
b/loleaflet/src/layer/tile/GridLayer.js
index 4ad07d8fa..4eaeb2f45 100644
--- a/loleaflet/src/layer/tile/GridLayer.js
+++ b/loleaflet/src/layer/tile/GridLayer.js
@@ -12,7 +12,7 @@ L.GridLayer = L.Layer.extend({
opacity: 1,
 
updateWhenIdle: (window.mode.isMobile() || 
window.mode.isTablet()),
-   updateInterval: 200,
+   updateInterval: 50, // 20x per second should be hopefully enough
 
attribution: null,
zIndex: null,
diff --git a/loleaflet/src/map/anim/Map.ZoomAnimation.js 
b/loleaflet/src/map/anim/Map.ZoomAnimation.js
index 

[Libreoffice-bugs] [Bug 136554] Footnote/endnote anchors don't respond to new "Position" properties when another character style is applied

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136554

--- Comment #9 from Telesto  ---
Tools -> Footnotes & Endnotes & set the desired style for they Text Area?

-- 
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] online.git: Branch 'feature/calc-canvas' - 2 commits - loleaflet/Makefile.am loleaflet/src

2020-09-09 Thread Michael Meeks (via logerrit)
 loleaflet/Makefile.am   |1 
 loleaflet/src/core/Socket.js|7 -
 loleaflet/src/layer/CalcGridLines.js|  112 
 loleaflet/src/layer/tile/CalcTileLayer.js   |  101 +++--
 loleaflet/src/layer/tile/CanvasTileLayer.js |   26 --
 loleaflet/src/map/Map.js|1 
 6 files changed, 111 insertions(+), 137 deletions(-)

New commits:
commit 6c1d69e248e36c2afc9499bcacbf5750d47e19c6
Author: Michael Meeks 
AuthorDate: Wed Sep 9 22:47:14 2020 +0100
Commit: Michael Meeks 
CommitDate: Wed Sep 9 22:47:14 2020 +0100

calc canvas: remove svg grid-line background layer.

occluded by opaque canvas above it anyway.

Change-Id: I954da92c43ae680e6041cbff6092f9a2ac71ebe2

diff --git a/loleaflet/Makefile.am b/loleaflet/Makefile.am
index 44c4886fa..62036d993 100644
--- a/loleaflet/Makefile.am
+++ b/loleaflet/Makefile.am
@@ -221,7 +221,6 @@ LOLEAFLET_JS =\
src/layer/marker/Marker.Popup.js \
src/layer/LayerGroup.js \
src/layer/FeatureGroup.js \
-   src/layer/CalcGridLines.js \
src/layer/vector/Renderer.js \
src/layer/vector/Path.js \
src/layer/vector/Path.Popup.js \
diff --git a/loleaflet/src/core/Socket.js b/loleaflet/src/core/Socket.js
index fa78bf1a3..473c85ce5 100644
--- a/loleaflet/src/core/Socket.js
+++ b/loleaflet/src/core/Socket.js
@@ -994,13 +994,6 @@ L.Socket = L.Class.extend({
tileHeightTwips: tileHeightTwips,
docType: command.type
});
-
-   this._map.options.backgroundLayerEnabled = 
!(docLayer instanceof L.CanvasTileLayer);
-
-   if (this._map.options.backgroundLayerEnabled) {
-   docLayer.backgroundLayer = new 
L.CalcBackground().addTo(this._map);
-   (new 
L.CalcGridLines()).addTo(this._map);
-   }
}
else {
if (command.type === 'presentation' &&
diff --git a/loleaflet/src/layer/CalcGridLines.js 
b/loleaflet/src/layer/CalcGridLines.js
deleted file mode 100644
index fce802101..0
--- a/loleaflet/src/layer/CalcGridLines.js
+++ /dev/null
@@ -1,112 +0,0 @@
-/*
- * A Leaflet layer that draws grid lines for spreadsheet row/column separators.
- */
-
-L.CalcGridLines = L.LayerGroup.extend({
-   // Options given to L.CalcGridLines will be propagated into the spawned
-   // L.PolyLines. Default is thin grey lines.
-   options: {
-   color: '#c0c0c0',
-   weight: 1,
-   interactive: false
-   },
-
-
-   initialize: function(options) {
-   L.LayerGroup.prototype.initialize.call(this, options);
-   this._rowLines = L.layerGroup();
-   this._colLines = L.layerGroup();
-   },
-
-   onAdd: function(map) {
-
-   // The SVG renderer needs some specific customizations
-   if (!this.options.renderer) {
-   map.createPane('calc-background');
-
-   this.options.renderer = new L.SVG({
-   pane: 'calc-background'
-   });
-
-   // Hack the _updatePoly private method so it offsets 
all SVG path coordinates
-   // to 0.5. This makes the rendered lines align to the 
screen pixel grid
-   // nicely (at least in non-HPI screens)
-   this.options.renderer._updatePoly = function(layer, 
closed) {
-   var str = '', i, j, len, len2, points, p, rings 
= layer._parts;
-
-   for (i = 0, len = rings.length; i < len; i++) {
-   points = rings[i];
-
-   for (j = 0, len2 = points.length; j < 
len2; j++) {
-   p = points[j];
-   str += (j ? 'L' : 'M') + 
(Math.ceil(p.x) - 0.5) + ' ' + (Math.ceil(p.y) - 0.5);
-   }
-
-   // closes the ring for polygons; "x" is 
VML syntax
-   str += closed ? (L.Browser.svg ? 'z' : 
'x') : '';
-   }
-
-   // SVG complains about empty path strings
-   if (str === '') {
-   str = 'M0 0';
-   }
-
-   this._setPath(layer, str, closed);
-   }.bind(this.options.renderer);
-   }
-
-   this._map.on('viewrowcolumnheaders', this.onUpdate, this);
-
-   

[Libreoffice-bugs] [Bug 127170] Clarify clock time (HH:MM, MM:SS, ...) and duration time ([HH]:MM, [MM]:SS, ...) formatting in help; (ignore the MM month vs minute discussion)

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127170

--- Comment #27 from Albrecht Müller  ---
The misinterpretation may come from taking a users point of view: In the bug
report Jaromir essentially subtracted 8 minutes from 18 minutes, expected 10
minutes, saw 9 minutes. Clearly not consistent with elementary integer
arithmetic. Then he learns that he will see the correct 10 minutes if he uses
(right) duration format instead of (wrong) wall clock format. No intention to
hurt anyone. Sorry.

> it doesn't discuss the problem as
> formatting problem, but rather as computational problem when
> performing spreadsheet operations with date/time values.

Seems that I did not distinguish between the two things clearly enough: The
computational problem is that Calc represents date and time values as floating
point values only and processes these values in the same way as any other
floating point values. So I have no problem with a calculation like "1900-01-01
* 1900-01-02 = 1900-01-05" as this is - using a different number format and the
right date base - the same as 2 * 3 = 6.

Being able to use floating point arithmetic for performing date and time
calculations is a key design feature which you cannot take for granted. That's
why I listed the seemingly trivial restrictions that make feature possible.

Of course, these floating point values in general cannot represent date and
time values exactly. Therefore you need some way to deal with these
inaccuracies in some reasonable way. This problem appears both as a formatting
problem as well as a computational problem in date and time functions like
SECOND/MINUTE etc.

ad 1) Don't forget that besides SECOND, MINUTE, HOUR, DAY, MONTH and YEAR there
are some more date and time functions that also should use the same rounding
strategy. Otherwise they may return inconsistent results.

ad 2) Agree

ad 3) I don't understand why you want to settle on a fixed 1/1000 of a second.
The math I tried to develop does not distinguish between representations where
seconds have or don't have a fractional part. Not having a fractional part is
equivalent to having a fractional part containing zero digits. Therefore my
idea is to have a set of elementary functions that use the number of digits in
the fractional part as a parameter. This way you need only one implementation
which is the basis of all the other functionality. In 1) you argue that the
SECOND/MINUTE etc. functions should always round to the nearest second. This
would be equivalent to use a parameter that specifies zero digits in the
fractional part. You can use these functions for formatting too. In this case
the parameter is the number of digits required by the format, which may be zero
(no fractional part) or more (if there is a fractional part). I think this
results in a behaviour which is equivalent to the common representation of
floating point numbers where the same number may be represented by "2", "1.9",
"1.94" or "1.936" depending on the number of digits required. If there is a
need to use a fixed resolution of 1/1000 of a second simply use 3 for this
parameter.

ad 4) That's probably a lot of 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 136627] Memory usage increases with 200 MB after hovering over file send (java runtime related)

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136627

Telesto  changed:

   What|Removed |Added

   Keywords||bibisectRequest, regression

--- Comment #1 from Telesto  ---
Not in'
Version: 6.4.0.0.beta1+ (x64)
Build ID: 20be5cd0bdc57d812bf34a2debfe48caa51de881
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: GL; VCL: win; 
Locale: nl-NL (nl_NL); UI-Language: 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 136554] Footnote/endnote anchors don't respond to new "Position" properties when another character style is applied

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136554

--- Comment #8 from R. Green  ---
(In reply to Telesto from comment #7)
> The settings are exactly the same as paragraph style footnote.. so what
> difference would I expect to see? Still not following; but maybe me.
The issue is with the footnote ANCHOR, the superscript character in the main
body of text. This is controlled by the character style "Footnote Anchor"

-- 
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 119312] Remote control of impress; Crash in: sdext::presenter::PresenterSlideShowView::LateInit()

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119312

--- Comment #18 from oo.o+libreoff...@windbuechse.samba-tng.org ---
I added the patch here. My login does not work at gerrit.

I don't know if it is needed for moving some lines around:

I grand this contribution to LibreOffice may be
licensed under the MPLv2/LGPLv3+ dual license.
I put this patch into the public domain.

-- 
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 136627] New: Memory usage increases with 200 MB after hovering over file send (java runtime related)

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136627

Bug ID: 136627
   Summary: Memory usage increases with 200 MB after hovering over
file send (java runtime related)
   Product: LibreOffice
   Version: 7.1.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:
Memory usage increases with 200 MB after hovering over file send (java runtime
related)

Steps to Reproduce:
1. Make sure Java 1.8 runtime being installed 
2. Launch Process Monitor task manager or similar tool
2. Launch Writer 
2. Hoover File - Send 

Actual Results:
Memory bump

Expected Results:
Not so


Reproducible: Always


User Profile Reset: No



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

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


[Libreoffice-bugs] [Bug 119312] Remote control of impress; Crash in: sdext::presenter::PresenterSlideShowView::LateInit()

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=119312

oo.o+libreoff...@windbuechse.samba-tng.org changed:

   What|Removed |Added

 Attachment #165004|0   |1
is obsolete||

--- Comment #17 from oo.o+libreoff...@windbuechse.samba-tng.org ---
Created attachment 165341
  --> https://bugs.documentfoundation.org/attachment.cgi?id=165341=edit
Patch for impress

-- 
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 136626] swlo!BigPtrArray::Index2Block

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136626

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

-- 
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 136626] New: swlo!BigPtrArray::Index2Block

2020-09-09 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136626

Bug ID: 136626
   Summary: swlo!BigPtrArray::Index2Block
   Product: LibreOffice
   Version: 4.4.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
swlo!BigPtrArray::Index2Block (99% probability a dupe)

However, pretty small for the difference

Steps to Reproduce:
1. Open the attached file
2. CTRL+A
3. CTRL+C
4. CTRL+N
5. CTRL+V
6. CTRL+Z

Actual Results:
Crash

Expected Results:
No crash


Reproducible: Always


User Profile Reset: No



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

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


  1   2   3   4   5   >