[Libreoffice-bugs] [Bug 116256] DOCX Import: incorrect placement of textbox in table, from ignoring LayoutInCell.

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

--- Comment #13 from Justin L  ---
I'm not sure if this is primarily a layout issue, but I think it is. The
handles for managing the textbox seem to be in the correct position inside the
table frame, but what is displayed is still outside of the table boundary.

(And yes, there really is a single cell table inside of a floating frame and
that table contains a textbox.)

-- 
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 136762] LibreOffice does not paste after v7

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

--- Comment #14 from Timur  ---
This bug is Unconfirmed and without reproducible steps (cannot be a website,
some text..) 
For 2 reporters here, please have in mind that LO has more open bugs on paste,
so this one is of low if any value. 
What you may do and would help is to test daily master called 7.1+ from
https://dev-builds.libreoffice.org/daily/master/current.html.
Because I noticed an improvement in 7.1+ for paste which is still not
confirmed, until more people start using it.

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


[Libreoffice-bugs] [Bug 133620] FORMATTING : When multiple text boxes are selected, right-click context menu does not show the Text menu item

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

--- Comment #3 from Buovjaga  ---
(In reply to stievenard.david from comment #2)
> I just tried with the menu/format/text and the settings you input don't
> apply to the text box
> 
> tested on libre office 6.3.5.2 on linux ubuntu 19.10

Format menu did work for me at the time I tested. You can test a fresher
release by using an appimage: https://libreoffice.soluzioniopen.com/

-- 
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 131970] LO Create hyperlink → Jump to the correct field by keyboard with TAB?

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

Heiko Tietze  changed:

   What|Removed |Added

 CC||heiko.tietze@documentfounda
   ||tion.org
   Keywords||bibisectRequest

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


[Libreoffice-bugs] [Bug 130104] FILESAVE: XLSX: problem with align+indent (cell indent increases on each save)

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

Kevin Suo  changed:

   What|Removed |Added

Summary|FILESAVE: XLSX: problem |FILESAVE: XLSX: problem
   |with align+indent   |with align+indent (cell
   ||indent increases on each
   ||save)

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


[Libreoffice-commits] core.git: Branch 'libreoffice-7-0' - vcl/inc vcl/quartz

2020-11-09 Thread 191919 (via logerrit)
 vcl/inc/quartz/salgdi.h |2 +
 vcl/quartz/salgdicommon.cxx |3 ++
 vcl/quartz/salgdiutils.cxx  |   52 ++--
 3 files changed, 46 insertions(+), 11 deletions(-)

New commits:
commit ab436ca98b11a6c72e695169662ad3b5a314fa9c
Author: 191919 
AuthorDate: Tue Oct 27 15:38:39 2020 +0800
Commit: Noel Grandin 
CommitDate: Tue Nov 10 07:59:44 2020 +0100

Speed improments

Improve drawing performance on 10-bit displays by avoiding multiple color
space conversions.

Make all drawing context bitmaps have the colour space and byte order of
the host window.

Fix serious CoreGraphics-related memory leak (existed no later than
version 7.0) when changing the window size.

Change-Id: Ia7b7e88d47b728bd1d10dedc1ca15de41e73
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/104858
Tested-by: Jenkins
Reviewed-by: Noel Grandin 
Signed-off-by: Xisco Fauli 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105497

diff --git a/vcl/inc/quartz/salgdi.h b/vcl/inc/quartz/salgdi.h
index a5c74c17705c..2ac33fdbdcf7 100644
--- a/vcl/inc/quartz/salgdi.h
+++ b/vcl/inc/quartz/salgdi.h
@@ -134,6 +134,8 @@ class AquaSalGraphics : public SalGraphics
 {
 CGLayerHolder maLayer; // Quartz graphics layer
 CGContextHolder maContextHolder;  // Quartz drawing context
+CGContextHolder maBGContextHolder;  // Quartz drawing context for CGLayer
+CGContextHolder maCSContextHolder;  // Quartz drawing context considering 
the color space
 
 XorEmulation*   mpXorEmulation;
 int mnXorMode; // 0: off 1: on 2: 
invert only
diff --git a/vcl/quartz/salgdicommon.cxx b/vcl/quartz/salgdicommon.cxx
index 3126400709f2..8b51e91c6d54 100644
--- a/vcl/quartz/salgdicommon.cxx
+++ b/vcl/quartz/salgdicommon.cxx
@@ -521,11 +521,14 @@ void AquaSalGraphics::copyArea( long nDstX, long 
nDstY,long nSrcX, long nSrcY,
 CGContextScaleCTM( xSrcContext, +1, -1 );
 aSrcPoint.y = (nScaledSourceY + nScaledSourceHeight) - (mnHeight * 
fScale);
 }
+CGContextSetBlendMode(xSrcContext, kCGBlendModeCopy);
+
 CGContextDrawLayerAtPoint(xSrcContext, aSrcPoint, maLayer.get());
 }
 
 // draw at new destination
 const CGRect aTargetRect = CGRectMake(nScaledTargetX, nScaledTargetY, 
nScaledSourceWidth, nScaledSourceHeight);
+CGContextSetBlendMode(xCopyContext, kCGBlendModeCopy);
 CGContextDrawLayerInRect(xCopyContext, aTargetRect, 
sSourceLayerHolder.get());
 
 maContextHolder.restoreState();
diff --git a/vcl/quartz/salgdiutils.cxx b/vcl/quartz/salgdiutils.cxx
index 589bd2ae22e5..57953e536796 100644
--- a/vcl/quartz/salgdiutils.cxx
+++ b/vcl/quartz/salgdiutils.cxx
@@ -69,11 +69,28 @@ void AquaSalGraphics::SetPrinterGraphics( CGContextRef 
xContext, long nDPIX, lon
 void AquaSalGraphics::InvalidateContext()
 {
 UnsetState();
+
+CGContextRelease(maContextHolder.get());
+CGContextRelease(maBGContextHolder.get());
+CGContextRelease(maCSContextHolder.get());
+
 maContextHolder.set(nullptr);
+maCSContextHolder.set(nullptr);
+maBGContextHolder.set(nullptr);
 }
 
 void AquaSalGraphics::UnsetState()
 {
+if (maBGContextHolder.isSet())
+{
+CGContextRelease(maBGContextHolder.get());
+maBGContextHolder.set(nullptr);
+}
+if (maCSContextHolder.isSet())
+{
+CGContextRelease(maCSContextHolder.get());
+maBGContextHolder.set(nullptr);
+}
 if (maContextHolder.isSet())
 {
 maContextHolder.restoreState();
@@ -119,7 +136,12 @@ bool AquaSalGraphics::CheckContext()
 {
 CGContextRelease(maContextHolder.get());
 }
+CGContextRelease(maBGContextHolder.get());
+CGContextRelease(maCSContextHolder.get());
+
 maContextHolder.set(nullptr);
+maBGContextHolder.set(nullptr);
+maCSContextHolder.set(nullptr);
 maLayer.set(nullptr);
 }
 
@@ -133,18 +155,17 @@ bool AquaSalGraphics::CheckContext()
 const CGSize aLayerSize = { static_cast(nScaledWidth), 
static_cast(nScaledHeight) };
 
 const int nBytesPerRow = (nBitmapDepth * nScaledWidth) / 8;
-void* pRawData = std::malloc(nBytesPerRow * nScaledHeight);
-#ifdef MACOSX
-const int nFlags = kCGImageAlphaNoneSkipFirst;
-#else
-const int nFlags = kCGImageAlphaNoneSkipFirst | 
kCGImageByteOrder32Little;
-#endif
-CGContextHolder aContextHolder(CGBitmapContextCreate(
-pRawData, nScaledWidth, nScaledHeight, 8, nBytesPerRow, 
GetSalData()->mxRGBSpace, nFlags));
-
-maLayer.set(CGLayerCreateWithContext(aContextHolder.get(), 
aLayerSize, nullptr));
+int nFlags = kCGImageAlphaNoneSkipFirst | kCGBitmapByteOrder32Host;
+maBGContextHolder.set(CGBitmapContextCreate(
+NULL, 

[Libreoffice-commits] core.git: compilerplugins/clang include/xmloff starmath/inc starmath/Library_sm.mk starmath/source xmloff/source

2020-11-09 Thread dante (via logerrit)
 compilerplugins/clang/sequentialassign.cxx |1 
 include/xmloff/xmltoken.hxx|2 
 starmath/Library_sm.mk |1 
 starmath/inc/parse.hxx |2 
 starmath/inc/starmathdatabase.hxx  |   56 +++
 starmath/inc/strings.hrc   |4 
 starmath/inc/strings.hxx   |4 
 starmath/inc/token.hxx |   25 +
 starmath/inc/types.hxx |1 
 starmath/source/ElementsDockingWindow.cxx  |4 
 starmath/source/mathmlexport.cxx   |2 
 starmath/source/mathmlimport.cxx   |   61 +++-
 starmath/source/parse.cxx  |  122 ++--
 starmath/source/starmathdatabase.cxx   |  358 
 starmath/source/visitors.cxx   |  422 +++--
 xmloff/source/core/xmltoken.cxx|2 
 xmloff/source/token/tokens.txt |2 
 17 files changed, 711 insertions(+), 358 deletions(-)

New commits:
commit 7e2c35324c54646f53f0fa14b7bce07e1da73c0b
Author: dante 
AuthorDate: Tue Nov 3 18:51:19 2020 +0100
Commit: Noel Grandin 
CommitDate: Tue Nov 10 07:59:14 2020 +0100

Evaluate command: tdf#109338

Adds evaluate command.
It's visible from UI as a bracket.
Example: evaluate { {1} over {%sigma sqrt{2%pi} }func e^-{{(x-%mu)^2} over 
{2%sigma^2}} } from { -infinity } to { +infinity } = 0

In order to make the mathml part, several changes had to be mad:
 - Allow mathml to correctly identify the math token for opperators
 - Allow mathml to correctly identify the math token for fences
   - Since improvements where made on token recognision, visitors to string 
can now be lighter ( removing long long switch )
 - Improving the import / export to mathm
 - LO says it mathml 2, but actually is something between 2 and 3
   - Allowing mfenced ( mathml 2.0 ) to stayl 3 adding the missing data ( 
prefix and postfix )
 - Be able to know if we are opening or closing brackets
   - lrline and lrdline commands hidden on UI.
 - They are they own open close
 - If prefix and postfix are missing meaning of the expression may 
change, however that's the user problem.
 - The problem resides in the fact that MS_VERTLINE is uses for lline 
and rline.
 - The problem resides in the fact that MS_DVERTLINE is uses for ldline 
and rdline.
 - Changing frac priority from 0 to 5, if not { frac 1 2 frac 1 2 } fails ( 
found while testing )
 - The mathml testing was made with highter standars than qa tests, however 
there are no guarantees.
 - Added xml tokens needed for math
 - Added starmathdatabase. Will grow in the future.
   The point is avoiding long lists and swtches inside code.

Added it command for hidden or implicit product ( like  in mathml ). 
Oppens path for tdf#66200. Note that about this issue there is only one line on 
the parser. The mathml implementation will be made later when LO will allow 
chars with .

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

diff --git a/compilerplugins/clang/sequentialassign.cxx 
b/compilerplugins/clang/sequentialassign.cxx
index 33b1afa6852a..a89afea43438 100644
--- a/compilerplugins/clang/sequentialassign.cxx
+++ b/compilerplugins/clang/sequentialassign.cxx
@@ -118,6 +118,7 @@ public:
 || fn == SRCDIR "/starmath/source/cfgitem.cxx"
 || fn == SRCDIR "/ucb/source/ucp/ftp/ftpurl.cxx"
 || fn == SRCDIR "/starmath/source/node.cxx"
+|| fn == SRCDIR "/starmath/source/starmathdatabase.cxx"
 || fn == SRCDIR "/ucb/source/ucp/cmis/certvalidation_handler.cxx"
 || fn == SRCDIR 
"/reportdesign/source/ui/inspection/GeometryHandler.cxx"
 || fn == SRCDIR 
"/reportdesign/source/core/api/ReportDefinition.cxx"
diff --git a/include/xmloff/xmltoken.hxx b/include/xmloff/xmltoken.hxx
index 99b94be7e2cc..6b2fed011a39 100644
--- a/include/xmloff/xmltoken.hxx
+++ b/include/xmloff/xmltoken.hxx
@@ -1477,6 +1477,8 @@ namespace xmloff::token {
 XML_POWER,
 XML_PRECISION_AS_SHOWN,
 XML_PREFIX,
+XML_INFIX,
+XML_POSTFIX,
 XML_PRESENTATION,
 XML_PRESENTATION_ORGCHART,
 XML_PRESENTATION_OUTLINE,
diff --git a/starmath/Library_sm.mk b/starmath/Library_sm.mk
index 5d75c87eb58f..a63b506783e1 100644
--- a/starmath/Library_sm.mk
+++ b/starmath/Library_sm.mk
@@ -98,6 +98,7 @@ $(eval $(call gb_Library_add_exception_objects,sm,\
 starmath/source/view \
 starmath/source/visitors \
 starmath/source/wordexportbase \
+starmath/source/starmathdatabase \
 ))
 
 
diff --git a/starmath/inc/parse.hxx b/starmath/inc/parse.hxx
index f0783835fe21..020d22fb37b4 100644
--- a/starmath/inc/parse.hxx
+++ 

[Libreoffice-bugs] [Bug 138100] UTF 8 Text File in Windows seems to problem with Umlauts (in DE äöüÄÖÜ) when loaded in Writer (at least til version 7.0)

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

--- Comment #8 from Mike Kaganski  ---
(In reply to Ming Hua from comment #7)
> just choose "Unicode - (UTF-8)" option in LO 6.4.

Thanks - you are quite right; not only in 6.4, but in any version (including
7.1); that latter upcoming version 7.1 *also* can autodetect it, but the manual
option with that "Text - Choose Encoding" filter is also there.

-- 
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 138100] UTF 8 Text File in Windows seems to problem with Umlauts (in DE äöüÄÖÜ) when loaded in Writer (at least til version 7.0)

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

--- Comment #7 from Ming Hua  ---
(In reply to hastrondl from comment #5)
> What Option should be selected for the Standard UTF-8 (Not-UNICODE)
In case Mike's reply wasn't clear enough -- to correctly display the utf8
format file created by npp like you described in comment #0, just choose
"Unicode - (UTF-8)" option in LO 6.4.

-- 
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 136762] LibreOffice does not paste after v7

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

--- Comment #13 from bikehel...@gmail.com ---
(In reply to Colin from comment #11)
> Version: 6.4.6.2 (x64)
> Build ID: 0ce51a4fd21bff07a5c061082cc82c5ed232f115
> CPU threads: 4; OS: Windows 10.0 Build 19041; UI render: default; VCL: win; 
> Locale: sv-SE (en_GB); UI-Language: en-GB
> Calc: threaded
> 
> I have ascertained the following:-
> 
> Whereas Shft+Ctrl+V should normally permit some control over the paste
> criterea, utilising Shft +ALT +Ctrl +V whilst copying from a web-site - from
> which the pasting fails - facilitates the paste special but automatically
> forces "unformatted text", thereby producing a single column unformatted
> copy.
>  
> Some sites permit sorting of their data. If that data for copying is a
> single dimension array then the +ALT paste ignores any data sorting in the
> page and produces the original layout as a single column NOT row - even if
> the site data is presented as a row.
> 
> My own lack of technical expertise dictates that I must assume the site
> utilises characters between the data elements which are interpreted as
> Carriage Returns by CALC - or it is an inherent CALC characteristic.
> 
> Having a number of files which are updated numerous times throughout the day
> I have been able to concoct a nominal workaround; For those trying to paste
> a two dimensional array of data it is necessary to utilise the +ALT Paste V
> variation into a #scratch sheet. This produces a single column which is then
> re-mapped into the desired layout within that same sheet. The genuine
> worksheet can simply reference the re-mapped cells.
> 
> Visit the desired site > marquee select the desired data > Copy > Select the
> #scratch workshheet at the fixed starting cell > +ALT Paste Special
> 
> Initially creating the re-mapped array is an overhead but once it's done,
> the workflow is as simple as cut
> 
> An unforeseen advantage of this approach is that the calling cells never get
> their formatting "amended" by a "careless" paste special.

Thanks, Colin. That's a good and practical work-around for an odd bug. I'll use
that if I jump back to v7 again and the regular paste still isn't fixed.

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


[Libreoffice-bugs] [Bug 138105] In "Writer" in "Edit Mode" my backspace key doesn't work when 'record' and 'show' changes are "on".

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

Ming Hua  changed:

   What|Removed |Added

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

--- Comment #2 from Ming Hua  ---
Thanks for reporting.  This issue has been reported as bug 135260 and since
fixed, so I'm marking this bug as DUPLICATE.

The newly released 7.0.3 version includes the fix, please upgrade.

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

-- 
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 138100] UTF 8 Text File in Windows seems to problem with Umlauts (in DE äöüÄÖÜ) when loaded in Writer (at least til version 7.0)

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

--- Comment #6 from Mike Kaganski  ---
(In reply to hastrondl from comment #5)
> What Option should be selected for the Standard UTF-8 (Not-UNICODE)

There is *never* a text encoded in one of UTF encodings, which is not Unicode.
UTF (*Unicode* Transformation Format) encoding family is created to encode UCS
(Universal Coded Character Set) character set standardized in  ISO 10646, and
that ISO standard is deliberately synchronized (identical) to The Unicode
Standard (created/maintained by Unicode Consortium). Any UTF-encoded file is
"some sequence of UCS codepoints, each codepoint encoded using this specific
UTF variant". So after decoding, you get sequence of UCS/Unicode codepoints,
never something else.

Please check RFC 3629 (UTF-8), and also RFC 2781 (UTF-16), RFC 2152 (UTF-7);
ISO 10646; The Unicode Standard (current version [1] of which explicitly says
"This version of the Unicode Standard is also synchronized with ISO/IEC
10646:2020, sixth edition", just like previous versions stated synchronization
with then-respective ISO standard versions).

So the idea of a "Standard UTF-8 (Not-UNICODE)" is absurd.

[1] http://www.unicode.org/versions/Unicode13.0.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 137629] Calc Error when trying to use a regression analysis spreadsheet

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

--- Comment #2 from Kevin Suo  ---
Have not yet investigated the bug, but I should say why not try the built-in
regression analysis funtion in Calc? (Data - Statistics...)

-- 
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 137776] Path for installing Spellchecker incorrect, I must re-install Spellchecker every time I boot

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

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 137536] Animation for object in presentation mode flashes after finishing Skia (not GDI)

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

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 136962] Navigator content view flash (gen backend)

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|target:7.1.0
   |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 137782] FILEOPEN: second file in LO 7 doesn't open. LO Flash screen appears and just flashes until I close first file I opened

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

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 137774] Calc - Copy Hidden Cells fails when Column is hidden by column context menu

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

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 137752] Paragraph indent cannot be larger than 20.5 centimeters

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

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 137760] Need option not to have toolbars auto-appear when clicking objects

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

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 131837] My LibreOffice Writer RTF file takes soooo long to open

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

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

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 137749] Implement INT Writer's table function for Word's table interoperability

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

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 137756] Words stress are added incorrectly

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

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 137767] fail to load class "org.slf4j.impl.StaticLoggerBinder" when starting LO

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

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 133014] LibreOffice Writer document converted to plain text (.TXT) document sent to a Macintosh system displays black squares in place of spaces

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

--- Comment #2 from QA Administrators  ---
Dear Gregory Bryce,

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 94847] RTL Page order

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

--- Comment #13 from QA Administrators  ---
Dear Jonathan Joseph Chiarella,

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 132991] LibreOffice (soffice.bin) will not find entry point in DLL icuu65 after installing in alternate file path (custom installation).

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

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

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 113706] Moving focus to the record selector affects (toggles) a just edited check box (Yes/No type)

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

--- Comment #7 from QA Administrators  ---
Dear Howard Johnson,

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 122779] FILEOPEN (BASE) Connection to Oracle DB via ODBC ends in [ODBC][ORACLE] Optional Feature not implemented

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

--- Comment #30 from QA Administrators  ---
Dear Thierry Menigoz,

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 133620] FORMATTING : When multiple text boxes are selected, right-click context menu does not show the Text menu item

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

--- Comment #2 from stievenard.da...@gmail.com ---
I just tried with the menu/format/text and the settings you input don't apply
to the text box

tested on libre office 6.3.5.2 on linux ubuntu 19.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 136278] The left arrow key causes objects to disappear.

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

--- Comment #34 from Mark  ---
Let me say that I am fine with it taking over a month to assign this
bug.  The reason for my last comment was that I thought it had been put in a
medium level bug graveyard.  Gülşah Köse’s comment indicates that that is not
the case.  That has calmed me down quite a bit. 
As to the fact that I am not paying for the fix: I thought that that
meant I wasn’t in a position to put pressure on anyone. I was surprised that it
was taken that way.  I was expressing a concern and the basis for that concern.
 I’m still concerned, not about this bug, but about what looks to me like an
out of control bug list.  Am I wrong?  Perhaps I don’t know what I’m looking
at.
I was going to defend the commit from Telesto, but then he made his 
“Sorry, didn't intend to be disrespectful or rude.” comment.  I feel you.  Same
here.

-- 
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 120200] [META] Update or correct help for features

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||103419


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103419
[Bug 103419] Description of SWITCH function is missing info, has confusing
wording
-- 
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 137821] problem entering images into documents

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

neuf...@gmail.com changed:

   What|Removed |Added

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

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

Also didn't reproduce in:
Version: 7.1.0.0.alpha1+ (x64)
Build ID: 00e5c63c35307faacf76a5e2ca7953c4208244ed
CPU threads: 4; OS: Windows 10.0 Build 19041; UI render: Skia/Vulkan; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL

Considering that the original reporter suffered constant crashing after
reporting and that the bug fixed itself upon reinstalling, the reporters copy
probably broke in some way.  Setting to resolved, although I'm not sure whether
to set as fixed or WFM.

-- 
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 138106] New: Forms: List Box: Source Cell Range - Doesn't allow horizontal range e.g. C14:F14

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

Bug ID: 138106
   Summary: Forms: List Box: Source Cell Range - Doesn't allow
horizontal range  e.g. C14:F14
   Product: LibreOffice
   Version: 6.4.6.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: heartwoodj...@gmail.com

I wish to refer to a horizontal range and use as the 'Source Cell Range' for a
'List Box' when making a form.

The list box only shows the first item in the array.

Is there a rationale or is this a bug?

I've tried a workaround using Transpose but have hit a wall of awkward...

-- 
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 85811] [META] Main menu bar bugs and enhancements

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

Bug 138042 Summary: View - User Interface - Contextual Groups description 
"deactivates" the  buttons at bottom of dialog box
https://bugs.documentfoundation.org/show_bug.cgi?id=138042

   What|Removed |Added

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

-- 
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 138042] View - User Interface - Contextual Groups description "deactivates" the buttons at bottom of dialog box

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

V Stuart Foote  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||vstuart.fo...@utsa.edu
 Resolution|--- |DUPLICATE

--- Comment #1 from V Stuart Foote  ---


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

-- 
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 138042] View - User Interface - Contextual Groups description "deactivates" the buttons at bottom of dialog box

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

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

   What|Removed |Added

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

-- 
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 97704] Pictures anchored to a cell in Calc show position data relative to page, no information on position in cell available

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

--- Comment #13 from Regina Henschel  ---
Internally the information is maStartOffset in the first ScDrawObjData item in
the "UserData" list. In API the properties are HoriOrientPosition and
VertOrientPosition.

It would be really useful to be able to see and to set it in the Position
dialog.

-- 
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 138105] In "Writer" in "Edit Mode" my backspace key doesn't work when 'record' and 'show' changes are "on".

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

--- Comment #1 from JIM7  ---
My apologies. This has NOTHING to do with Firefox.

-- 
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 138105] In "Writer" in "Edit Mode" my backspace key doesn't work when 'record' and 'show' changes are "on".

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

JIM7  changed:

   What|Removed |Added

Summary|In "Writer" in "Edit Mode"  |In "Writer" in "Edit Mode"
   |my backspace key doesn't|my backspace key doesn't
   |work when 'record' and  |work when 'record' and
   |'show' changes are "on". Is |'show' changes are "on".
   |it Firefox, or is it a 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 138105] New: In "Writer" in "Edit Mode" my backspace key doesn't work when 'record' and 'show' changes are "on". Is it Firefox, or is it a bug?

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

Bug ID: 138105
   Summary: In "Writer" in "Edit Mode" my backspace key doesn't
work when 'record' and 'show' changes are "on". Is it
Firefox, or is it a bug?
   Product: LibreOffice
   Version: 7.0.2.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: j...@fastmail.us

Description:
While editing, my backspace key doesn't work when 'record' and 'show' changes
are "on". Is it Firefox, or is it a bug?
When I try to use my backspace key, it 'strikes' one letter previous, but will
not move to strike any further previous letters.

Steps to Reproduce:
1.Load doc to edit
2.Ensure that 'Record' and 'Show' functions are ON.
3.Attempt to use backspace key to remove characters
4.Attempt to remove previous charaters with the backspace key

Actual Results:
ONE previous character receives a strike-through
NO further movement backwards is possible.

Expected Results:
Expected to strike-through as many previous letters as desired, by using the
backspace key.


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
Backspace key function needs to be checked.
Thank you.

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


[Libreoffice-bugs] [Bug 75762] FORMATTING: Flipping image jumps up a cell when using page preview

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

--- Comment #7 from Regina Henschel  ---
I can no longer reproduce it with Version: 7.1.0.0.alpha1+ (x64)
Build ID: a689cf1672e89cb78fbcfa14c505850927e71f58
CPU threads: 8; OS: Windows 10.0 Build 19041; UI render: default; VCL: win
Locale: de-DE (en_US); UI: en-US
Calc: CL

Please try it with a daily build. A daily build can be installed parallel to
your regular version. https://dev-builds.libreoffice.org/daily/master/

If it is OK in the daily build, please set the Status to RESOLVED and
WORKSFORME. (not to FIXED, because it is not known which commit fixes it)

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


[Libreoffice-bugs] [Bug 112889] [META] Screen flickering when hovering on items or selecting text with default rendering

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

Bug 136962 Summary: Navigator content view flash (gen backend)
https://bugs.documentfoundation.org/show_bug.cgi?id=136962

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 103030] [META] Navigator sidebar deck and floating window

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

Bug 136962 Summary: Navigator content view flash (gen backend)
https://bugs.documentfoundation.org/show_bug.cgi?id=136962

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 136962] Navigator content view flash (gen backend)

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

Jim Raykowski  changed:

   What|Removed |Added

 Resolution|--- |FIXED
   Assignee|rayk...@gmail.com   |libreoffice-b...@lists.free
   ||desktop.org
 Status|ASSIGNED|RESOLVED

--- Comment #4 from Jim Raykowski  ---
@Caolán, I confirm that flicker no longer occurs with the patch applied. 

Thank you.

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


[Libreoffice-bugs] [Bug 138088] EDITING shape don't keep adapted to the size of merged cells

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

--- Comment #1 from bast...@riseup.net ---
also happen on this version :

Version: 7.0.3.1 (x64)
Build ID: d7547858d014d4cf69878db179d326fc3483e082
CPU threads: 4; OS: Windows 10.0 Build 18363; UI render: Skia/Raster; VCL: win
Locale: fr-FR (fr_FR); Langue IHM : fr-FR
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 138088] EDITING shape don't keep adapted to the size of merged cells

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

bast...@riseup.net changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
 CC||bast...@riseup.net
Version|7.0.1.2 release |7.0.3.1 release

-- 
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 103419] Description of SWITCH function is missing info, has confusing wording

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

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

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |sdc.bla...@youmail.dk
   |desktop.org |

--- Comment #6 from sdc.bla...@youmail.dk ---
(In reply to Mihkel Tõnnov from comment #5)
> Very good that at least the Help now documents this.
To be sure:  No additional changes are needed in the online Help page for
Switch?

Thanks for response.  I think we can find some good solutions. As a translator,
you know that we have to get it right the first time. (-: So I will make some
proposals, based on yours, and let's see if we can find some good formulations.

> - "Checks 1 or more values and returns a result corresponding to the first
> value equal to the given expression."
> + "Tests an expression against a list of values and returns the result
> corresponding to the first value that matches the expression. Optionally, a
> default result may be given instead of the final value-result pair, to be
> returned if none of the values match the expression."
NB. This should look all right in Function Wizard, it will make a LONG tooltip
for =SWITCH.  But we can try.

I tried to imagine how it would appear as tooltip. (as you know, in Function
Wizard, the syntax is also present, which makes the text easier to interpret.)

 Compares expression against list of value/result pairs, and returns
 result for first value that equals the expression.  If expression does
 not equal any value, a default result is returned, if it placed as final
 item in parameter list without a value.

> 1) The description of Result2...Result127 (NB: only starting from 2nd - not
> sure how easily this can be done):
> - "Value to return when corresponding value argument matches expression."
> + "Value to return when corresponding value argument matches expression, or
> alternatively a default value to return."
-Not so easy to do, but also maybe not necessary.
-The new "SWITCH" tip introduces the idea of "default", and my proposal
explains how to do it.
-"default" is always (implicitly) a "Value to return" as it currently says.
-would make another long tooltip 

> 2) The description of Expression:
> - "Value that will be compared against value1-valueN."
> + "Value that will be compared against value1...value127."

My proposal:   "Value to be compared against value1…valueN (N ≤ 127)."

Should be able to make the patch right away, once we decide on the texts. 
Thanks.

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


[Libreoffice-bugs] [Bug 138104] New: Exporting to PDF alters the document

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

Bug ID: 138104
   Summary: Exporting to PDF alters the document
   Product: LibreOffice
   Version: 6.4.0.0.alpha0+
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: trivial
  Priority: medium
 Component: Printing and PDF export
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: leto.xav...@protonmail.com

Description:
I've written a book, roughly 90 pages long, a little over 20 thousand words,
several footnotes. Whenever I export this to PDF, EVERY TIME the export alters
the indentation of a single paragraph somewhere, or alters the font size of a
single footnote symbol to an exaggerated extent, but the rest remain the same.
No matter how many times I go in to edit and alter these mistakes, they keep
appearing at random over every revision. this only happens with lengthy
documents.

Steps to Reproduce:
1. create document over 10,000 words.
2. Alter paragraph indentation. Create footnotes
3. Export to pdf

Actual Results:
The document is altered. 

Expected Results:
The document shouldn't be altered just because I export it to PDF.


Reproducible: Always


User Profile Reset: No



Additional Info:
The software should of done its job.

-- 
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 138074] typo in Polish language

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

Piotr Roszkowski  changed:

   What|Removed |Added

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

--- Comment #2 from Piotr Roszkowski  ---
Fixed. Thank You!

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


[Libreoffice-bugs] [Bug 138068] When there are a lot of pictures, typing the text is very slow

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

Telesto  changed:

   What|Removed |Added

Summary|memory management and fonts |When there are a lot of
   ||pictures, typing the text
   ||is very slow
   Priority|medium  |high
   Severity|enhancement |major

-- 
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 134809] [META] Speedup huge pixel graphics Cairo bugs

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

Telesto  changed:

   What|Removed |Added

 Depends on||138068


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=138068
[Bug 138068] memory management and fonts
-- 
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 138068] memory management and fonts

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

Telesto  changed:

   What|Removed |Added

 Blocks||134809


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=134809
[Bug 134809] [META] Speedup huge pixel graphics Cairo 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 138068] memory management and fonts

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

Telesto  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
   Keywords||bibisected, bisected, perf,
   ||regression

--- Comment #6 from Telesto  ---
Bibisected using bibisect-win64-7.0 in GDI mode to:
URL:
https://cgit.freedesktop.org/libreoffice/core/commit/?id=828504974d70111e4a35b31d579cf42fe660a660
author: Armin Le Grand (Collabora) 
committer: Armin Le Grand 
summary: tdf#130768 speedup huge pixel graphics Cairo

Adding CC: Armin Le Grand

-- 
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 122886] [META] Bugs with textboxes in shapes

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

Bug 135198 Summary: EDITING Moving large shape upwards makes its textbox fall 
out of it
https://bugs.documentfoundation.org/show_bug.cgi?id=135198

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 137174] HTML conversion: fields always shaded

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

Dieter  changed:

   What|Removed |Added

 CC||dgp-m...@gmx.de
 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1
 Whiteboard| QA:needsComment|

--- Comment #2 from Dieter  ---
(In reply to ajlittoz from comment #0)
> View>Field Shadings has no effect as expected because it is only a screen
> visual clue.

I can't confirm this observation. If I disable field shadings, html-file
doesn't contain a shading. So I suppose that this is the expected behaviour.

Could you please try to reproduce it with the latest version of LibreOffice
from https://www.libreoffice.org/download/libreoffice-fresh/ ? I have set the
bug's status to 'NEEDINFO'.

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


[Libreoffice-bugs] [Bug 137479] No refresh of style textfield/selector in format toolbar if cursor enters a new style

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

Dieter  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||dgp-m...@gmx.de
 Whiteboard| QA:needsComment|
 Ever confirmed|0   |1

--- Comment #2 from Dieter  ---
Does it also happen in SafeMode (Help => Restart in SafeMode)?
=> NEEDINFO

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


[Libreoffice-bugs] [Bug 125825] [META] (Auto-)Redaction bugs and improvement

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

Bug 127173 Summary: REDACTION: Editing document with freehand redaction tool 
leaves area of light blue color
https://bugs.documentfoundation.org/show_bug.cgi?id=127173

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 127173] REDACTION: Editing document with freehand redaction tool leaves area of light blue color

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

Dieter  changed:

   What|Removed |Added

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

--- Comment #12 from Dieter  ---
(In reply to Marco Marega from comment #11)
> The behavior is not exactly what I expected, but considering that it does
> not fill the area with blue color anymore, IMHO it can be closed.

=> RESOLVED WORKSFORME

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


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

2020-11-09 Thread Caolán McNamara (via logerrit)
 vcl/source/app/salvtables.cxx |   19 +++
 1 file changed, 11 insertions(+), 8 deletions(-)

New commits:
commit 0f2bddacae89a50c1349e2511c3b60c7c7120aad
Author: Caolán McNamara 
AuthorDate: Mon Nov 9 16:05:43 2020 +
Commit: Caolán McNamara 
CommitDate: Mon Nov 9 21:19:45 2020 +0100

tdf#136962 only do implicit SetUpdateMode optimization if the widget is 
hidden

callers can always opt-in with freeze/thaw for the lesser optimization
available if shown

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

diff --git a/vcl/source/app/salvtables.cxx b/vcl/source/app/salvtables.cxx
index 61a1e52211c3..fd9b2777db41 100644
--- a/vcl/source/app/salvtables.cxx
+++ b/vcl/source/app/salvtables.cxx
@@ -3336,7 +3336,9 @@ static SalInstanceTreeView* g_DragSource;
 
 namespace
 {
-class UpdateGuard
+// tdf#131581 if the TreeView is hidden then there are possibly additional
+// optimizations available
+class UpdateGuardIfHidden
 {
 private:
 SvTabListBox& m_rTreeView;
@@ -3344,10 +3346,11 @@ namespace
 bool m_bOrigEnableInvalidate;
 
 public:
-UpdateGuard(SvTabListBox& rTreeView)
+UpdateGuardIfHidden(SvTabListBox& rTreeView)
 : m_rTreeView(rTreeView)
-, m_bOrigUpdate(m_rTreeView.IsUpdateMode())
-// tdf#137432 only do the EnableInvalidate(false) optimization if 
the widget is currently hidden
+// tdf#136962 only do SetUpdateMode(false) optimization if the 
widget is currently hidden
+, m_bOrigUpdate(!m_rTreeView.IsVisible() && 
m_rTreeView.IsUpdateMode())
+// tdf#137432 only do EnableInvalidate(false) optimization if the 
widget is currently hidden
 , m_bOrigEnableInvalidate(!m_rTreeView.IsVisible() && 
m_rTreeView.GetModel()->IsEnableInvalidate())
 {
 if (m_bOrigUpdate)
@@ -3356,7 +3359,7 @@ namespace
 m_rTreeView.GetModel()->EnableInvalidate(false);
 }
 
-~UpdateGuard()
+~UpdateGuardIfHidden()
 {
 if (m_bOrigEnableInvalidate)
 m_rTreeView.GetModel()->EnableInvalidate(true);
@@ -4594,7 +4597,7 @@ public:
 
 virtual void all_foreach(const std::function& func) 
override
 {
-UpdateGuard aGuard(*m_xTreeView);
+UpdateGuardIfHidden aGuard(*m_xTreeView);
 
 SalInstanceTreeIter aVclIter(m_xTreeView->First());
 while (aVclIter.iter)
@@ -4607,7 +4610,7 @@ public:
 
 virtual void selected_foreach(const std::function& 
func) override
 {
-UpdateGuard aGuard(*m_xTreeView);
+UpdateGuardIfHidden aGuard(*m_xTreeView);
 
 SalInstanceTreeIter aVclIter(m_xTreeView->FirstSelected());
 while (aVclIter.iter)
@@ -4620,7 +4623,7 @@ public:
 
 virtual void visible_foreach(const std::function& 
func) override
 {
-UpdateGuard aGuard(*m_xTreeView);
+UpdateGuardIfHidden aGuard(*m_xTreeView);
 
 SalInstanceTreeIter aVclIter(m_xTreeView->GetFirstEntryInView());
 while (aVclIter.iter)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 133630] CRASH: Chart: Changing properties in different objects

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

--- Comment #25 from Leyan  ---
(In reply to NISZ LibreOffice Team from comment #23)

> 
> Hi
> 
> In order for your patch to be incorporated into LibreOffice, it's also
> necessary for you to send a license statement to the developer mailing list
> at: https://lists.freedesktop.org/mailman/listinfo/libreoffice
> 
> as documented on the developer wiki:
> https://wiki.documentfoundation.org/Development/GetInvolved#License_statement
> 
> Could you please do this?

Done here :
https://lists.freedesktop.org/archives/libreoffice/2020-November/086237.html

-- 
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 127173] REDACTION: Editing document with freehand redaction tool leaves area of light blue color

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

--- Comment #11 from Marco Marega  ---
(In reply to Buovjaga from comment #10)
> 
> So what is the status of this report? Can it be closed?

The behavior is not exactly what I expected, but considering that it does not
fill the area with blue color anymore, IMHO it can be closed.

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


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

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

Mihkel Tõnnov  changed:

   What|Removed |Added

 Depends on|103419  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103419
[Bug 103419] Description of SWITCH function is missing info, has confusing
wording
-- 
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 103419] Description of SWITCH function is missing info, has confusing wording

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

Mihkel Tõnnov  changed:

   What|Removed |Added

 Blocks|80430   |

--- Comment #5 from Mihkel Tõnnov  ---
(In reply to sdc.blanco from comment #4)
> @Mikhel -- Just to be sure -- you are referring to the "Function Wizard"
> (Ctrl-F2) in Calc and the "explanation" provided if the SWITCH function is
> selected.  Is that correctly understood?

Both the Function Wizard and the tooltip that's shown when one starts typing
=Switch in a cell.

> Also please see: 
> https://help.libreoffice.org/7.1/en-US/text/scalc/01/func_switch.html 
> (produced in 2019/20).
> 
> Maybe some of that text can be used in a revised explanation.  (The problem
> that you have reported is still present in 7.1.0.0.alpha.)

Very good that at least the Help now documents this.

> > A new field should be added for the default value in the Functions wizard.
> > 
> > Description for "expression" field should be slightly changed as well.
> > Currently: "Value that will be compared against value1-valueN."
> > Better: "Value that will be compared against value1...value30." (to remove
> > possible ambiguity of the dash/minus sign)De
> 
> I could not find this in Functions Wizard.

That's exactly the point ;)

> (This is not exactly a "documentation" problem -- because it is in UI, but
> in this case I should be able to help, once we have located what should be
> changed and to what.)

Indeed, bug 80430 is about gaps in Help - but this bug is about a "gap" in UI.
Removed reference to 80430.

Simplest way to solve this here bug would be to change/amend a few text strings
in the UI, most importantly the description of the function:
- "Checks 1 or more values and returns a result corresponding to the first
value equal to the given expression."
+ "Tests an expression against a list of values and returns the result
corresponding to the first value that matches the expression. Optionally, a
default result may be given instead of the final value-result pair, to be
returned if none of the values match the expression."

For added clarity, the following two could be changed as well:
1) The description of Result2...Result127 (NB: only starting from 2nd - not
sure how easily this can be done):
- "Value to return when corresponding value argument matches expression."
+ "Value to return when corresponding value argument matches expression, or
alternatively a default value to return."
2) The description of Expression:
- "Value that will be compared against value1-valueN."
+ "Value that will be compared against value1...value127."


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80430
[Bug 80430] [META] Documentation gap for new features
-- 
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 138100] UTF 8 Text File in Windows seems to problem with Umlauts (in DE äöüÄÖÜ) when loaded in Writer (at least til version 7.0)

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

--- Comment #5 from hastro...@gmail.com ---
Created attachment 167160
  --> https://bugs.documentfoundation.org/attachment.cgi?id=167160=edit
screenshot details 138100

shows the selection box 
after selected Text- Choosing Encoding e.g. in german (DE) 
Text - Textcodierung wählen

Unicode - (UTF-7) / Unicode - (UTF-8) / Unicode - (UTF-16)

What Option should be selected for the Standard UTF-8 (Not-UNICODE)

-- 
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 138100] UTF 8 Text File in Windows seems to problem with Umlauts (in DE äöüÄÖÜ) when loaded in Writer (at least til version 7.0)

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

Mike Kaganski  changed:

   What|Removed |Added

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

--- Comment #4 from Mike Kaganski  ---
Please don't play with the bug status, This is not a bug in the software. It is
working as intended in 7.0. It is enhanced in 7.1. It will not be changed in
7.0 retroactively, since all new features, such as new detection code, are only
introduced in master, not in release branches. This bug is closed. Period.

-- 
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 138074] typo in Polish language

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

Julien Nabet  changed:

   What|Removed |Added

 CC||piotre...@gmail.com,
   ||serval2...@yahoo.fr

--- Comment #1 from Julien Nabet  ---
Piotr: thought you might be interested in this one since it concerns Polish
language.

I noticed that in history of
https://translations.documentfoundation.org/translate/libo_ui-master/officecfgregistrydataorgopenofficeofficeui/pl/?checksum=be3346d7d7c47c64=+note%3A4cXLB_by=-priority%2Cposition,
there was "więcej" at the beginning.

-- 
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 138100] UTF 8 Text File in Windows seems to problem with Umlauts (in DE äöüÄÖÜ) when loaded in Writer (at least til version 7.0)

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

--- Comment #3 from hastro...@gmail.com ---
That was *not* a bug, but a missing feature of recognition of such files. The
correct way to open such files was using special "Text - Choose Encoding"
filter in File Open dialog
...
UTF8 w.o. BOM is a standard used world-wide ;   and still it is. 
---
Therefore we can  discuss, if a missing Standard behaviour is a Bug or Not.
It is not a good idea to prepare such answers, just to avoid to concede a 
minor or major or normal‘ behaviour.

Your hint choosing Encoding , 
there are  Unicode UTF-xx Options onyl – no Standard UTF-xx

Therefore my bugzilla report was correct.

-- 
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 138097] Add templates from Indonesian competition

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

Adolfo Jayme  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #1 from Adolfo Jayme  ---
I agree with your nominations for dropped templates, and I trust that you will
choose another set of six templates from the excellent visual work done by the
Indonesian community.

-- 
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 138097] Add templates from Indonesian competition

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

Adolfo Jayme  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #1 from Adolfo Jayme  ---
I agree with your nominations for dropped templates, and I trust that you will
choose another set of six templates from the excellent visual work done by the
Indonesian community.

-- 
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 138096] orthographic accent in Spanish language.

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

V Stuart Foote  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 CC||vstuart.fo...@utsa.edu
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from V Stuart Foote  ---
Is it a font issue, or an autocorrect error?

Is the U+00F3 "LATIN SMALL LETTER O WITH ACUTE" present on document canvas but
not shown bcz the font does not contain it?  Or, is the character being
replaced--not present on the document?

You can determine it by selecting the word, and then changing the font to one
you know includes the character.  Alternatively, in the "repercusin"
string--position the text cursor before the "n" and toggle the preceeding
character. 

If it shows U+00F3 the glyph is not included in the font--and it will not
appear. If it shows the U+0069 (LATIN SMALL LETTER I)-- there has been an
autocorrection error.

Which?

-- 
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 138095] Setup (Winx64 - main and helppack (de) contains an translation Error for Repair ( R-E-parieren instead of R-A-parieren)

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

Ming Hua  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #5 from Ming Hua  ---
(In reply to Uwe Auer from comment #2)
> (In reply to Ming Hua from comment #1)
> > There is no strings currently translated from "repair" to "raparieren" on
> > Weblate (the translation website used by LibreOffice).  
> 
> Hmm - but
> https://opengrok.libreoffice.org/xref/translations/source/de/
> instsetoo_native/inc_openoffice/windows/msi_languages.
> po?r=3d85ba95=111005=4535#4535 shows "Raparieren" for line 4535.
Aha, my search didn't find it because the source string is "Re".

The string is here:
https://weblate.documentfoundation.org/translate/libo_ui-master/instsetoo_nativeinc_openofficewindowsmsi_languages/de/?checksum=fccd17242d8c310c#history
and it has been fixed by the German translators since a few days ago (which is
probably the reason why searching translated string "raparieren" gave me no
results).

So this has been fixed, just not in the git repo yet.  I'll leave it as NEW for
a few days, and mark it as RESOLVED once the Weblate-to-git synchronization is
done.

-- 
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 138095] Setup (Winx64 - main and helppack (de) contains an translation Error for Repair ( R-E-parieren instead of R-A-parieren)

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

--- Comment #4 from hastro...@gmail.com ---
I gave  the hex Offset values of the analyzed MSI file from Alpha 7.1
it is a minor bug in both files :
The Translation found inside the msi-file(s) english and german at the shown
offset for ‘Raparieren’ to ‘Reparieren’

LibreOfficeDev_7.1.0.0.alpha1_Win_x64   
// EN offset; xc9a0+c ‘Repair’  from (en)Dialog 
// DE offset; x0d166de0+a  ‘Raparieren’ from (de) Dialog (x0d166d0+b = a -> e)
Sha1:: 274d2bcad6014096d8108b10ab0947af0ad73031

LibreOfficeDev_7.1.0.0.alpha1_Win_x64_helppack_de.msi 
// EN offset; xb930+c ‘Repair’  from (en)Dialog 
// DE offset; x00A0710  ‘Raparieren’ from (de) Dialog (offset; x00A0710+1 a->e)
Sha1::d199d63ddc6f2127acb8b9a043bca79450e94c8a  

Meanwhile other comment in this post have found source and shows screenshots

Thanks

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


[Libreoffice-bugs] [Bug 138100] UTF 8 Text File in Windows seems to problem with Umlauts (in DE äöüÄÖÜ) when loaded in Writer (at least til version 7.0)

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

hastro...@gmail.com changed:

   What|Removed |Added

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

--- Comment #2 from hastro...@gmail.com ---
That was *not* a bug, but a missing feature of recognition of such files. The
correct way to open such files was using special "Text - Choose Encoding"
filter in File Open dialog
...
UTF8 w.o. BOM is a standard used world-wide ;   and still it is. 
---
Therefore we can  discuss, if a missing Standard behaviour is a Bug or Not.
It is not a good idea to prepare such answers, just to avoid to concede a 
minor or major or normal‘ behaviour.

Your hint choosing Encoding , 
there are  Unicode UTF-xx Options onyl – no Standard UTF-xx

Therefore my bugzilla report was correct.

-- 
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 137991] Date/time labelling in a chart is VERY poor

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

--- Comment #15 from Ralph Peters  ---
Yes, "fixing" the "problem" would require some software work and may add other
problems.

In my case, my problems disappeared IF I make one slight change when importing
the data from the CSV data files.  During import, I need to change the
date-time column's "Column type" from "Standard" to "Date(YMD)"  THEN, almost
all of my problems disappear and it is straightforward to do the rest and get a
nice plot.

So, detecting that "Standard" might not be correct for the date-time column and
informing the user may help.

I would imagine that there is at least entry on this CSV import topic in
AskLibreOffice, but I did not see it.

Thanks again,
Ralph Peters

-- 
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 138095] Setup (Winx64 - main and helppack (de) contains an translation Error for Repair ( R-E-parieren instead of R-A-parieren)

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

--- Comment #3 from Uwe Auer  ---
Created attachment 167159
  --> https://bugs.documentfoundation.org/attachment.cgi?id=167159=edit
Translation Error "Raparieren" for "Repair" Install

Attached screenshot shows the translation error "Raparieren" for a "Repair"
installation, when executing the MSI on a system already having the same
version installed.

-- 
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 132611] FILESAVE: DOCX: Incorrect spacing in footnote after RT (extra CR added b/c of table in footnote)

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

Justin L  changed:

   What|Removed |Added

Summary|FILESAVE: DOCX: Incorrect   |FILESAVE: DOCX: Incorrect
   |spacing in footnote after   |spacing in footnote after
   |RT  |RT (extra CR added b/c of
   ||table in footnote)

-- 
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 138061] UI: Make tip of the day less dominant

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

--- Comment #6 from Telesto  ---
(In reply to V Stuart Foote from comment #5)
Hmm, we are indeed floating of my initial topic. They point was actually more
that sometimes they dialog popups up at unwanted moments. Even for Benjamins.

Or that it popup occurs at not ideal moment. So you're actually interested, but
not now (should be bug about this in tip of they day meta).

And after two or three times being annoyed by they ToTD you click don't show
again simply because you want to get rid of they dialog. You're not disliking
they content but they timing of they popup (not now).

I already that annoyed (but biased) that I click that thing away at the first
instance (after profile reset). So I even miss out they configure your
Interface Tip. 

This likely works for people totally new to LibreOffice but not sure about they
rest of they user base. Some probably read all those tips. Others are annoyed
but tips. Or not interest in they topics handled. So all sorts of avoidance
kicking in.

But that's my personal opinion/experience

-- 
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 138061] UI: Make tip of the day less dominant

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

--- Comment #6 from Telesto  ---
(In reply to V Stuart Foote from comment #5)
Hmm, we are indeed floating of my initial topic. They point was actually more
that sometimes they dialog popups up at unwanted moments. Even for Benjamins.

Or that it popup occurs at not ideal moment. So you're actually interested, but
not now (should be bug about this in tip of they day meta).

And after two or three times being annoyed by they ToTD you click don't show
again simply because you want to get rid of they dialog. You're not disliking
they content but they timing of they popup (not now).

I already that annoyed (but biased) that I click that thing away at the first
instance (after profile reset). So I even miss out they configure your
Interface Tip. 

This likely works for people totally new to LibreOffice but not sure about they
rest of they user base. Some probably read all those tips. Others are annoyed
but tips. Or not interest in they topics handled. So all sorts of avoidance
kicking in.

But that's my personal opinion/experience

-- 
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 125557] Mouse Selection Misbehaves if Last Cell Has Comment

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

Aron Budea  changed:

   What|Removed |Added

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

--- Comment #3 from Aron Budea  ---
Seems so, thanks for retesting, let's close as WFM.

-- 
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 138095] Setup (Winx64 - main and helppack (de) contains an translation Error for Repair ( R-E-parieren instead of R-A-parieren)

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

--- Comment #2 from Uwe Auer  ---
(In reply to Ming Hua from comment #1)
> There is no strings currently translated from "repair" to "raparieren" on
> Weblate (the translation website used by LibreOffice).  

Hmm - but
https://opengrok.libreoffice.org/xref/translations/source/de/instsetoo_native/inc_openoffice/windows/msi_languages.po?r=3d85ba95=111005=4535#4535
shows "Raparieren" for line 4535.

-- 
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 138100] UTF 8 Text File in Windows seems to problem with Umlauts (in DE äöüÄÖÜ) when loaded in Writer (at least til version 7.0)

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

Mike Kaganski  changed:

   What|Removed |Added

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

--- Comment #1 from Mike Kaganski  ---
The problem that you see is related to your text file having no BOM that is
used to mark file as UTF-8. In the absence of that byte-order mark, previous
versions of LibreOffice didn't detect the encoding, and used current system
encoding - which on Windows is ~guaranteed to be non-UTF-8. So your text was
imported using wrong encoding.

That was *not* a bug, but a missing feature of recognition of such files. The
correct way to open such files was using special "Text - Choose Encoding"
filter in File Open dialog.

In v.7.1, tdf#60145 was implemented, as you see. So no, when you see something
fixed in the next version, it doesn't mean that not having it in the previous
version is a bug and should be fixed. Not having it in 7.0 is NOTABUG.

-- 
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 138061] UI: Make tip of the day less dominant

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

--- Comment #5 from V Stuart Foote  ---
TotD check-box toggle is prominently placed on Tools -> Options -> General tab.
Not burried in Expert Configuration. Enabled by default.

'Eve' users will set the toggle off early in their usage. "Benjamin" users, who
these tips are targeting, benefit by having it enabled by default.  Once they
become 'Eve' users--they can choose to configure as preferred. Maybe a TotD
item letting them know as much.

Otherwise, I'm fine with the Tip-of-the-Day dialog and continued enabled by
default (I don't think moving TotD to the Infobar would be helpful for the
targeted "Benjamin" users).

-1

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


[Libreoffice-ux-advise] [Bug 138061] UI: Make tip of the day less dominant

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

--- Comment #5 from V Stuart Foote  ---
TotD check-box toggle is prominently placed on Tools -> Options -> General tab.
Not burried in Expert Configuration. Enabled by default.

'Eve' users will set the toggle off early in their usage. "Benjamin" users, who
these tips are targeting, benefit by having it enabled by default.  Once they
become 'Eve' users--they can choose to configure as preferred. Maybe a TotD
item letting them know as much.

Otherwise, I'm fine with the Tip-of-the-Day dialog and continued enabled by
default (I don't think moving TotD to the Infobar would be helpful for the
targeted "Benjamin" users).

-1

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


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

2020-11-09 Thread Andrea Gelmini (via logerrit)
 svx/source/table/tablelayouter.cxx |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

New commits:
commit 563f3e31268b1540a7b76889e8c558de87e5bc95
Author: Andrea Gelmini 
AuthorDate: Mon Nov 9 18:43:47 2020 +0100
Commit: Julien Nabet 
CommitDate: Mon Nov 9 19:40:08 2020 +0100

Fix typo

Change-Id: If69267e6ef9cc73842a6aee805d3c07b088aa9bc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105488
Reviewed-by: Julien Nabet 
Tested-by: Jenkins

diff --git a/svx/source/table/tablelayouter.cxx 
b/svx/source/table/tablelayouter.cxx
index 6859d0a2eee8..80d0a52f4db2 100644
--- a/svx/source/table/tablelayouter.cxx
+++ b/svx/source/table/tablelayouter.cxx
@@ -782,12 +782,12 @@ void TableLayouter::LayoutTableHeight( tools::Rectangle& 
rArea, bool bFit )
 nMinHeight = xCell->getMinimumHeight();
 }
 
-// tdf#137949  We should consider "Heigth" property while 
calculating minimum height.
-// This control decides when we use "Heigth" property 
value instead of calculated minimum height
-// Case 1: * Row has "Heigth" property
-// * Calculated minimum heigth is smaller than 
Height propery value.
-// Case 2: * Row has "Heigth" property
-// * Calculated minimum heigth is bigger than 
Height propery value and
+// tdf#137949  We should consider "Height" property while 
calculating minimum height.
+// This control decides when we use "Height" property 
value instead of calculated minimum height
+// Case 1: * Row has "Height" property
+// * Calculated minimum height is smaller than 
Height property value.
+// Case 2: * Row has "Height" property
+// * Calculated minimum height is bigger than 
Height property value and
 // * Row has not any text of any cell in edit 
mode in the row (means completely empty)
 if ((nMinHeight < nRowPropHeight && nRowPropHeight > 0 ) ||
 (nMinHeight > nRowPropHeight && nRowPropHeight > 0 && 
(!bRowHasText && !bRowHasCellInEditMode)))
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 138068] memory management and fonts

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

Telesto  changed:

   What|Removed |Added

 OS|Mac OS X (All)  |All

--- Comment #5 from Telesto  ---
Confirming slowness with GDI on Windows and also on MacOS
Version: 7.1.0.0.alpha1+ (x64)
Build ID: 5a96093f0ecee53432bdf35f247edd6deb501baf
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: default; 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 138068] memory management and fonts

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

--- Comment #4 from Telesto  ---
Created attachment 167158
  --> https://bugs.documentfoundation.org/attachment.cgi?id=167158=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 138061] UI: Make tip of the day less dominant

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

--- Comment #4 from Telesto  ---
(In reply to Adolfo Jayme from comment #3)
> For me, these would be two ideal fixes for this bug; in order of preference:
> 
> • The Tip of the Day dialog should be shown automatically only the first
> time you start LibreOffice (i.e., with a new profile). To achieve this, the
> “Show tips on startup” checkbox should be disabled by default, so that, by
> requiring no action from the user, the dialog will not be shown on the next
> startup. This will make LibreOffice behave exactly like GIMP does¹, but
> allowing for a better discovery of the tips.
> 
> [1] GIMP has disabled the Tip of the Day dialog as well since version 2.6,
> because users found it annoying.
> https://docs.gimp.org/2.10/en/gimp-tips-dialog.html

Sounds like nice comprise :P

-- 
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 138061] UI: Make tip of the day less dominant

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

--- Comment #4 from Telesto  ---
(In reply to Adolfo Jayme from comment #3)
> For me, these would be two ideal fixes for this bug; in order of preference:
> 
> • The Tip of the Day dialog should be shown automatically only the first
> time you start LibreOffice (i.e., with a new profile). To achieve this, the
> “Show tips on startup” checkbox should be disabled by default, so that, by
> requiring no action from the user, the dialog will not be shown on the next
> startup. This will make LibreOffice behave exactly like GIMP does¹, but
> allowing for a better discovery of the tips.
> 
> [1] GIMP has disabled the Tip of the Day dialog as well since version 2.6,
> because users found it annoying.
> https://docs.gimp.org/2.10/en/gimp-tips-dialog.html

Sounds like nice comprise :P

-- 
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 108799] [META] HTML export bugs and enhancements

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

Olivier Hallot  changed:

   What|Removed |Added

 Depends on||138103


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=138103
[Bug 138103] Bullet list: Add option to insert non-breaking space after bullet
-- 
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 138103] Bullet list: Add option to insert non-breaking space after bullet

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

Olivier Hallot  changed:

   What|Removed |Added

 Blocks||108799


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108799
[Bug 108799] [META] HTML export 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 138103] New: Bullet list: Add option to insert non-breaking space after bullet

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

Bug ID: 138103
   Summary: Bullet list: Add option to insert non-breaking space
after bullet
   Product: LibreOffice
   Version: 7.1.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: olivier.hal...@libreoffice.org

Open a bullet list style
Select "Position -> Number followed by"

3 options available:
- Space
- tab
- nothing

The enhancement is to add a non-breaking space () to the list above.

Rationale:
On exporting to XHTML, the spaces and tabs are not rendered and the text is not
fasten from the bullet. 

For numbering lists, there is provision to add characters following the
numbering, and one can add a non-breaking space by pasting it in the field.
This feature is not available in bullet lists.

-- 
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 138095] Setup (Winx64 - main and helppack (de) contains an translation Error for Repair ( R-E-parieren instead of R-A-parieren)

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

Ming Hua  changed:

   What|Removed |Added

 CC||ming.v@qq.com

--- Comment #1 from Ming Hua  ---
There is no strings currently translated from "repair" to "raparieren" on
Weblate (the translation website used by LibreOffice).  All five strings
inclusing "repair" seem to be translated correctly to "reparieren":
https://translations.documentfoundation.org/translate/libo_ui-master/instsetoo_nativeinc_openofficewindowsmsi_languages/de/?offset==+source%3Arepair+_by=-priority%2Cposition=
and searching for translated string "raparieren" gives no result.

Please attach a screenshot showing the exact place of the typo in the dialog. 
The error may be in other software (Windows?  What LO uses to make the Windows
installer?) instead of LO.

-- 
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 123403] Spreadsheet comments behave strangely in LOOL if copy-pasted

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

--- Comment #5 from Gunter Ohrner 
 ---
This still happens with:

LOOLWSD
6.4.0 (git hash: 2e195e5)
Angeboten von: a5ee88c4

LOKit
Collabora Office 6.4-7 (git hash: 0f7375b)
"Ubuntu 18.04.5 LTS"

-- 
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 138102] FILEOPEN DOCX Continous section break imported with extra paragraph if the first document node is table

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

--- Comment #5 from NISZ LibreOffice Team  ---
Created attachment 167157
  --> https://bugs.documentfoundation.org/attachment.cgi?id=167157=edit
Screenshot of the document having no table side by side in Word and Writer -
good

-- 
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 138102] FILEOPEN DOCX Continous section break imported with extra paragraph if the first document node is table

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

--- Comment #4 from NISZ LibreOffice Team  ---
Created attachment 167156
  --> https://bugs.documentfoundation.org/attachment.cgi?id=167156=edit
Example file from Word without table

-- 
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 138102] FILEOPEN DOCX Continous section break imported with extra paragraph if the first document node is table

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

--- Comment #3 from NISZ LibreOffice Team  ---
Created attachment 167155
  --> https://bugs.documentfoundation.org/attachment.cgi?id=167155=edit
Screenshot of the document beginning with paragraph side by side in Word and
Writer - good

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


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

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

--- Comment #1 from Gunter Ohrner 
 ---
LOOLWSD
6.4.0 (git hash: 2e195e5)
Angeboten von: a5ee88c4

LOKit
Collabora Office 6.4-7 (git hash: 0f7375b)
"Ubuntu 18.04.5 LTS"

-- 
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 138099] "Jumpy" Sheets When Switching Sheets and Editing in LOOL Calc 6.4 (Collabora CODE 6.4 Docker)

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

--- Comment #1 from Gunter Ohrner 
 ---
LOOLWSD
6.4.0 (git hash: 2e195e5)
Angeboten von: a5ee88c4

LOKit
Collabora Office 6.4-7 (git hash: 0f7375b)
"Ubuntu 18.04.5 LTS"

-- 
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 138102] FILEOPEN DOCX Continous section break imported with extra paragraph if the first document node is table

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

--- Comment #2 from NISZ LibreOffice Team  ---
Created attachment 167154
  --> https://bugs.documentfoundation.org/attachment.cgi?id=167154=edit
Example file from Word beginning with paragraph

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