[Libreoffice-bugs] [Bug 140852] FILEOPEN PPTX: text box shows as half the width (and with an extra bullet)

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140852

Timur  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=13
   ||3015
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
Version|7.2.0.0.alpha0+ Master  |7.0.2.2 release
   Keywords|bibisectRequest |bibisected, bisected

--- Comment #5 from Timur  ---
This bug is about half width of text box. Repro 7.2+.
I bibisected in 7.0 and culprit is fix in bug 133015. There are more commits
there (with different regressions) and this one is 8faf8... Inherit numCol...

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


[Libreoffice-bugs] [Bug 140906] New: Autocorrect fails on :---:

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140906

Bug ID: 140906
   Summary: Autocorrect fails on :---:
   Product: LibreOffice
   Version: 7.1.0.3 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mark.coet...@gmail.com

Description:
Autocorrect: on typing :---: I now have to leave a space after the last word
typed e.g. "...typed :---: " and then hit return before the autocorrect works,
which also introduces a new line, which is very inconvenient... 

Steps to Reproduce:
1. As above...
2.
3.

Actual Results:
As above...

Expected Results:
Immediate autocorrect to m dash...


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
Immediate autocorrect to m dash...

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


[Libreoffice-bugs] [Bug 140881] LO fails opening some WOFF and TTF files

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140881

--- Comment #4 from Xisco Faulí  ---
(In reply to Eyal Rozenberg from comment #3)
> (In reply to Xisco Faulí from comment #2)
> > Those are warning, not errors.
> 
> Let me rephrase: Why the failures opening the files, if the fonts are ok and
> usable?

again, it's not a failure, it's a warning

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


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

2021-03-08 Thread Miklos Vajna (via logerrit)
 sw/qa/core/draw/data/textbox-undo-ordnum.docx |binary
 sw/qa/core/draw/draw.cxx  |   53 ++
 2 files changed, 53 insertions(+)

New commits:
commit d2a45762f1b5f1c7093469e34d9f56defa88e9e4
Author: Miklos Vajna 
AuthorDate: Mon Mar 8 21:06:10 2021 +0100
Commit: Miklos Vajna 
CommitDate: Tue Mar 9 08:37:07 2021 +0100

tdf#140292 sw: fix z-order of textbox on undo

Regression from commit 200cd2b99bee18962a970edc5d059286f6c3ea0e
(tdf#138995 DOCX import: fix handling of textbox zorders, 2021-01-11),
the problem was already fixed by Michael Stahl, this just adds a test
for it.

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

diff --git a/sw/qa/core/draw/data/textbox-undo-ordnum.docx 
b/sw/qa/core/draw/data/textbox-undo-ordnum.docx
new file mode 100644
index ..96b00973289a
Binary files /dev/null and b/sw/qa/core/draw/data/textbox-undo-ordnum.docx 
differ
diff --git a/sw/qa/core/draw/draw.cxx b/sw/qa/core/draw/draw.cxx
index b8544022589a..c4654dde8127 100644
--- a/sw/qa/core/draw/draw.cxx
+++ b/sw/qa/core/draw/draw.cxx
@@ -10,11 +10,14 @@
 #include 
 
 #include 
+#include 
 
 #include 
 #include 
 #include 
 #include 
+#include 
+#include 
 
 constexpr OUStringLiteral DATA_DIRECTORY = u"/sw/qa/core/draw/data/";
 
@@ -46,6 +49,56 @@ CPPUNIT_TEST_FIXTURE(SwCoreDrawTest, testTextboxDeleteAsChar)
 CPPUNIT_ASSERT_EQUAL(static_cast(0), nActual);
 }
 
+CPPUNIT_TEST_FIXTURE(SwCoreDrawTest, testTextboxUndoOrdNum)
+{
+// Given a document with 5 frame formats:
+// - picture
+// - draw format + fly format and a picture in it
+// - picture
+SwDoc* pDoc = createSwDoc(DATA_DIRECTORY, "textbox-undo-ordnum.docx");
+SwWrtShell* pWrtShell = pDoc->GetDocShell()->GetWrtShell();
+const SwFrameFormats& rFormats = *pDoc->GetSpzFrameFormats();
+// Test the state before del + undo.
+for (const auto& pFormat : rFormats)
+{
+const SwFrameFormat* pFlyFormat
+= SwTextBoxHelper::getOtherTextBoxFormat(pFormat, RES_DRAWFRMFMT);
+if (!pFlyFormat)
+{
+continue;
+}
+
+sal_Int32 nDrawOrdNum = pFormat->FindRealSdrObject()->GetOrdNum();
+sal_Int32 nFlyOrdNum = pFlyFormat->FindRealSdrObject()->GetOrdNum();
+CPPUNIT_ASSERT_EQUAL(nDrawOrdNum + 1, nFlyOrdNum);
+}
+
+// When selecting the first page, deleting the selection and undoing:
+pWrtShell->Down(true, 3);
+pWrtShell->DelLeft();
+pWrtShell->Undo();
+
+// Then the z-order of the fly format should be still the z-order of the 
draw format + 1, when
+// the fly and draw formats form a textbox pair.
+for (const auto& pFormat : rFormats)
+{
+const SwFrameFormat* pFlyFormat
+= SwTextBoxHelper::getOtherTextBoxFormat(pFormat, RES_DRAWFRMFMT);
+if (!pFlyFormat)
+{
+continue;
+}
+
+sal_Int32 nDrawOrdNum = pFormat->FindRealSdrObject()->GetOrdNum();
+sal_Int32 nFlyOrdNum = pFlyFormat->FindRealSdrObject()->GetOrdNum();
+// Without the accompanying fix in place, this test would have failed 
with:
+// - Expected: 4
+// - Actual  : 2
+// i.e. the fly format was behind the draw format, not visible.
+CPPUNIT_ASSERT_EQUAL(nDrawOrdNum + 1, nFlyOrdNum);
+}
+}
+
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 140905] EDITING: chart loses data without warning when any referenced row is deleted from sheet

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140905

--- Comment #2 from txcsharp...@gmail.com ---
Created attachment 170362
  --> https://bugs.documentfoundation.org/attachment.cgi?id=170362=edit
Screen shots to show before/after conditions

Shows the effect this bug has on the bubble chart.

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


CppunitTest_vcl_skia failing on tb68 with illegal instruction

2021-03-08 Thread Stephan Bergmann
I noticed that at least on 
, all recent builds 
of  failed 
CppunitTest_vcl_skia with



/usr/bin/sh: line 1:  9724 Illegal instruction ( MAX_CONCURRENCY=4 MOZILLA_CERTIFICATE_FOLDER=dbm: SAL_DISABLE_SYNCHRONOUS_PRINTER_DETECTION=1 LIBO_LANG=C 
PATH="C:\cygwin\home\tdf\lode\jenkins\workspace\gerrit_windows\instdir\program;C:\cygwin\home\tdf\lode\jenkins\workspace\gerrit_windows\instdir\program;C:\cygwin\home\tdf\lode\jenkins\workspace\gerrit_windows\workdir\LinkTarget\Library;C:\cygwin\home\tdf\lode\jenkins\workspace\gerrit_windows\workdir\UnpackedTarball\cppunit\src\cppunit\DebugDll;$PATH"
 $W/LinkTarget/Executable/cppunittester.exe $W/LinkTarget/CppunitTest/test_vcl_skia.dll --headless "-env:BRAND_BASE_DIR=file:///$S/instdir" 
"-env:BRAND_SHARE_SUBDIR=share" "-env:BRAND_SHARE_RESOURCE_SUBDIR=program/resource" "-env:UserInstallation=file:///$W/CppunitTest/vcl_skia.test.user" 
"-env:CONFIGURATION_LAYERS=xcsxcu:file:///$I/share/registry xcsxcu:file:///$W/unittest/registry" "-env:UNO_TYPES=file:///$I/program/types.rdb 
file:///$I/program/types/offapi.rdb" "-env:UNO_SERVICES=file:///$W/Rdb/ure/services.rdb file:///$W/Rdb/services.rdb" -env:URE_INTERNAL_LIB_DIR=file:///$I/program 
-env:LO_LIB_DIR=file:///$I/program -env:LO_JAVA_DIR=file:///$I/program/classes --protector $W/LinkTarget/Library/unoexceptionprotector.dll unoexceptionprotector --protector 
$W/LinkTarget/Library/unobootstrapprotector.dll unobootstrapprotector --protector $W/LinkTarget/Library/vclbootstrapprotector.dll vclbootstrapprotector 
"-env:CPPUNITTESTTARGET=$W/CppunitTest/vcl_skia.test" ) > $W/CppunitTest/vcl_skia.test.log 2>&1
[_RUN_] `anonymous namespace'::SkiaTest::testBitmapErase
`anonymous namespace'::SkiaTest::testBitmapErase finished in: 5ms
[_RUN_] `anonymous namespace'::SkiaTest::testDrawShaders
`anonymous namespace'::SkiaTest::testDrawShaders finished in: 76ms
[_RUN_] `anonymous namespace'::SkiaTest::testInterpretAs8Bit
`anonymous namespace'::SkiaTest::testInterpretAs8Bit finished in: 0ms
[_RUN_] `anonymous namespace'::SkiaTest::testAlphaBlendWith
`anonymous namespace'::SkiaTest::testAlphaBlendWith finished in: 1ms
[_RUN_] `anonymous namespace'::SkiaTest::testBitmapCopyOnWrite
`anonymous namespace'::SkiaTest::testBitmapCopyOnWrite finished in: 1ms
[_RUN_] `anonymous namespace'::SkiaTest::testMatrixQuality
[build CUT] xmloff_style

Error: a unit test failed, please do one of:
make CppunitTest_vcl_skia CPPUNITTRACE=TRUE # which is a shortcut for the 
following line
make CppunitTest_vcl_skia CPPUNITTRACE="'C:/Program Files (x86)/Microsoft Visual 
Studio/2019/Community/Common7/IDE/devenv.exe' /debugexe" # for interactive debugging 
in Visual Studio
make CppunitTest_vcl_skia CPPUNITTRACE="drmemory -free_max_frames 20" # for 
memory checking (install Dr.Memory first, and put it to your PATH)


(e.g., ).

@Luboš:  I assume that external/skia (maybe since 
 
"update Skia to chrome/m90", which reached master on 2021-03-03?) is 
built with support for instruction set extensions that are not available 
on tb68.


@Christian:  I thus now tried to take tb68 off the "Gerrit Windows" 
build, by changing at 
 the 
"Lables" text field from



Gerrit Windows windows_msc_dbgutil_32


to


windows_msc_dbgutil_32


(but not sure that's right? puzzled that that field appears to be a 
free-form text field, with no apparent separator among the label names 
which seemingly can contain spaces like that "Gerrit Windows").


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


[Libreoffice-bugs] [Bug 140905] EDITING: chart loses data without warning when any referenced row is deleted from sheet

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140905

--- Comment #1 from txcsharp...@gmail.com ---
Created attachment 170361
  --> https://bugs.documentfoundation.org/attachment.cgi?id=170361=edit
screen shot #1

Screen shots from pristine sample file before the bug occurs.

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


[Libreoffice-bugs] [Bug 108518] FILEOPEN: DOC file list numbers incorrectly italicized

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108518

--- Comment #12 from Justin L  ---
If 9037 - italics-in-para-causes-italic-numbered-list.doc is first
round-tripped by Word 2003, then it opens up properly. So there might be
something a bit wrong or corrupt with this 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 140905] EDITING: chart loses data without warning when any referenced row is deleted from sheet

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140905

txcsharp...@gmail.com changed:

   What|Removed |Added

Crash report or||crashreport.libreoffice.org
crash signature||/stats/crash_details/c0af81
   ||c4-fd17-4c41-9ec6-74ffd4f0e
   ||eda

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


[Libreoffice-bugs] [Bug 140905] New: EDITING: chart loses data without warning when any referenced row is deleted from sheet

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140905

Bug ID: 140905
   Summary: EDITING: chart loses data without warning when any
referenced row is deleted from sheet
   Product: LibreOffice
   Version: 6.4.6.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: txcsharp...@gmail.com

Created attachment 170360
  --> https://bugs.documentfoundation.org/attachment.cgi?id=170360=edit
sample file to reproduce the bug

When a row or group of rows is deleted, if an existing chart contains a
reference to any element in that row(s), Calc will lose the conditional
formatting under certain conditions. 
RELATED: bug 140901, bug 140903

Initially marking this as Major - seems like a serious glitch.
Has a couple of workarounds, both of which are clumsy and time-consuming:
Option 1. Wait for the bug to occur, then go into each messed up chart and fix
the data ranges.
Option 2. If the charts are first modified to exclude any references to any of
the rows about to be deleted, then the row deletion is successful and the bug
does not occur. This is the workaround I've been using, but I often forget to
do this until it crashes and I ask myself, "what was that strange thing I had
to do the last time it crashed". 

STEPS TO REPRODUCE:
[Note that steps 1-8 are identical to bug 140903. Also, steps 1-3 are identical
to those in bug 140901. STEP 9 AND THE ACTUAL/EXPECTED BEHAVIOR NOTES ARE
DIFFERENT.]
1. Open the sample XLS file 'sample file to reproduce the bug'. (Please forgive
how odd it looks, I deleted a lot of text to anonymize the file.) If you look
at the chart data ranges (see 'Charts' tab), you'll notice the charts reference
data up through row 644 on the 'Sheet13' tab. This is also demonstrated in the
'screen shot #1' attachment.
2. Now go to the 'Sheet13' tab. Attempt to do any 'delete row(s)' operation for
one or more rows which are referenced by the charts on the 'Charts' tab. Calc
will quickly crash. In my testing, I deleted row 631.
3. That action corresponds to
crashreport.libreoffice.org/stats/crash_details/abfe5c0d-223c-4c80-ae76-6983ae8f6258
 and is already covered in bug 140901.
[THIS BUG BEGINS HERE:]
4. Allow the Recovery process to proceed, but do NOT select the option to enter
Safe Mode. Let it generate the crash report, and again in that dialog, do NOT
open in Safe Mode, just press the Close button. This opens LibreOffice 6.4
Document Recovery. Press Start to let it recover and reopen the file. When it
is recovered, press Finish, but DO NOT save the sample file - there are more
steps first.
5. When the file reopens, take a screen shot of each of the two tabs for
comparison after step 4. (As expected, the deleted row(s) are still there.) You
should see something similar to the first screen shot attachment.
6. Remember, DO NOT save the file, not yet. Now delete row 631 again, or any
other row (or group of rows) which are referenced by the charts. Calc will
again crash as it did in step 2, but again that's not what we're interested in
with this bug report. However, another bug has occurred that will show itself
momentarily.
7. For this step, I deleted row 631 again. That action corresponds to
crashreport.libreoffice.org/stats/crash_details/c0af81c4-fd17-4c41-9ec6-74ffd4f0eeda
 and is reproducible 100% of the time. THIS CRASH REPORT IS WHAT I THINK YOU'LL
WANT HERE. I only put the other one just in case it's related.
8. Proceed with Recovery as before, NO safe mode, DON'T save the file yet. 
9. When the file reopens, on the 'Charts' tab, notice that the bubble chart now
has some missing data. The bug seems to change the data ranges in different and
unexpected ways depending on exactly which rows are attempted for deletion,
which seems to indicate an algorithm is trying to reinterpret the data ranges
but is doing so incorrectly. If you edit the chart to view the data ranges
you'll see that they have changed from what they were in the original.

ACTUAL: Calc crashes with no warning, then after the second attempt crashes
again but data in the charts is changed after the second Restore operation (but
not the first). In the second restore, Calc attempts to reinterpret the data
ranges, but it does so incorrectly.

EXPECTED: Either prompt the user with something that asks if they want to
update the charts or cancel the row-delete operation, OR have Calc just do it
automatically. But either way it should reinterpret the data ranges correctly.

DEV NOTES:
1. There are some related bugs which I am reporting separately. Those occur
under similar circumstances, but since they have additional unexpected results,
they are probably separate bugs.
2. This bug deals with deleting a row or group of rows which a chart holds a
reference to. (Not deleting 

[Libreoffice-bugs] [Bug 87778] Locale not respected in Online Update Options dialog

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87778

--- Comment #11 from rob...@prino.org ---
Still present!

Version: 7.1.1.2 (x64) / LibreOffice Community
Build ID: fe0b08f4af1bacafe4c7ecc87ce55bb426164676
CPU threads: 8; OS: Windows 6.1 Service Pack 1 Build 7601; UI render:
Skia/Raster; VCL: win
Locale: en-GB (en_GB); UI: en-US
Calc: threaded

Obviously nobody really gives a fluck about this, given that this problem has
now been around for more than six years!

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


[Libreoffice-bugs] [Bug 140902] How To Get The Complete Data in a PDF File in no time.

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140902

Timur  changed:

   What|Removed |Added

 Status|RESOLVED|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 140902] How To Get The Complete Data in a PDF File in no time.

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140902

Timur  changed:

   What|Removed |Added

  Component|General |deletionRequest
Product|Impress Remote  |LibreOffice
 Resolution|--- |INVALID
 Status|UNCONFIRMED |RESOLVED

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


[Libreoffice-bugs] [Bug 140904] New: crashing

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140904

Bug ID: 140904
   Summary: crashing
   Product: LibreOffice
   Version: 6.3.2.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Documentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: flyingchicken3...@gmail.com
CC: olivier.hal...@libreoffice.org

Description:
crashes when pasting text into table

Actual Results:
ctrl v

Expected Results:
freeze


Reproducible: Always


User Profile Reset: No



Additional Info:
not freezed

-- 
You are receiving this mail because:
You 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/inc

2021-03-08 Thread Stephan Bergmann (via logerrit)
 vcl/inc/skia/win/gdiimpl.hxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3186f98a29432400d0627eec992da926dd5852c6
Author: Stephan Bergmann 
AuthorDate: Mon Mar 8 17:41:35 2021 +0100
Commit: Stephan Bergmann 
CommitDate: Tue Mar 9 08:10:10 2021 +0100

loplugin:staticmethods (clang-cl)

Change-Id: I0a58f7dda3406509344d791a5e24df22a69b2478
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112179
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/vcl/inc/skia/win/gdiimpl.hxx b/vcl/inc/skia/win/gdiimpl.hxx
index 594d4bad4b8c..fb82731ad533 100644
--- a/vcl/inc/skia/win/gdiimpl.hxx
+++ b/vcl/inc/skia/win/gdiimpl.hxx
@@ -62,7 +62,7 @@ public:
 protected:
 virtual void createWindowContext(bool forceRaster = false) override;
 virtual void performFlush() override;
-sk_sp createDirectWriteTypeface(HDC hdc, HFONT hfont);
+static sk_sp createDirectWriteTypeface(HDC hdc, HFONT hfont);
 static void initFontInfo();
 inline static sal::systools::COMReference dwriteFactory;
 inline static sal::systools::COMReference 
dwriteGdiInterop;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 140608] cannot reset character colour with ^m

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140608

Dieter  changed:

   What|Removed |Added

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

--- Comment #2 from Dieter  ---
If I open attached document, '0' isn't purple, but black.

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


[Libreoffice-commits] core.git: Branch 'libreoffice-7-1' - vcl/osx

2021-03-08 Thread Thorsten Wagner (via logerrit)
 vcl/osx/salframe.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 19badc601594a19b56cff14076435f96e51ce845
Author: Thorsten Wagner 
AuthorDate: Sat Mar 6 23:35:11 2021 +0100
Commit: Adolfo Jayme Barrientos 
CommitDate: Tue Mar 9 08:04:06 2021 +0100

tdf#138314 Change selected tab text color on macOS Big Sur

Change text color of selected tabs starting with macOS 10.16 (not with
macOS 11.0) to ensure compatibilty with macOS SDKs prior to 11 used
within LibreOffice build process

Backport of d8fc89cdfd0043838c4bc2d3b5a50bf5abfc6738 to LibreOffice 7.1

Change-Id: Ib2b7042878596271c194331eaab1915d11124210
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112105
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/vcl/osx/salframe.cxx b/vcl/osx/salframe.cxx
index 9d4f68827a06..b0fbce1e8a81 100644
--- a/vcl/osx/salframe.cxx
+++ b/vcl/osx/salframe.cxx
@@ -1328,7 +1328,7 @@ SAL_WNODEPRECATED_DECLARATIONS_POP
 // used for selected tab text. As a workaround the current OS version has 
to be considered. This code has to be reviewed once
 // issue is covered by documentation.
 
-NSOperatingSystemVersion aOSVersion = { .majorVersion = 11, .minorVersion 
= 0, .patchVersion = 0 };
+NSOperatingSystemVersion aOSVersion = { .majorVersion = 10, .minorVersion 
= 16, .patchVersion = 0 };
 if ([NSProcessInfo.processInfo isOperatingSystemAtLeastVersion: 
aOSVersion])
 aStyleSettings.SetTabHighlightTextColor(aSelectedControlTextColor);
 else
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 140903] EDITING: Conditional formatting is lost after deleting rows referenced in a chart

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140903

--- Comment #2 from txcsharp...@gmail.com ---
Created attachment 170359
  --> https://bugs.documentfoundation.org/attachment.cgi?id=170359=edit
conditional formatting before/after (same rows/cols shown)

This illustrates how the conditional formatting on Columns L and M gets flipped
around after the bug occurs.

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


[Libreoffice-bugs] [Bug 102741] Vertical ruler disappears from page when scrolling without cursor movement

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102741

Dieter  changed:

   What|Removed |Added

 OS|Mac OS X (All)  |All
 CC||dgp-m...@gmx.de

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


[Libreoffice-bugs] [Bug 102741] Vertical ruler disappears from page when scrolling without cursor movement

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102741

Dieter  changed:

   What|Removed |Added

 CC||spokanemagn...@gmail.com

--- Comment #8 from Dieter  ---
*** Bug 140586 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 140586] Quirky Vertical Ruler Issue

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140586

Dieter  changed:

   What|Removed |Added

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

--- Comment #2 from Dieter  ---


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

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


[Libreoffice-bugs] [Bug 102741] Vertical ruler disappears from page when scrolling without cursor movement

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102741

--- Comment #7 from Dieter  ---
Still present in

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

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


[Libreoffice-bugs] [Bug 140903] EDITING: Conditional formatting is lost after deleting rows referenced in a chart

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140903

--- Comment #1 from txcsharp...@gmail.com ---
Created attachment 170358
  --> https://bugs.documentfoundation.org/attachment.cgi?id=170358=edit
screen shot #1 - before bug occurs

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


[Libreoffice-bugs] [Bug 140903] EDITING: Conditional formatting is lost after deleting rows referenced in a chart

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140903

txcsharp...@gmail.com changed:

   What|Removed |Added

Crash report or||crashreport.libreoffice.org
crash signature||/stats/crash_details/c0af81
   ||c4-fd17-4c41-9ec6-74ffd4f0e
   ||eda

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


[Libreoffice-bugs] [Bug 140903] New: EDITING: Conditional formatting is lost after deleting rows referenced in a chart

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140903

Bug ID: 140903
   Summary: EDITING: Conditional formatting is lost after deleting
rows referenced in a chart
   Product: LibreOffice
   Version: 6.4.6.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: txcsharp...@gmail.com

Created attachment 170357
  --> https://bugs.documentfoundation.org/attachment.cgi?id=170357=edit
sample file to reproduce the bug

When a row or group of rows is deleted, if an existing chart contains a
reference to any element in that row(s), Calc will lose the conditional
formatting under certain conditions. 
RELATED: 140901, https://bugs.documentfoundation.org/show_bug.cgi?id=140901
"EDITING Crash when deleting rows that are referenced by a chart"

Initially marking this as Major - seems like a serious glitch.
Has a couple of workarounds, both of which are clumsy and time-consuming:
Option 1. Remove the conditional formatting completely, then re-create it from
scratch.
Option 2. If the charts are first modified to exclude any references to any of
the rows about to be deleted, then the row deletion is successful and the bug
does not occur. This is the workaround I've been using, but I often forget to
do this until it crashes and I ask myself, "what was that strange thing I had
to do the last time it crashed". 

STEPS TO REPRODUCE:
---
[NOTE that steps 1-3 are identical to those in bug 140901. But this bug is
about the remaining steps which are different.]
1. Open the sample XLS file 'sample file to reproduce the bug'. (Please forgive
how odd it looks, I deleted a lot of text to anonymize the file.) If you look
at the chart data ranges (see 'Charts' tab), you'll notice the charts reference
data up through row 644 on the 'Sheet13' tab. This is also demonstrated in the
'screen shot #1' attachment.
2. Now go to the 'Sheet13' tab. Attempt to do any 'delete row(s)' operation for
one or more rows which are referenced by the charts on the 'Charts' tab. Calc
will quickly crash. In my testing, I deleted row 631.
3. That action corresponds to
crashreport.libreoffice.org/stats/crash_details/abfe5c0d-223c-4c80-ae76-6983ae8f6258
 and is already covered in bug 140901.
[THIS BUG BEGINS HERE:]
4. Allow the Recovery process to proceed, but do NOT select the option to enter
Safe Mode. Let it generate the crash report, and again in that dialog, do NOT
open in Safe Mode, just press the Close button. This opens LibreOffice 6.4
Document Recovery. Press Start to let it recover and reopen the file. When it
is recovered, press Finish, but DO NOT save the sample file - there are more
steps first.
5. When the file reopens, take a screen shot of each of the two tabs for
comparison after step 4. (As expected, the deleted row(s) are still there.) You
should see something similar to the first screen shot attachment.
6. Remember, DO NOT save the file, not yet. Now delete row 631 again, or any
other row (or group of rows) which are referenced by the charts. Calc will
again crash as it did in step 2, but again that's not what we're interested in
with this bug report. However, another bug has occurred that will show itself
momentarily.
7. For this step, I deleted row 631 again. That action corresponds to
crashreport.libreoffice.org/stats/crash_details/c0af81c4-fd17-4c41-9ec6-74ffd4f0eeda
 and is reproducible 100% of the time. THIS CRASH REPORT IS WHAT I THINK YOU'LL
WANT HERE. I only put the other one just in case it's related.
8. Proceed with Recovery as before, NO safe mode, DON'T save the file yet. 
9. When the file reopens, on Sheet13, the conditional formatting on Columns L
and M has been dropped or ignored - many of those cells have been "flipped"
from black text/gray background to red text/pink background or vice-versa.
Attempting to edit the conditional formatting does not correct the issue. It
must be removed and re-created from scratch.

Actual behavior: on Sheet13, the conditional formatting on Columns L and M has
been dropped or changed - the rules governing which cells appear as red
text/pink background vs. black text/gray background seem to be applied to
different data values than before. Some cells have kept their conditional
formatting while others have had it reversed.

Expected behavior: retain the conditional formatting on Columns L and M as it
was before.

DEV NOTES:
1. There are some related bugs which I am reporting separately. Those occur
under similar circumstances, but since they have additional unexpected results,
they are probably separate bugs.
2. This bug deals with deleting a row or group of rows which a chart holds a
reference to. (Not deleting the data within a row. This is when removing the
row from the spreadsheet.) For reproducing the bug, 

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

2021-03-08 Thread Heiko Tietze (via logerrit)
 setup_native/source/packinfo/osxdndinstall.png |binary
 1 file changed

New commits:
commit 4d3239061c71d43f3e8521160a318873001c3e6a
Author: Heiko Tietze 
AuthorDate: Mon Mar 8 09:17:02 2021 +0100
Commit: Adolfo Jayme Barrientos 
CommitDate: Tue Mar 9 07:39:39 2021 +0100

Resolves tdf#133373 - macOS installer image

Arrow moved a few pixels to the left

Change-Id: Id804ca75f88325a1457f5297994ac91c2cea94da
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112155
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/setup_native/source/packinfo/osxdndinstall.png 
b/setup_native/source/packinfo/osxdndinstall.png
index 79a92a525a3b..0c8a881a62b6 100644
Binary files a/setup_native/source/packinfo/osxdndinstall.png and 
b/setup_native/source/packinfo/osxdndinstall.png differ
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 140902] How To Get The Complete Data in a PDF File in no time.

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140902

sfwpexperts  changed:

   What|Removed |Added

URL||http://www.sfwpexperts.com/
   ||website-design-los-angeles-
   ||california/

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


[Libreoffice-bugs] [Bug 140902] New: How To Get The Complete Data in a PDF File in no time.

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140902

Bug ID: 140902
   Summary: How To Get The Complete Data in a PDF File in no time.
   Product: Impress Remote
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: General
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: markaade...@gmail.com

I have tried many times to do this but I can't. so I go through a website that
is https://sfwpexperts.com and I get the answers.

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


[Libreoffice-bugs] [Bug 140901] EDITING Crash when deleting rows that are referenced by a chart

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140901

txcsharp...@gmail.com changed:

   What|Removed |Added

Crash report or||crashreport.libreoffice.org
crash signature||/stats/crash_details/abfe5c
   ||0d-223c-4c80-ae76-6983ae8f6
   ||258

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


[Libreoffice-bugs] [Bug 140901] EDITING Crash when deleting rows that are referenced by a chart

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140901

--- Comment #1 from txcsharp...@gmail.com ---
Created attachment 170356
  --> https://bugs.documentfoundation.org/attachment.cgi?id=170356=edit
sample screen shot

Initial bug submission only allowed one attachment, so here is the screen shot
also.

-- 
You are receiving this mail because:
You 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: accessibility/inc basctl/inc basegfx/inc basic/inc bin/update_pch canvas/inc chart2/inc comphelper/inc configmgr/inc connectivity/inc cppcanvas/inc cppuhelper/inc cui/i

2021-03-08 Thread Mike Kaganski (via logerrit)
 accessibility/inc/pch/precompiled_acc.hxx |4 -
 basctl/inc/pch/precompiled_basctl.hxx |4 -
 basegfx/inc/pch/precompiled_basegfx.hxx   |4 -
 basic/inc/pch/precompiled_sb.hxx  |4 -
 bin/update_pch|4 +
 canvas/inc/pch/precompiled_cairocanvas.hxx|4 -
 canvas/inc/pch/precompiled_canvastools.hxx|4 -
 canvas/inc/pch/precompiled_oglcanvas.hxx  |4 -
 canvas/inc/pch/precompiled_vclcanvas.hxx  |4 -
 chart2/inc/pch/precompiled_chartcontroller.hxx|4 -
 chart2/inc/pch/precompiled_chartcore.hxx  |6 -
 comphelper/inc/pch/precompiled_comphelper.hxx |4 -
 configmgr/inc/pch/precompiled_configmgr.hxx   |4 -
 connectivity/inc/pch/precompiled_ado.hxx  |4 -
 connectivity/inc/pch/precompiled_calc.hxx |4 -
 connectivity/inc/pch/precompiled_dbase.hxx|4 -
 connectivity/inc/pch/precompiled_dbpool2.hxx  |4 -
 connectivity/inc/pch/precompiled_dbtools.hxx  |5 -
 connectivity/inc/pch/precompiled_file.hxx |4 -
 connectivity/inc/pch/precompiled_firebird_sdbc.hxx|4 -
 connectivity/inc/pch/precompiled_flat.hxx |4 -
 connectivity/inc/pch/precompiled_mysql_jdbc.hxx   |3 
 connectivity/inc/pch/precompiled_odbc.hxx |4 -
 connectivity/inc/pch/precompiled_postgresql-sdbc-impl.hxx |4 -
 cppcanvas/inc/pch/precompiled_cppcanvas.hxx   |4 -
 cppuhelper/inc/pch/precompiled_cppuhelper.hxx |4 -
 cui/inc/pch/precompiled_cui.hxx   |4 -
 dbaccess/inc/pch/precompiled_dba.hxx  |   44 +-
 dbaccess/inc/pch/precompiled_dbahsql.hxx  |4 -
 dbaccess/inc/pch/precompiled_dbaxml.hxx   |4 -
 dbaccess/inc/pch/precompiled_dbu.hxx  |4 -
 dbaccess/inc/pch/precompiled_sdbt.hxx |3 
 desktop/inc/pch/precompiled_deployment.hxx|4 -
 desktop/inc/pch/precompiled_deploymentgui.hxx |4 -
 desktop/inc/pch/precompiled_deploymentmisc.hxx|5 -
 desktop/inc/pch/precompiled_sofficeapp.hxx|6 +
 drawinglayer/inc/pch/precompiled_drawinglayer.hxx |4 -
 editeng/inc/pch/precompiled_editeng.hxx   |4 -
 emfio/inc/pch/precompiled_emfio.hxx   |4 -
 forms/inc/pch/precompiled_frm.hxx |4 -
 framework/inc/pch/precompiled_fwk.hxx |4 -
 hwpfilter/inc/pch/precompiled_hwp.hxx |4 -
 lotuswordpro/inc/pch/precompiled_lwpft.hxx|4 -
 oox/inc/pch/precompiled_oox.hxx   |4 -
 package/inc/pch/precompiled_package2.hxx  |4 -
 package/inc/pch/precompiled_xstor.hxx |4 -
 reportdesign/inc/pch/precompiled_rpt.hxx  |   11 ++-
 reportdesign/inc/pch/precompiled_rptui.hxx|4 -
 reportdesign/inc/pch/precompiled_rptxml.hxx   |4 -
 sal/inc/pch/precompiled_sal.hxx   |4 -
 sc/inc/pch/precompiled_sc.hxx |   26 +++-
 sc/inc/pch/precompiled_scfilt.hxx |4 -
 sc/inc/pch/precompiled_scui.hxx   |4 -
 sc/inc/pch/precompiled_vbaobj.hxx |4 -
 sd/inc/pch/precompiled_sd.hxx |4 -
 sd/inc/pch/precompiled_sdui.hxx   |4 -
 sdext/inc/pch/precompiled_PresentationMinimizer.hxx   |4 -
 sdext/inc/pch/precompiled_PresenterScreen.hxx |4 -
 sfx2/inc/pch/precompiled_sfx.hxx  |4 -
 slideshow/inc/pch/precompiled_slideshow.hxx   |8 --
 sot/inc/pch/precompiled_sot.hxx   |5 -
 starmath/inc/pch/precompiled_sm.hxx   |4 -
 svgio/inc/pch/precompiled_svgio.hxx   |4 -
 svl/inc/pch/precompiled_svl.hxx   |6 -
 svtools/inc/pch/precompiled_svt.hxx   |4 -
 svx/inc/pch/precompiled_svx.hxx   |4 -
 svx/inc/pch/precompiled_svxcore.hxx   |4 -
 sw/inc/pch/precompiled_msword.hxx |   17 +
 sw/inc/pch/precompiled_sw.hxx |4 -
 sw/inc/pch/precompiled_swui.hxx   |   31 +++--
 sw/inc/pch/precompiled_vbaswobj.hxx   |   15 ++--
 unotools/inc/pch/precompiled_utl.hxx  |4 -
 unoxml/inc/pch/precompiled_unoxml.hxx |3 

[Libreoffice-bugs] [Bug 139772] FILEOPEN PDF: Importing results in poor import quality on some pdf files (testfile included)

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139772

Timur  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 140901] New: EDITING Crash when deleting rows that are referenced by a chart

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140901

Bug ID: 140901
   Summary: EDITING Crash when deleting rows that are referenced
by a chart
   Product: LibreOffice
   Version: 6.4.6.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: txcsharp...@gmail.com

Created attachment 170355
  --> https://bugs.documentfoundation.org/attachment.cgi?id=170355=edit
sample XLS file created in a prior version of LO

When a row or group of rows is deleted, if an existing chart contains a
reference to any element in that row(s), Calc will quickly crash when
attempting to delete the row(s). Bug occurs in LO 6.4.6.2 but likely exists in
other versions, this issue has been around for years and I only just now spent
enough time with it to narrow down the problem and write a defect for it.

Has a workaround, but it is clumsy and time-consuming. If the charts are first
modified to exclude any references to any of the rows about to be deleted, then
the row deletion is successful and the bug does not occur. This is the
workaround I've been using, but I often forget to do this until it crashes and
I ask myself, "what was that strange thing I had to do the last time it
crashed".

STEPS TO REPRODUCE:
1. Open the sample file 'sample-file-for-bug-report - pristine.xls'. (Please
forgive how odd it looks, I deleted a lot of text to anonymize the file.) If
you look at the chart data ranges (see 'Charts' tab), you'll notice the charts
reference data up through row 644 on the 'Sheet13' tab. This is also
demonstrated in the screen shot 'Libre-Calc-bug-screen-1.jpg'.
2. Now go to the 'Sheet13' tab. Attempt to do any 'delete row(s)' operation for
one or more rows which are referenced by the charts on the 'Charts' tab. Calc
will quickly crash. In my testing, I deleted row 631.
3. That action corresponds to
crashreport.libreoffice.org/stats/crash_details/abfe5c0d-223c-4c80-ae76-6983ae8f6258
 and is reproducible 100% of the time.
4. If you allow the Recovery process to proceed, the file is recovered, and the
user has the opportunity to try again with the same row deletion. (The row is
still there, as would be expected.) This cycle of crash/recovery can be
repeated infinitely.

DEV NOTES:
1. There are some related bugs which I am reporting separately. Those occur
when continuing to retry the same row deletion, but since they have additional
unexpected results, they are probably separate bugs.
2. This bug deals with deleting a row or group of rows which a chart holds a
reference to. (Not deleting the data within a row. This is when removing the
row from the spreadsheet.) For reproducing the bug, any kind of row deletion
will do. You could delete a single row, delete a group of rows, or do an insert
& undo that insert. As long as the row deletion is from inside a range that a
chart is referencing, the bug will occur.
3. This might possibly be due to a broken reference error similar to what makes
#REF! be displayed in a cell? Makes me wonder if some of the code for that
exception handler for cells could be used for chart objects also. Just an idea.
4. Bug occurs whether using top menu, context menu, or keyboard shortcut, and
is reproducible 100% of the time.
5. Notably, rows 645-651 are not referenced in the charts, so you can try
deleting from among those rows and the bug does not occur. It only occurs when
the deleted row(s) are referenced in a chart somewhere.
6. Bug is also reproducible by inserting a row (for example) between rows 630
and 631, then typing Ctrl-Z to undo the insert, then Calc will crash on the
Undo operation.
7. It would be interesting to know whether deleting a row which references pure
data elsewhere (such as on another tab) would cause a crash when there are NO
charts involved. I did not test that scenario.

Additional notes which might be relevant:
(1) The attached sample spreadsheet is a spreadsheet which I created about 5
years ago in a previous version of LO. I've migrated it up from previous
versions, but from its creation I've only ever saved it in XLS format (never in
ODF). I do this so I can view it in MS-Office, but I have never edited this
document in MS-Office. I'm not sure whether this file having been created on an
older version of LO makes any difference, versus creating a new file with a
chart, because I did not test that scenario.
(2) The type of chart doesn't seem to be related. This happens on simple charts
as well as more complex ones having line + bubble + 8 different data types
being tracked - you can repro the defect with any one of the charts in my
sample file and deleting the others, and the bug can still be reproduced.

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

[Libreoffice-bugs] [Bug 140470] Image placed above text (instead of below)

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140470

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 140301] VIEWING: does not properly manage more than 5125 images

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140301

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 140256] Cannot use mouse scroll button on selection buttons

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140256

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 140610] LibreOffice's text file (odt) editor has a bug in its graphics, creating garbage as cursor is moved.

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140610

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 140609] Libre Office Writer Recover Message

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140609

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 140608] cannot reset character colour with ^m

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140608

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 140607] LibreOffice with enabled Jumbo table feature crashes when I try open XLS file from bug 122092

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140607

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 140604] Some DDE Fields won't load - Multiple empty fields on large/frequently updated dde links.

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140604

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 140603] FILESAVE: Docx embedded in ods is lost when saving the spreadsheet in xlsx format

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140603

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 140586] Quirky Vertical Ruler Issue

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140586

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 140566] Bug in Impress on Plasma Deskop with 2 monitors

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140566

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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


[Libreoffice-bugs] [Bug 140566] Bug in Impress on Plasma Deskop with 2 monitors

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140566

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

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


[Libreoffice-bugs] [Bug 140560] Application crash after selecting Option "Online Update" while computer was offline

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140560

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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


[Libreoffice-bugs] [Bug 140560] Application crash after selecting Option "Online Update" while computer was offline

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140560

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

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


[Libreoffice-bugs] [Bug 139520] LO base (HSQLDB & FIREBIRD): crashes frequently during creation and editing a report design

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139520

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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


[Libreoffice-bugs] [Bug 139520] LO base (HSQLDB & FIREBIRD): crashes frequently during creation and editing a report design

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139520

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

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


[Libreoffice-bugs] [Bug 134484] errors in printing documents

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134484

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

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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


[Libreoffice-bugs] [Bug 134484] errors in printing documents

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134484

QA Administrators  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 136591] Icon and dropdown menu glitch

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=136591

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

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 113697] UI: Image: Show image type somewhere

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113697

--- Comment #5 from QA Administrators  ---
Dear Samuel Mehrbrodt (CIB),

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-ux-advise] [Bug 113697] UI: Image: Show image type somewhere

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113697

--- Comment #5 from QA Administrators  ---
Dear Samuel Mehrbrodt (CIB),

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 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 87778] Locale not respected in Online Update Options dialog

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87778

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

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 87483] weird list behavior

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87483

--- Comment #9 from QA Administrators  ---
Dear Juang Dse,

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 81467] No warning when deleting custom styles used only in conditional formatting

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81467

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

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 114314] Draw filter export of specific ODG to PDF/A-1a format crashes LO and system

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114314

--- Comment #18 from QA Administrators  ---
Dear Chris Piker,

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 114041] There is some lag around images when reducing a selection by scrolling upwards

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114041

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 112276] EDITING: Right-clicking on a sheet tab gives options for Copy/Paste/Cut which works at cell level

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112276

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 106009] EDITING: A table cell selection will be the final result when crossing the cell border while (trying to) select a single line of text (using the mouse)

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106009

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-commits] core.git: Branch 'libreoffice-7-0' - sc/source

2021-03-08 Thread Caolán McNamara (via logerrit)
 sc/source/ui/inc/hdrcont.hxx  |6 +
 sc/source/ui/view/hdrcont.cxx |   44 +++---
 2 files changed, 39 insertions(+), 11 deletions(-)

New commits:
commit 496c1cda4d52b3e37bfc0d5bb162a9fee00794b3
Author: Caolán McNamara 
AuthorDate: Sat Mar 6 21:34:22 2021 +
Commit: Adolfo Jayme Barrientos 
CommitDate: Tue Mar 9 04:02:10 2021 +0100

tdf#140833 show ScHeaderControl help tip after double click time has expired

so under gtk the popover isn't active when the double click is processed
by gtk because under load on wayland the double click is getting handled
by something else and getting sent to the the window underneath our
window

Change-Id: Ie3afcf45c69b7b947b1aeb787478f947deca9307
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112136
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/sc/source/ui/inc/hdrcont.hxx b/sc/source/ui/inc/hdrcont.hxx
index 08be7eba5010..d3210062d43f 100644
--- a/sc/source/ui/inc/hdrcont.hxx
+++ b/sc/source/ui/inc/hdrcont.hxx
@@ -21,6 +21,7 @@
 #define INCLUDED_SC_SOURCE_UI_INC_HDRCONT_HXX
 
 #include 
+#include 
 #include 
 #include 
 
@@ -36,6 +37,7 @@ class ScHeaderControl : public vcl::Window
 {
 private:
 SelectionEngine*pSelEngine;
+Timer   aShowHelpTimer;
 vcl::Font   aNormFont;
 vcl::Font   aBoldFont;
 boolbBoldSet;
@@ -67,9 +69,12 @@ private:
 SCCOLROWGetMousePos( const MouseEvent& rMEvt, bool& rBorder ) 
const;
 boolIsSelectionAllowed(SCCOLROW nPos) const;
 voidShowDragHelp();
+voidHideDragHelp();
 
 voidDoPaint( SCCOLROW nStart, SCCOLROW nEnd );
 
+DECL_LINK(ShowDragHelpHdl, Timer*, void);
+
 protected:
 ScTabView*  pTabView;
 
@@ -105,6 +110,7 @@ protected:
 
 virtual voidDrawInvert( long nDragPos );
 virtual voidCommand( const CommandEvent& rCEvt ) override;
+virtual voiddispose() override;
 
 public:
 ScHeaderControl( vcl::Window* pParent, SelectionEngine* 
pSelectionEngine,
diff --git a/sc/source/ui/view/hdrcont.cxx b/sc/source/ui/view/hdrcont.cxx
index a8aeb47f9f88..0f74b3c0cdb2 100644
--- a/sc/source/ui/view/hdrcont.cxx
+++ b/sc/source/ui/view/hdrcont.cxx
@@ -48,6 +48,7 @@ ScHeaderControl::ScHeaderControl( vcl::Window* pParent, 
SelectionEngine* pSelect
   SCCOLROW nNewSize, bool bNewVertical, 
ScTabView* pTab ) :
 Window  ( pParent ),
 pSelEngine  ( pSelectionEngine ),
+aShowHelpTimer("sc HeaderControl Popover Timer"),
 bVertical   ( bNewVertical ),
 nSize   ( nNewSize ),
 nMarkStart  ( 0 ),
@@ -88,9 +89,18 @@ ScHeaderControl::ScHeaderControl( vcl::Window* pParent, 
SelectionEngine* pSelect
 nWidth = nSmallWidth = aSize.Width();
 nBigWidth = LogicToPixel( Size( GetTextWidth("888"), 0 ) ).Width() + 5;
 
+aShowHelpTimer.SetInvokeHandler(LINK(this, ScHeaderControl, 
ShowDragHelpHdl));
+
aShowHelpTimer.SetTimeout(GetSettings().GetMouseSettings().GetDoubleClickTime());
+
 SetBackground();
 }
 
+void ScHeaderControl::dispose()
+{
+aShowHelpTimer.Stop();
+vcl::Window::dispose();
+}
+
 void ScHeaderControl::SetWidth( long nNew )
 {
 OSL_ENSURE( bVertical, "SetWidth works only on row headers" );
@@ -652,7 +662,11 @@ void ScHeaderControl::MouseButtonDown( const MouseEvent& 
rMEvt )
 else
 nDragStart = rMEvt.GetPosPixel().X();
 nDragPos = nDragStart;
-ShowDragHelp();
+// tdf#140833 launch help tip to show after the double click time 
has expired
+// so under gtk the popover isn't active when the double click is 
processed
+// by gtk because under load on wayland the double click is 
getting handled
+// by something else and getting sent to the the window underneath 
our window
+aShowHelpTimer.Start();
 DrawInvert( nDragPos );
 
 StartTracking();
@@ -713,11 +727,7 @@ void ScHeaderControl::MouseButtonUp( const MouseEvent& 
rMEvt )
 {
 DrawInvert( nDragPos );
 ReleaseMouse();
-if (nTipVisible)
-{
-Help::HidePopover(this, nTipVisible);
-nTipVisible = nullptr;
-}
+HideDragHelp();
 bDragging = false;
 
 long nScrPos= GetScrPos( nDragNo );
@@ -885,11 +895,7 @@ void ScHeaderControl::StopMarking()
 if ( bDragging )
 {
 DrawInvert( nDragPos );
-if (nTipVisible)
-{
-Help::HidePopover(this, nTipVisible);
-nTipVisible = nullptr;
-}
+HideDragHelp();
 bDragging = false;
 }
 
@@ -902,8 +908,14 @@ void ScHeaderControl::StopMarking()
 ReleaseMouse();
 }
 
+IMPL_LINK_NOARG(ScHeaderControl, ShowDragHelpHdl, Timer*, void)

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

2021-03-08 Thread Jim Raykowski (via logerrit)
 sw/source/core/doc/docdraw.cxx |2 ++
 sw/source/uibase/utlui/content.cxx |   17 +++--
 2 files changed, 17 insertions(+), 2 deletions(-)

New commits:
commit 1c3e170d56d3cad1e7729f839fa63f607b62e4e3
Author: Jim Raykowski 
AuthorDate: Sun Feb 28 17:10:12 2021 -0900
Commit: Jim Raykowski 
CommitDate: Tue Mar 9 02:27:49 2021 +0100

tdf#140661 Give shapes names when ungrouping if they don't already have

Change-Id: I8242a697980e4f661a914998792ae9efdb090915
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111725
Tested-by: Jenkins
Reviewed-by: Jim Raykowski 

diff --git a/sw/source/core/doc/docdraw.cxx b/sw/source/core/doc/docdraw.cxx
index c070519cfbf9..4468e648a8a2 100644
--- a/sw/source/core/doc/docdraw.cxx
+++ b/sw/source/core/doc/docdraw.cxx
@@ -329,6 +329,8 @@ void SwDoc::UnGroupSelection( SdrView& rDrawView )
 // #i36010# - set layout direction of the position
 pFormat->SetPositionLayoutDir(
 
text::PositionLayoutDir::PositionInLayoutDirOfAnchor );
+if (pSubObj->GetName().isEmpty())
+pSubObj->SetName(pFormat->GetName());
 pFormatsAndObjs[i].emplace_back( pFormat, pSubObj );
 
 if( bUndo )
diff --git a/sw/source/uibase/utlui/content.cxx 
b/sw/source/uibase/utlui/content.cxx
index ea338a0a00e8..8371dd31c385 100644
--- a/sw/source/uibase/utlui/content.cxx
+++ b/sw/source/uibase/utlui/content.cxx
@@ -3243,8 +3243,21 @@ void SwContentTree::UpdateTracking()
 {
 SdrObject* pSelected = pSdrView->GetMarkedObjectByIndex(0);
 OUString aName(pSelected->GetName());
-lcl_SelectByContentTypeAndName(this, *m_xTreeView,
-   
SwResId(STR_CONTENT_TYPE_DRAWOBJECT), aName);
+if (!aName.isEmpty())
+lcl_SelectByContentTypeAndName(this, *m_xTreeView,
+   
SwResId(STR_CONTENT_TYPE_DRAWOBJECT), aName);
+else
+{
+// clear treeview selections
+m_xTreeView->unselect_all();
+Select();
+}
+}
+else
+{
+// clear treeview selections
+m_xTreeView->unselect_all();
+Select();
 }
 return;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 140661] Objects not visible in navigator after ungrouping in DOCX

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140661

--- Comment #9 from Commit Notification 
 ---
Jim Raykowski committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/1c3e170d56d3cad1e7729f839fa63f607b62e4e3

tdf#140661 Give shapes names when ungrouping if they don't already have

It will be available in 7.2.0.

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

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

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


[Libreoffice-bugs] [Bug 140661] Objects not visible in navigator after ungrouping in DOCX

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140661

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.2.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 88064] Mode "Adds selection" in statusbar Writer does not work properly

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88064

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.2.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 88064] Mode "Adds selection" in statusbar Writer does not work properly

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=88064

--- Comment #10 from Commit Notification 
 ---
Jim Raykowski committed a patch related to this issue.
It has been pushed to "master":

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

tdf#88064 In add mode don't change SetCursor and KillSel functions

It will be available in 7.2.0.

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

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

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


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

2021-03-08 Thread Jim Raykowski (via logerrit)
 sw/source/uibase/wrtsh/wrtsh1.cxx |7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

New commits:
commit a2f6b4e8995c149620db4fcfe7e355af4fbc869e
Author: Jim Raykowski 
AuthorDate: Wed Mar 3 14:37:36 2021 -0900
Commit: Jim Raykowski 
CommitDate: Tue Mar 9 02:26:15 2021 +0100

tdf#88064 In add mode don't change SetCursor and KillSel functions

when shell is popped

Change-Id: Ic7b38563c4f05d4a1ccf792f21db42076a39947f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111943
Tested-by: Jenkins
Reviewed-by: Jim Raykowski 

diff --git a/sw/source/uibase/wrtsh/wrtsh1.cxx 
b/sw/source/uibase/wrtsh/wrtsh1.cxx
index 32b91a1ff2fd..be70c7b66014 100644
--- a/sw/source/uibase/wrtsh/wrtsh1.cxx
+++ b/sw/source/uibase/wrtsh/wrtsh1.cxx
@@ -1716,8 +1716,11 @@ bool SwWrtShell::Pop(SwCursorShell::PopMode const 
eDelete)
 bool bRet = SwCursorShell::Pop(eDelete);
 if( bRet && IsSelection() )
 {
-m_fnSetCursor = ::SetCursorKillSel;
-m_fnKillSel = ::ResetSelect;
+if (!IsAddMode())
+{
+m_fnSetCursor = ::SetCursorKillSel;
+m_fnKillSel = ::ResetSelect;
+}
 }
 return bRet;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2021-03-08 Thread Jim Raykowski (via logerrit)
 sd/source/ui/dlg/navigatr.cxx |   18 +++---
 sd/source/ui/inc/navigatr.hxx |2 ++
 sd/source/ui/inc/sdtreelb.hxx |5 +
 3 files changed, 22 insertions(+), 3 deletions(-)

New commits:
commit 740fca22fc92065436dee9beae89852fc388db54
Author: Jim Raykowski 
AuthorDate: Thu Mar 4 22:54:28 2021 -0900
Commit: Jim Raykowski 
CommitDate: Tue Mar 9 02:24:51 2021 +0100

tdf#139944 Disable navigator in impress and draw master mode

Change-Id: I48ed310f7903502085da2469f546d371960935f2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111986
Tested-by: Jenkins
Reviewed-by: Jim Raykowski 

diff --git a/sd/source/ui/dlg/navigatr.cxx b/sd/source/ui/dlg/navigatr.cxx
index 6c478bad5741..569ff6a615a2 100644
--- a/sd/source/ui/dlg/navigatr.cxx
+++ b/sd/source/ui/dlg/navigatr.cxx
@@ -44,6 +44,8 @@
 #include 
 #include 
 
+#include 
+
 /**
  * SdNavigatorWin - FloatingWindow
  */
@@ -628,14 +630,24 @@ void SdNavigatorControllerItem::StateChanged( sal_uInt16 
nSId,
 if( eState < SfxItemState::DEFAULT || nSId != SID_NAVIGATOR_STATE )
 return;
 
-const SfxUInt32Item& rStateItem = dynamic_cast(*pItem);
-NavState nState = static_cast(rStateItem.GetValue());
-
 // only if doc in LB is the active
 NavDocInfo* pInfo = pNavigatorWin->GetDocInfo();
 if( !(pInfo && pInfo->IsActive()) )
 return;
 
+if (::sd::DrawDocShell* pDrawDocShell = pInfo->GetDrawDocShell())
+{
+const auto pDrawViewShell =
+static_cast<::sd::DrawViewShell 
*>(pDrawDocShell->GetViewShell());
+bool bEditModePage(pDrawViewShell->GetEditMode() == EditMode::Page);
+pNavigatorWin->mxToolbox->set_sensitive(bEditModePage);
+pNavigatorWin->mxLbDocs->set_sensitive(bEditModePage);
+pNavigatorWin->mxTlbObjects->set_sensitive(bEditModePage);
+}
+
+const SfxUInt32Item& rStateItem = dynamic_cast(*pItem);
+NavState nState = static_cast(rStateItem.GetValue());
+
 // First
 if (nState & NavState::BtnFirstEnabled &&
 !pNavigatorWin->mxToolbox->get_item_sensitive("first"))
diff --git a/sd/source/ui/inc/navigatr.hxx b/sd/source/ui/inc/navigatr.hxx
index 01f8b43d20da..e43175600d24 100644
--- a/sd/source/ui/inc/navigatr.hxx
+++ b/sd/source/ui/inc/navigatr.hxx
@@ -68,6 +68,8 @@ public:
 voidSetName( bool bOn ) { bName = bOn; }
 voidSetActive( bool bOn ) { bActive = bOn; }
 
+::sd::DrawDocShell* GetDrawDocShell() {return mpDocShell;}
+
 private:
 friend class SdNavigatorWin;
 boolbName   : 1;
diff --git a/sd/source/ui/inc/sdtreelb.hxx b/sd/source/ui/inc/sdtreelb.hxx
index 20df211605b7..ecd98842a1c7 100644
--- a/sd/source/ui/inc/sdtreelb.hxx
+++ b/sd/source/ui/inc/sdtreelb.hxx
@@ -156,6 +156,11 @@ public:
 SdPageObjsTLV(std::unique_ptr xTreeview);
 ~SdPageObjsTLV();
 
+void set_sensitive(bool bSensitive)
+{
+m_xTreeView->set_sensitive(bSensitive);
+}
+
 void hide()
 {
 m_xTreeView->hide();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 135048] Notebookbar Extension support with label

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135048

--- Comment #6 from Rafael Lima  ---
Hi! I am having the same problem here.

I am developing an extension and I'd like to have it shown in the Extension Tab
as a large icon with text beneath it.

With the instructions shown in the link below, I could only add a small icon
without any labels.

https://wiki.documentfoundation.org/Development/NotebookBar/Extensions

I also tried using the "MergeNotebookBarInstruction" to try to add an icon to
some other existing tab, but could not get it to work.

I have been messing with this for few days now and tried everything I could
come up with, but no success. I believe the "MergeNotebookBarInstruction" is
simply not working.

Implementing NotebookBar extensions support is getting more and more important,
since many people are moving to the Tabbed interface. And this becomes a
problem for extension developers, since users have to stick with the Standard
Toolbar just to use their extensions.

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


[Libreoffice-bugs] [Bug 140852] FILEOPEN PPTX: text box shows as half the width (and with an extra bullet)

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140852

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu
 Attachment #170291|application/vnd.ms-powerpoi |application/vnd.openxmlform
  mime type|nt  |ats-officedocument.presenta
   ||tionml.presentation

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


[Libreoffice-bugs] [Bug 120943] Unable edit 3D images by rotating 360 degrees in LibreOffice

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120943

Aron Budea  changed:

   What|Removed |Added

 Attachment #146043|application/zip |application/vnd.openxmlform
  mime type||ats-officedocument.presenta
   ||tionml.template

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


[Libreoffice-bugs] [Bug 120943] Unable edit 3D images by rotating 360 degrees in LibreOffice

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120943

Aron Budea  changed:

   What|Removed |Added

 Attachment #146042|application/zip |application/vnd.openxmlform
  mime type||ats-officedocument.spreadsh
   ||eetml.template

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


[Libreoffice-bugs] [Bug 120943] Unable edit 3D images by rotating 360 degrees in LibreOffice

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120943

Aron Budea  changed:

   What|Removed |Added

 CC||ba...@caesar.elte.hu
 Attachment #146041|application/zip |application/vnd.openxmlform
  mime type||ats-officedocument.wordproc
   ||essingml.template

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


[Libreoffice-bugs] [Bug 140900] New: [Feature Request] A setting to change the size of the font previews dropdown

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140900

Bug ID: 140900
   Summary: [Feature Request] A setting to change the size of the
font previews dropdown
   Product: LibreOffice
   Version: 7.1.1.2 release
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: chameleonsca...@protonmail.com

Description:
To me the font selection dropdown menu is the fastest way to chose the right
font from within LibreOffice because it shows all the previews in a list,
letting me quickly glance at them. But...

Steps to Reproduce:
1. in any LibreOffice app, open the Font dropdown menu in the toolbar

Actual Results:
Font previews have a fixed size determined by the operating system's default
text size.

Expected Results:
I would suggest providing a Preview size parameter in Tools > Options >
LibreOffice > View > Font Lists, right under Show preview of fonts.


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
Having to change my entire OS's text size just for that reason is unpractical,
as it can  mess with a whole bunch of other programs, not to mention that
chosing the right font requires to see it in more detail than just reading your
applications buttons and menus.

While this default may have been the right size when monitors had lower
resolutions, with today's hi-res 4K screens and the increased diversity and
level of detail of fonts, it's becoming hard if not unpractical to find the
right font from this dropdown.

At the moment I personally use other font viewing software that provides larger
preview lists, which I feel an office suite should provide natively.

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


[Libreoffice-bugs] [Bug 139606] On Writer's standard TB and Insert menu: replace current "Text Box" a draw shape (.uno:DrawText) with the interactive frame with column (.uno:InsertFrameInteract) contr

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139606

--- Comment #11 from sdc.bla...@youmail.dk ---
Are the points in comment 4 considered part of this ticket?  Or should new bug
reports be made for them?

(In reply to Heiko Tietze from comment #7)
> We have a hidden vertical text box in the toolbar that needs to be removed
> as well. But it isn't working anyway, clicking the show checkbox never
> checks it.
Confirm for: Version: 7.1.0.3 (x64) / LibreOffice Community

Cannot reproduce with:
Version: 7.2.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 72841008bf422dfd8553240b3a78f0474d03523c
(i.e., no problem to put this .uno on the toolbar, and it works as promised,
displaying text vertically).

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


[Libreoffice-bugs] [Bug 126356] Tiny visual artifact when opening autofilter menu

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126356

Aron Budea  changed:

   What|Removed |Added

 Attachment #170353|Zoomed screenshot   |Zoomed screenshot (5.0.0.5)
description||

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


[Libreoffice-bugs] [Bug 140899] Rendering/Draw Issue When Moving Cursor

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140899

hftobea...@pandaemonium.com changed:

   What|Removed |Added

 CC||hftobea...@pandaemonium.com

--- Comment #1 from hftobea...@pandaemonium.com ---
Created attachment 170354
  --> https://bugs.documentfoundation.org/attachment.cgi?id=170354=edit
Screen movie

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


[Libreoffice-bugs] [Bug 126356] Tiny visual artifact when opening autofilter menu

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126356

--- Comment #5 from Aron Budea  ---
The size change noticed by Roman in bug 140898 came with the following commit:

https://cgit.freedesktop.org/libreoffice/core/commit/?id=008c2354075e1b5b63000f6a2da802971a2902e6
author  Szymon Kłos  2021-02-01 16:48:28
+0100
committer   Szymon Kłos  2021-03-04 15:42:21
+0100

autofilter: scale dropdown button according to zoom level

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


[Libreoffice-bugs] [Bug 140899] New: Rendering/Draw Issue When Moving Cursor

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140899

Bug ID: 140899
   Summary: Rendering/Draw Issue When Moving Cursor
   Product: LibreOffice
   Version: 7.1.1.2 release
  Hardware: Other
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: hftobea...@pandaemonium.com

Description:
The rendered page vanishes when moving the cursor across the page.

See attached screen recording.

Steps to Reproduce:
1. Open document.
2. Move cursor across page.
3. Page vanishes.

Actual Results:
Page vanishes.

Expected Results:
Page should not vanish.


Reproducible: Always


User Profile Reset: No


OpenGL enabled: Yes

Additional Info:
[Information automatically included from LibreOffice]
Locale: en-US
Module: TextDocument
[Information guessed from browser]
OS: Mac OS X (All)
OS is 64bit: no

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


Re: Integer overflow in Calc lcl_getSingleCellAddressFromXMLString nColumn computation

2021-03-08 Thread Kohei Yoshida

On 08.03.2021 18:00, Kohei Yoshida wrote:

On 08.03.2021 11:09, Stephan Bergmann wrote:


On recent master, if I create a bare-bones pivot.ods containing a
pivot chart (in a fresh Calc document, type "A" into A1 and "2" into
A2, click into A1, then "Insert - Pivot Table... - OK" and drag "A"
from "Available Fields" to "Column Fields" and "OK", then "Insert -
Chart... - Finish", then save):  The resulting pivot.ods "Object
1/content.xml" sub-file contains a chart:plot-area XML element with a
table:cell-range-address="PivotChart" attribute as above, but which
appears to be nonsense according to the ODF standard as quoted below.

Maybe some Calc expert can shed some light on what is going on here, 
and if that


  

is legitimate, and should legitimately be processed with
lcl_getSingleCellAddressFromXMLString as is done here.


Added Tomaz to the CC list since (I believe) he has worked on pivot
chart and may have a fresher memory on this topic.


Also, since ODF v1.2 was approved in 2011, and the pivot chart feature 
was added sometime around 2017, it's possible that we are doing 
something "ahead" of the latest standard.


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


[Libreoffice-bugs] [Bug 126356] Tiny visual artifact when opening autofilter menu

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126356

--- Comment #4 from Aron Budea  ---
Created attachment 170353
  --> https://bugs.documentfoundation.org/attachment.cgi?id=170353=edit
Zoomed screenshot

Comparing a screenshot from 5.0.0.5 to Roman's screenshot, attachment 170351
from bug 140898, perhaps the dot got larger recently.

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


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

2021-03-08 Thread Seth Chaiklin (via logerrit)
 sw/inc/strings.hrc |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit dc3b64dcbfb0a49c0be65bd8d73ed4e6d3828a21
Author: Seth Chaiklin 
AuthorDate: Mon Mar 8 12:56:27 2021 +0100
Commit: Seth Chaiklin 
CommitDate: Tue Mar 9 00:14:27 2021 +0100

tdf#128469 add extended tooltip for "Reset" to style dialogs

Change-Id: I6dbb37b9b5ed77cbc918a9158c1be90bf4127b4e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112086
Tested-by: Jenkins
Reviewed-by: Seth Chaiklin 

diff --git a/sw/inc/strings.hrc b/sw/inc/strings.hrc
index 4cb3c7e07c76..ac4fc7b82621 100644
--- a/sw/inc/strings.hrc
+++ b/sw/inc/strings.hrc
@@ -29,7 +29,7 @@
 #define STR_STANDARD_EXTENDEDTIP
NC_("STR_STANDARD_EXTENDEDTIP", "")
 #define STR_RESET_LABEL NC_("STR_RESET_LABEL", "Reset")
 #define STR_RESET_TOOLTIP   NC_("STR_RESET_TOOLTIP", 
"Unsaved modifications to this tab are reverted.")
-#define STR_RESET_EXTENDEDTIP   NC_("STR_RESET_EXTENDEDTIP", 
"")
+#define STR_RESET_EXTENDEDTIP   NC_("STR_RESET_EXTENDEDTIP", 
"Revert any changes made on the current tab to the settings that were present 
when this dialog was opened, or after the last use of “Apply”.")
 #define STR_APPLY_LABEL NC_("STR_APPLY_LABEL", "Apply")
 #define STR_APPLY_TOOLTIP   NC_("STR_APPLY_TOOLTIP", "")
 #define STR_APPLY_EXTENDEDTIP   NC_("STR_APPLY_EXTENDEDTIP", 
"")
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 140895] Cursor and Scrolling, and typing very slow in Writer v7.xx

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140895

--- Comment #2 from Macktek  ---
Reviewing the suggestion to open safe mode, I first uninstalled 6.x and
reinstalled 7.1.1.2

Unfortunately, the act of re-installing seemed to fix the problem.
Since I have had the problem for multiple different installs, and uninstalls, I
am at a loss to explain why this last uninstall and reinstall removed the
problem.

So, I can't test to see if the safe mode method works or not.
Clearly there is something causing the issue.

But, I am happy that I did not have to erase my user profile.

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


Re: Integer overflow in Calc lcl_getSingleCellAddressFromXMLString nColumn computation

2021-03-08 Thread Kohei Yoshida

On 08.03.2021 11:09, Stephan Bergmann wrote:


On recent master, if I create a bare-bones pivot.ods containing a
pivot chart (in a fresh Calc document, type "A" into A1 and "2" into
A2, click into A1, then "Insert - Pivot Table... - OK" and drag "A"
from "Available Fields" to "Column Fields" and "OK", then "Insert -
Chart... - Finish", then save):  The resulting pivot.ods "Object
1/content.xml" sub-file contains a chart:plot-area XML element with a
table:cell-range-address="PivotChart" attribute as above, but which
appears to be nonsense according to the ODF standard as quoted below.

Maybe some Calc expert can shed some light on what is going on here, 
and if that


  

is legitimate, and should legitimately be processed with
lcl_getSingleCellAddressFromXMLString as is done here.


Added Tomaz to the CC list since (I believe) he has worked on pivot 
chart and may have a fresher memory on this topic.


I myself have hard time remembering the detail around this plot area 
data source address requirements.  I do seem to think that there was 
some weird exception that "allowed" a regular name to be used as a data 
source especially when the data source is not from Calc document but is 
from the internal data provider...  But I wouldn't trust my own memory.


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


[Libreoffice-bugs] [Bug 103512] [META] AutoFilter-related bugs and enhancements

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103512

Aron Budea  changed:

   What|Removed |Added

 Depends on|140898  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=140898
[Bug 140898] There is an artifact in cell when you open an Autofilter window
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 140898] There is an artifact in cell when you open an Autofilter window

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140898

Aron Budea  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Blocks|103512  |
 CC||ba...@caesar.elte.hu
   Keywords|bibisectRequest |
 Resolution|--- |DUPLICATE

--- Comment #2 from Aron Budea  ---
Looks like bug 126356.

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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103512
[Bug 103512] [META] AutoFilter-related 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 126356] Tiny visual artifact when opening autofilter menu

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126356

Aron Budea  changed:

   What|Removed |Added

 CC||79045_79...@mail.ru

--- Comment #3 from Aron Budea  ---
*** Bug 140898 has been marked as a duplicate of this bug. ***

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


[Libreoffice-commits] core.git: helpcontent2

2021-03-08 Thread Seth Chaiklin (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 165d2bd10bc576f5aa6dc20ffc0f3e699fed846e
Author: Seth Chaiklin 
AuthorDate: Mon Mar 8 23:30:45 2021 +0100
Commit: Gerrit Code Review 
CommitDate: Mon Mar 8 23:30:45 2021 +0100

Update git submodules

* Update helpcontent2 from branch 'master'
  to 3d5548e2fe71a25b09fb984b15251a5da81e02b4
  - improve help page for character style and adjust highlighting label

  ( shared/02/0216.xhp ) "Character Highlighting Color"
   changed  to "Highlighting" because it is embedded into
   the help pages for Character and Character Style as the name of
   the tab.

  ( swriter/01/05130002.xhp ) "Character Style"
* change order of embeds to correspond with order of tabs in dialog.
* improve the embed for the Asian language
+ add embed to "Borders"
* change embed for "Reset" button
+ add embed for "Apply" button

Change-Id: I939f28ede5ff96a53825919e5b2aab8f5de770db
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/112090
Tested-by: Jenkins
Reviewed-by: Seth Chaiklin 

diff --git a/helpcontent2 b/helpcontent2
index 60bc5707b16a..3d5548e2fe71 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 60bc5707b16ad1960a2baa1128a515a8960b6834
+Subproject commit 3d5548e2fe71a25b09fb984b15251a5da81e02b4
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: source/text

2021-03-08 Thread Seth Chaiklin (via logerrit)
 source/text/shared/02/0216.xhp  |2 +-
 source/text/swriter/01/05130002.xhp |8 +---
 2 files changed, 6 insertions(+), 4 deletions(-)

New commits:
commit 3d5548e2fe71a25b09fb984b15251a5da81e02b4
Author: Seth Chaiklin 
AuthorDate: Mon Mar 8 22:42:54 2021 +0100
Commit: Seth Chaiklin 
CommitDate: Mon Mar 8 23:30:45 2021 +0100

improve help page for character style and adjust highlighting label

  ( shared/02/0216.xhp ) "Character Highlighting Color"
   changed  to "Highlighting" because it is embedded into
   the help pages for Character and Character Style as the name of
   the tab.

  ( swriter/01/05130002.xhp ) "Character Style"
* change order of embeds to correspond with order of tabs in dialog.
* improve the embed for the Asian language
+ add embed to "Borders"
* change embed for "Reset" button
+ add embed for "Apply" button

Change-Id: I939f28ede5ff96a53825919e5b2aab8f5de770db
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/112090
Tested-by: Jenkins
Reviewed-by: Seth Chaiklin 

diff --git a/source/text/shared/02/0216.xhp 
b/source/text/shared/02/0216.xhp
index 55b689087..411189d3e 100644
--- a/source/text/shared/02/0216.xhp
+++ b/source/text/shared/02/0216.xhp
@@ -30,7 +30,7 @@
 
 
 
-Character Highlighting Color
+Highlighting
 Applies current highlighting 
color to the character 
style or text 
selection.
 
 
diff --git a/source/text/swriter/01/05130002.xhp 
b/source/text/swriter/01/05130002.xhp
index 93af25800..149c17fef 100644
--- a/source/text/swriter/01/05130002.xhp
+++ b/source/text/swriter/01/05130002.xhp
@@ -39,11 +39,13 @@
 Use the Contains section in the 
Organizer to see the properties of the character style.
 
 
-
-
 
 
-
+
+
+
+
+
 
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.4' - sc/source

2021-03-08 Thread Szymon Kłos (via logerrit)
 sc/source/ui/dbgui/PivotLayoutTreeListData.cxx |   13 +++--
 1 file changed, 7 insertions(+), 6 deletions(-)

New commits:
commit 13577b6c3d64c6cae673152c4d10489d8380bb7f
Author: Szymon Kłos 
AuthorDate: Sat Mar 6 17:44:11 2021 +0100
Commit: Michael Meeks 
CommitDate: Mon Mar 8 23:30:14 2021 +0100

Pivot table: fix data field subdialog

Changes done in 'Data field' subdialog were not
applied in the result pivot table.

Change-Id: Ia221380a9ab3d292033512b9b642646f4b53a39d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112096
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Michael Meeks 

diff --git a/sc/source/ui/dbgui/PivotLayoutTreeListData.cxx 
b/sc/source/ui/dbgui/PivotLayoutTreeListData.cxx
index da54e26ad5a1..76c9e45a9ff3 100644
--- a/sc/source/ui/dbgui/PivotLayoutTreeListData.cxx
+++ b/sc/source/ui/dbgui/PivotLayoutTreeListData.cxx
@@ -92,23 +92,24 @@ IMPL_LINK_NOARG(ScPivotLayoutTreeListData, DoubleClickHdl, 
weld::TreeView&, bool
 
 mpFunctionDlg = pFactory->CreateScDPFunctionDlg(mxControl.get(), 
mpParent->GetLabelDataVector(), rCurrentLabelData, rCurrentFunctionData);
 
-mpFunctionDlg->StartExecuteAsync([this, pCurrentItemValue, 
rCurrentFunctionData,
+mpFunctionDlg->StartExecuteAsync([this, pCurrentItemValue,
 rCurrentLabelData, nEntry](int nResult) 
mutable {
 if (nResult == RET_OK)
 {
-rCurrentFunctionData.mnFuncMask = mpFunctionDlg->GetFuncMask();
+ScPivotFuncData& rFunctionData = pCurrentItemValue->maFunctionData;
+rFunctionData.mnFuncMask = mpFunctionDlg->GetFuncMask();
 rCurrentLabelData.mnFuncMask = mpFunctionDlg->GetFuncMask();
 
-rCurrentFunctionData.maFieldRef = mpFunctionDlg->GetFieldRef();
+rFunctionData.maFieldRef = mpFunctionDlg->GetFieldRef();
 
-ScDPLabelData& rDFData = 
mpParent->GetLabelData(rCurrentFunctionData.mnCol);
+ScDPLabelData& rDFData = 
mpParent->GetLabelData(rFunctionData.mnCol);
 
 AdjustDuplicateCount(pCurrentItemValue);
 
 OUString sDataItemName = lclCreateDataItemName(
-rCurrentFunctionData.mnFuncMask,
+rFunctionData.mnFuncMask,
 rDFData.maName,
-rCurrentFunctionData.mnDupCount);
+rFunctionData.mnDupCount);
 
 mxControl->set_text(nEntry, sDataItemName);
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 140884] LO fails to parse a node in an Addons.xcu file

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140884

Maxim Monastirsky  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||momonas...@gmail.com
 Resolution|--- |NOTABUG

--- Comment #7 from Maxim Monastirsky  ---
OK, so the extension in question is TexMaths 0.48.2. I downloaded it from
https://extensions.libreoffice.org/en/extensions/show/texmaths-1, and could
reproduce the same log. Try to disable this extension, and see how that warning
goes away.

I looked at the Addons.xcu file of this extension, and it indeed has invalid
format. It seems that this extension tries to keep working also with AOO, which
changed how toolbars are defined in Addons.xcu, and there was a decision on the
LO side to not follow this incompatible change. So LO is complaining about the
AOO-specific definition that it doesn't understand.

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


[Libreoffice-bugs] [Bug 140879] [META] Console noise

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140879
Bug 140879 depends on bug 140884, which changed state.

Bug 140884 Summary: LO fails to parse a  node in an Addons.xcu file
https://bugs.documentfoundation.org/show_bug.cgi?id=140884

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |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 140754] LibreOffice Calc crash when selecting filters (threaded)

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140754

Luboš Luňák  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |l.lu...@collabora.com
   |desktop.org |
 Status|NEW |ASSIGNED

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


[Libreoffice-bugs] [Bug 140457] UI problems with dark theme

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140457

medmedin2014  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 OS|All |Linux (All)
 Status|UNCONFIRMED |RESOLVED

--- Comment #4 from medmedin2014  ---
(In reply to mulla.tasanim from comment #3)
> Thank you for reporting the bug. 

With Latest AppImage :

Version: 7.2.0.0.alpha0+ / LibreOffice Community
Build ID: 06c3eafce490fbfb8f8c477cb8dfe7f83e1fca9c
CPU threads: 2; OS: Linux 5.4; UI render: default; VCL: kf5
Locale: en-US (en_US.UTF-8); UI: en-US
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2021-02-28_18:17:47
Calc: threaded

The problem is not present at all. 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 140864] Bad scaling when using two screens

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140864

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

   What|Removed |Added

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

--- Comment #6 from Roman Kuznetsov <79045_79...@mail.ru> ---
Thanks

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

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


[Libreoffice-bugs] [Bug 140866] Cell comments disappear

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140866

--- Comment #3 from Roman Kuznetsov <79045_79...@mail.ru> ---
No repro from scratch in

Version: 7.2.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 72841008bf422dfd8553240b3a78f0474d03523c
CPU threads: 4; OS: Windows 6.1 Service Pack 1 Build 7601; UI render:
Skia/Raster; VCL: win
Locale: ru-RU (ru_RU); UI: en-US
Calc: CL

if you have the file created in previous LO version, then please attach it 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-commits] core.git: Branch 'libreoffice-7-1' - sc/source

2021-03-08 Thread Caolán McNamara (via logerrit)
 sc/source/ui/inc/hdrcont.hxx  |6 +
 sc/source/ui/view/hdrcont.cxx |   44 +++---
 2 files changed, 39 insertions(+), 11 deletions(-)

New commits:
commit f410d6826e86d55314dfbd4bcf6b0e78ef0ef2a2
Author: Caolán McNamara 
AuthorDate: Sat Mar 6 21:34:22 2021 +
Commit: Adolfo Jayme Barrientos 
CommitDate: Mon Mar 8 22:35:53 2021 +0100

tdf#140833 show ScHeaderControl help tip after double click time has expired

so under gtk the popover isn't active when the double click is processed
by gtk because under load on wayland the double click is getting handled
by something else and getting sent to the the window underneath our
window

Change-Id: Ie3afcf45c69b7b947b1aeb787478f947deca9307
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112135
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/sc/source/ui/inc/hdrcont.hxx b/sc/source/ui/inc/hdrcont.hxx
index 3bb0e4223ce5..03b14af70c98 100644
--- a/sc/source/ui/inc/hdrcont.hxx
+++ b/sc/source/ui/inc/hdrcont.hxx
@@ -21,6 +21,7 @@
 #define INCLUDED_SC_SOURCE_UI_INC_HDRCONT_HXX
 
 #include 
+#include 
 #include 
 #include 
 
@@ -36,6 +37,7 @@ class ScHeaderControl : public vcl::Window
 {
 private:
 SelectionEngine*pSelEngine;
+Timer   aShowHelpTimer;
 vcl::Font   aNormFont;
 vcl::Font   aBoldFont;
 boolbBoldSet;
@@ -67,9 +69,12 @@ private:
 SCCOLROWGetMousePos( const MouseEvent& rMEvt, bool& rBorder ) 
const;
 boolIsSelectionAllowed(SCCOLROW nPos) const;
 voidShowDragHelp();
+voidHideDragHelp();
 
 voidDoPaint( SCCOLROW nStart, SCCOLROW nEnd );
 
+DECL_LINK(ShowDragHelpHdl, Timer*, void);
+
 protected:
 ScTabView*  pTabView;
 
@@ -105,6 +110,7 @@ protected:
 
 virtual voidDrawInvert( tools::Long nDragPos );
 virtual voidCommand( const CommandEvent& rCEvt ) override;
+virtual voiddispose() override;
 
 public:
 ScHeaderControl( vcl::Window* pParent, SelectionEngine* 
pSelectionEngine,
diff --git a/sc/source/ui/view/hdrcont.cxx b/sc/source/ui/view/hdrcont.cxx
index 12f4ad7c0a4b..78214cb9be68 100644
--- a/sc/source/ui/view/hdrcont.cxx
+++ b/sc/source/ui/view/hdrcont.cxx
@@ -48,6 +48,7 @@ ScHeaderControl::ScHeaderControl( vcl::Window* pParent, 
SelectionEngine* pSelect
   SCCOLROW nNewSize, bool bNewVertical, 
ScTabView* pTab ) :
 Window  ( pParent ),
 pSelEngine  ( pSelectionEngine ),
+aShowHelpTimer("sc HeaderControl Popover Timer"),
 bVertical   ( bNewVertical ),
 nSize   ( nNewSize ),
 nMarkStart  ( 0 ),
@@ -88,9 +89,18 @@ ScHeaderControl::ScHeaderControl( vcl::Window* pParent, 
SelectionEngine* pSelect
 nWidth = nSmallWidth = aSize.Width();
 nBigWidth = LogicToPixel( Size( GetTextWidth("888"), 0 ) ).Width() + 5;
 
+aShowHelpTimer.SetInvokeHandler(LINK(this, ScHeaderControl, 
ShowDragHelpHdl));
+
aShowHelpTimer.SetTimeout(GetSettings().GetMouseSettings().GetDoubleClickTime());
+
 SetBackground();
 }
 
+void ScHeaderControl::dispose()
+{
+aShowHelpTimer.Stop();
+vcl::Window::dispose();
+}
+
 void ScHeaderControl::SetWidth( tools::Long nNew )
 {
 OSL_ENSURE( bVertical, "SetWidth works only on row headers" );
@@ -652,7 +662,11 @@ void ScHeaderControl::MouseButtonDown( const MouseEvent& 
rMEvt )
 else
 nDragStart = rMEvt.GetPosPixel().X();
 nDragPos = nDragStart;
-ShowDragHelp();
+// tdf#140833 launch help tip to show after the double click time 
has expired
+// so under gtk the popover isn't active when the double click is 
processed
+// by gtk because under load on wayland the double click is 
getting handled
+// by something else and getting sent to the the window underneath 
our window
+aShowHelpTimer.Start();
 DrawInvert( nDragPos );
 
 StartTracking();
@@ -713,11 +727,7 @@ void ScHeaderControl::MouseButtonUp( const MouseEvent& 
rMEvt )
 {
 DrawInvert( nDragPos );
 ReleaseMouse();
-if (nTipVisible)
-{
-Help::HidePopover(this, nTipVisible);
-nTipVisible = nullptr;
-}
+HideDragHelp();
 bDragging = false;
 
 tools::Long nScrPos= GetScrPos( nDragNo );
@@ -885,11 +895,7 @@ void ScHeaderControl::StopMarking()
 if ( bDragging )
 {
 DrawInvert( nDragPos );
-if (nTipVisible)
-{
-Help::HidePopover(this, nTipVisible);
-nTipVisible = nullptr;
-}
+HideDragHelp();
 bDragging = false;
 }
 
@@ -902,8 +908,14 @@ void ScHeaderControl::StopMarking()
 ReleaseMouse();
 }
 
+IMPL_LINK_NOARG(ScHeaderControl, 

[Libreoffice-bugs] [Bug 140884] LO fails to parse a node in an Addons.xcu file

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140884

--- Comment #6 from Eyal Rozenberg  ---
Created attachment 170352
  --> https://bugs.documentfoundation.org/attachment.cgi?id=170352=edit
Addons.xcu file triggering the messages

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


[Libreoffice-bugs] [Bug 140864] Bad scaling when using two screens

2021-03-08 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=140864

--- Comment #5 from Thorsten Wagner  ---
(In reply to Roman Kuznetsov from comment #4)
> Thorsten, is it the same problem as you fixed in bug 138122

yes

-- 
You are receiving this mail because:
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   >