[Libreoffice-bugs] [Bug 118937] Border around text portion has padding color artifacts

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

--- Comment #5 from Panos Stokas  ---
I've tested the bug per the QA Administrator's request.

It's still an issue on version 6.4.5

It also affects printing. Depending on your printer's interpolation settings,
the green line will be visible on paper.

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


[Libreoffice-bugs] [Bug 135428] New: QR-Code init problem

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

Bug ID: 135428
   Summary: QR-Code init problem
   Product: LibreOffice
   Version: 6.4.5.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ulrich.wi...@rz.uni-regensburg.de

Description:
Trying to inser my first QR-Code in 6.4.5.2, I realized an initialization
problem:
In the radio button group all buttons except the first one were selected.
As soon as I pressed one of the buttons, the other buttons became inactive,
however.

Steps to Reproduce:
1. Insert->Object-QR Code


Actual Results:
All but the first button are "pressed" (selected)

Expected Results:
Only one button should be active


Reproducible: Always


User Profile Reset: No



Additional Info:
Radio buttons should be initialized properly

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


[Libreoffice-commits] core.git: xmloff/CppunitTest_xmloff_text.mk xmloff/Module_xmloff.mk xmloff/qa xmloff/source

2020-08-03 Thread Miklos Vajna (via logerrit)
 xmloff/CppunitTest_xmloff_text.mk  |   44 ++
 xmloff/Module_xmloff.mk|1 
 xmloff/qa/unit/data/mail-merge-editeng.odt |binary
 xmloff/qa/unit/text.cxx|   58 +
 xmloff/source/text/txtvfldi.cxx|   40 
 5 files changed, 127 insertions(+), 16 deletions(-)

New commits:
commit fd18d12efdfbe0e26d41d733edc711d0f40a7804
Author: Miklos Vajna 
AuthorDate: Mon Aug 3 21:03:43 2020 +0200
Commit: Miklos Vajna 
CommitDate: Tue Aug 4 07:56:17 2020 +0200

tdf#130707 xmloff: survive  in editeng text

Regression from commit 28d67b792724a23015dec32fb0278b729f676736
(tdf#107776 sw ODF shape import: make is-textbox check more strict,
2019-08-26), now that we correctly identify what shape text to import as
"textbox" (Writer TextFrame) and what to import as editeng text, there
are documents out there that try to import mailmerge fields into
editeng-based shape text. Fix missing error handling there.

Note that the error is not just silently ignored, we do insert the field
result into the shape text, existing code provides this already.

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

diff --git a/xmloff/CppunitTest_xmloff_text.mk 
b/xmloff/CppunitTest_xmloff_text.mk
new file mode 100644
index ..e3259672605b
--- /dev/null
+++ b/xmloff/CppunitTest_xmloff_text.mk
@@ -0,0 +1,44 @@
+# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+#*
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+#*
+
+$(eval $(call gb_CppunitTest_CppunitTest,xmloff_text))
+
+$(eval $(call gb_CppunitTest_use_externals,xmloff_text,\
+   boost_headers \
+))
+
+$(eval $(call gb_CppunitTest_add_exception_objects,xmloff_text, \
+xmloff/qa/unit/text \
+))
+
+$(eval $(call gb_CppunitTest_use_libraries,xmloff_text, \
+comphelper \
+cppu \
+embobj \
+sal \
+test \
+unotest \
+))
+
+$(eval $(call gb_CppunitTest_use_sdk_api,xmloff_text))
+
+$(eval $(call gb_CppunitTest_use_ure,xmloff_text))
+$(eval $(call gb_CppunitTest_use_vcl,xmloff_text))
+
+$(eval $(call gb_CppunitTest_use_rdb,xmloff_text,services))
+
+$(eval $(call gb_CppunitTest_use_custom_headers,xmloff_text,\
+   officecfg/registry \
+))
+
+$(eval $(call gb_CppunitTest_use_configuration,xmloff_text))
+
+# vim: set noet sw=4 ts=4:
diff --git a/xmloff/Module_xmloff.mk b/xmloff/Module_xmloff.mk
index 16cf0f817889..fe69b86b09f6 100644
--- a/xmloff/Module_xmloff.mk
+++ b/xmloff/Module_xmloff.mk
@@ -30,6 +30,7 @@ $(eval $(call gb_Module_add_check_targets,xmloff,\
$(if $(MERGELIBS),, \
CppunitTest_xmloff_uxmloff) \
CppunitTest_xmloff_style \
+   CppunitTest_xmloff_text \
 ))
 
 $(eval $(call gb_Module_add_subsequentcheck_targets,xmloff,\
diff --git a/xmloff/qa/unit/data/mail-merge-editeng.odt 
b/xmloff/qa/unit/data/mail-merge-editeng.odt
new file mode 100644
index ..e6466e44e01e
Binary files /dev/null and b/xmloff/qa/unit/data/mail-merge-editeng.odt differ
diff --git a/xmloff/qa/unit/text.cxx b/xmloff/qa/unit/text.cxx
new file mode 100644
index ..2a5c65e5c2d9
--- /dev/null
+++ b/xmloff/qa/unit/text.cxx
@@ -0,0 +1,58 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#include 
+#include 
+
+#include 
+#include 
+
+using namespace ::com::sun::star;
+
+char const DATA_DIRECTORY[] = "/xmloff/qa/unit/data/";
+
+/// Covers xmloff/source/text/ fixes.
+class XmloffStyleTest : public test::BootstrapFixture, public 
unotest::MacrosTest
+{
+private:
+uno::Reference mxComponent;
+
+public:
+void setUp() override;
+void tearDown() override;
+uno::Reference& getComponent() { return mxComponent; }
+};
+
+void XmloffStyleTest::setUp()
+{
+test::BootstrapFixture::setUp();
+
+mxDesktop.set(frame::Desktop::create(mxComponentContext));
+}
+
+void XmloffStyleTest::tearDown()
+{
+if (mxComponent.is())
+mxComponent->dispose();
+
+test::BootstrapFixture::tearDown();
+}
+
+CPPUNIT_TEST_FIXTURE(XmloffStyleTest, testMailMergeInEditeng)
+{
+OUString aURL = m_directories.getURLFromSrc(DATA_DIRECTORY) + 
"mail-merge-editeng.odt";

[Libreoffice-bugs] [Bug 85028] TABLE: There are gaps between tab marks and text in cells when the Left Spacing to Contents value is not zero

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

--- Comment #11 from Panos Stokas  ---
I've tested the original report per the QA Administrators request.

It's still an issue in version 6.4.5

It seems that padding values are added to the tab positions.

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

2020-08-03 Thread Olivier Hallot (via logerrit)
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 0f0cef19df0273ffc476025a5ae011328da37453
Author: Olivier Hallot 
AuthorDate: Tue Aug 4 02:21:05 2020 -0300
Commit: Gerrit Code Review 
CommitDate: Tue Aug 4 07:21:05 2020 +0200

Update git submodules

* Update helpcontent2 from branch 'libreoffice-7-0'
  to 6a57daed4f84b22c773fc79eae10d76d7d46fd75
  - Update version 7.0 New features video

Change-Id: I35fff323f6ccb6a035d87abcd8b08189276054e6
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/10
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 
(cherry picked from commit dc36eea48b4a2120911d0f99322ff4a35ea39eb6)
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/99924
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/helpcontent2 b/helpcontent2
index 85edbbfceba1..6a57daed4f84 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 85edbbfceba14edf8f7a822525744d08e475549e
+Subproject commit 6a57daed4f84b22c773fc79eae10d76d7d46fd75
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: Branch 'libreoffice-7-0' - source/text

2020-08-03 Thread Olivier Hallot (via logerrit)
 source/text/shared/06/youtubevideos.xhp |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 6a57daed4f84b22c773fc79eae10d76d7d46fd75
Author: Olivier Hallot 
AuthorDate: Mon Aug 3 09:36:40 2020 -0300
Commit: Adolfo Jayme Barrientos 
CommitDate: Tue Aug 4 07:21:05 2020 +0200

Update version 7.0 New features video

Change-Id: I35fff323f6ccb6a035d87abcd8b08189276054e6
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/10
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 
(cherry picked from commit dc36eea48b4a2120911d0f99322ff4a35ea39eb6)
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/99924
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/source/text/shared/06/youtubevideos.xhp 
b/source/text/shared/06/youtubevideos.xhp
index 092fdfde1..f83390350 100644
--- a/source/text/shared/06/youtubevideos.xhp
+++ b/source/text/shared/06/youtubevideos.xhp
@@ -17,7 +17,7 @@
 
 
 
-https://www.youtube-nocookie.com/embed/-4boEj8S2JQ; 
id="vid_id61521568603544" type="video/youtube" width="560" 
height="315"/>
+https://www.youtube-nocookie.com/embed/XusjjbBm81s; 
id="vid_id61521568603544" type="video/youtube" width="700" 
height="394"/>
 
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 35092] Inking functionality: Ink drawings / annotations with Stylus, Pen or Finger on Touchscreen or Tablet

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

--- Comment #43 from matlabassignmenthelp  ---
Matlabassignmenthelp.com is a platform where we provide the best Matlab
assignment help to all students across the globe. Grab the best Matlab
assignment now

https://matlabassignmenthelp.com/matlab-assignment-help

https://matlabassignmenthelp.com/matlab-programming-help

https://matlabassignmenthelp.com/matlab-homework-help

https://matlabassignmenthelp.com/matlab-project-help
https://matlabassignmenthelp.com/matlab-coursework-help
https://matlabassignmenthelp.com/do-my-matlab-homework

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


[Libreoffice-bugs] [Bug 135373] It is impossible to move text blocks independently of the Headings that they're underneath

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

--- Comment #8 from Cougar Brenneman  ---
(In reply to Mike Kaganski from comment #7)
> I support this request.
> 
> But it could be very useful for others if Cougar created a screencast from
> Word using this functionality, which would both describe how it looks, and
> at the same time demonstrate its advantages (using some short text, as if
> you actually were creating it per comment 2).

Okay. I don't have screencast software, but I'll demonstrate with a document
containing a series of jpgs of screenshots pasted on it. This is going to take
me some time, but it will demonstrate it.

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


[Libreoffice-ux-advise] [Bug 135373] It is impossible to move text blocks independently of the Headings that they're underneath

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

--- Comment #8 from Cougar Brenneman  ---
(In reply to Mike Kaganski from comment #7)
> I support this request.
> 
> But it could be very useful for others if Cougar created a screencast from
> Word using this functionality, which would both describe how it looks, and
> at the same time demonstrate its advantages (using some short text, as if
> you actually were creating it per comment 2).

Okay. I don't have screencast software, but I'll demonstrate with a document
containing a series of jpgs of screenshots pasted on it. This is going to take
me some time, but it will demonstrate it.

-- 
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 135405] Dictionaries: Add Korean(ko_KR) spellcheck dictionary from existing hunspell Korean dictionary project

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

--- Comment #2 from Ilkyu Ju  ---
(In reply to Ming Hua from comment #1)
> Valid request, setting to NEW.
> 
> However, there doesn't seem to be a lot of people working on CJK features
> now.  So it's probably up to Korean LibreOffice users to implement this.
> 
> I personally have no experience about hunspell-based spellcheckers.  One
> suggestion may be trying to create an extension first.  There are several
> spellcheckers for other languages available on extensions.libreoffice.org.

Thank you very much for the advice. Turns out there actually is a Korean
spellchecking extension based on the same hunspell dictionary data I mentioned,
which can be found on
https://extensions.libreoffice.org/en/extensions/show/korean-spellchecker . I
have tried using the extension and it seems to work great, just needs an update
of its dictionary data to the latest version.

At the same time, I have also submitted a patch which adds ko_KR dictionary to
the dictionaries repo (https://gerrit.libreoffice.org/c/dictionaries/+/100036).
I was just wondering which is a better move, (1) Update the existing Korean
spellchecking extension, or (2) Add a ko_KR dictionary to dictionaries repo?

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


[Libreoffice-bugs] [Bug 135373] It is impossible to move text blocks independently of the Headings that they're underneath

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

--- Comment #7 from Mike Kaganski  ---
I support this request.

But it could be very useful for others if Cougar created a screencast from Word
using this functionality, which would both describe how it looks, and at the
same time demonstrate its advantages (using some short text, as if you actually
were creating it per comment 2).

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


[Libreoffice-ux-advise] [Bug 135373] It is impossible to move text blocks independently of the Headings that they're underneath

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

--- Comment #7 from Mike Kaganski  ---
I support this request.

But it could be very useful for others if Cougar created a screencast from Word
using this functionality, which would both describe how it looks, and at the
same time demonstrate its advantages (using some short text, as if you actually
were creating it per comment 2).

-- 
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 134914] UI: Pressing reset after checking Relative shows wrong table size (0cm)

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

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 134875] Missing from download list on Website: New UI languages Friulian (fur), Central Kurdish (ckb) and Inuktitut (iu) missing on download website

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

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 134951] FILESAVE DOCX/DOC: Additional (spurious) footnote is added on export

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

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 134913] Relative table setting lost (gets absolute again)

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

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 134935] LibreOffice-fresh.full-x86_64.AppImage version saves as ODF instead of PDF

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

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 134696] Find and Replace function places found item sometimes off the visible page portion

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

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 134915] UI: Checking Relative width for table with 12 cm and unchecking again results in 11, 90 cm

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

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 134852] FILEOPEN DOC: Time opening DOC with a very large page splitting table increased with around 30 seconds (since 5.3 with NEW layout engine)

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

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 134933] Inconsistent behavior on cell update with F9 at cells filled by RANDBETWEEN() function

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

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 134698] Rather slowy performance on Microsoft 10 pro

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

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 134854] FILEOPEN RTF: Time opening RTF with a very large page splitting table increased with around 40 seconds (since 4.4.7.2)

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

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 134829] Gotorange method gives an error poiting to a textsection with only a texttable as content

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

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 134515] FORMATTING, EDITING: Librecalc text-color-selector resets every time you insert a comment

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

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 134408] Character transparency don't work properly in Writer and Calc

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

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 134851] Context depended table toolbar doesn't open with Style Inspector deck open

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

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 134536] Writer Table Formulas Don't Support RnCn cell references

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

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 134695] new build option --with-product-flavor inconsistency

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

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 134612] SVG image drawings outside the viewBox are included when exporting as PDF

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

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 134994] Possibility to change the size of the page via GUI

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

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 134249] Option Text Overflow should block overflow

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

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 134476] EDITING Checkbox "Current selection only" disabled in Find if selected cells are empty

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

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 134637] Remember the last selected node in Style Inspector

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

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 134991] Changing spell checker language with whole text selected scroll page to last page of the document

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

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 134951] FILESAVE DOCX/DOC: Additional (spurious) footnote is added on export

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

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

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


[Libreoffice-bugs] [Bug 134886] Switching between portrait and landscape format not reliable in LO Writer (main bug) and unable to create a Table Style in the stylesheet (side finding)

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

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 135357] Save - Minimize - Freeze

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

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 134988] FORMATTING: Keystroke use of Special Characters dialog box won't activate Insert choice

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

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 132695] Explanation of "Character Background" in "Tools - Options - Load/Save - Microsoft Office" is not too clear

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

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 135357] Save - Minimize - Freeze

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

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

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


[Libreoffice-bugs] [Bug 134829] Gotorange method gives an error poiting to a textsection with only a texttable as content

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

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 135378] FIELD TEXT reintroduced after undo

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

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

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


[Libreoffice-bugs] [Bug 134829] Gotorange method gives an error poiting to a textsection with only a texttable as content

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

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

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


[Libreoffice-bugs] [Bug 134951] FILESAVE DOCX/DOC: Additional (spurious) footnote is added on export

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

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 129768] Broken Writer appearence

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

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

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 135378] FIELD TEXT reintroduced after undo

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

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 134408] Character transparency don't work properly in Writer and Calc

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

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 132780] Feature Request: Add Calc Tables with functionality similar to Excel tables

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

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 134408] Character transparency don't work properly in Writer and Calc

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

--- Comment #12 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 132780] Feature Request: Add Calc Tables with functionality similar to Excel tables

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

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

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


[Libreoffice-ux-advise] [Bug 132780] Feature Request: Add Calc Tables with functionality similar to Excel tables

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

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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


[Libreoffice-bugs] [Bug 129768] Broken Writer appearence

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

QA Administrators  changed:

   What|Removed |Added

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

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


[Libreoffice-ux-advise] [Bug 132780] Feature Request: Add Calc Tables with functionality similar to Excel tables

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

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

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


[Libreoffice-bugs] [Bug 90244] SIDEBAR: Enhancing Navigator in Draw

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

V Stuart Foote  changed:

   What|Removed |Added

 CC||sanipache...@outlook.com.ar

--- Comment #22 from V Stuart Foote  ---
*** Bug 135312 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-ux-advise] [Bug 135312] Sequential name for objects in Draw and other apps (and total count in properties)

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

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #5 from V Stuart Foote  ---
There is a lot of misinformation to be unpacked here compared to how
LibreOffice actually deals wtih Draw shapes, Layers and Objects as a functional
limitation of our native ODF Drawing XML spec.

Handling of unnamed/autonamed Draw Shapes vs user named Draw shapes and other
Draw objects, and their grouping via Draw layers.

This is a duplicate of bug 90244 for the Navigator in Draw with UX work-up in
https://design.blog.documentfoundation.org/2016/07/31/how-the-navigator-may-support-object-handling-in-libreoffice-draw/

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

-- 
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 135312] Sequential name for objects in Draw and other apps (and total count in properties)

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

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #5 from V Stuart Foote  ---
There is a lot of misinformation to be unpacked here compared to how
LibreOffice actually deals wtih Draw shapes, Layers and Objects as a functional
limitation of our native ODF Drawing XML spec.

Handling of unnamed/autonamed Draw Shapes vs user named Draw shapes and other
Draw objects, and their grouping via Draw layers.

This is a duplicate of bug 90244 for the Navigator in Draw with UX work-up in
https://design.blog.documentfoundation.org/2016/07/31/how-the-navigator-may-support-object-handling-in-libreoffice-draw/

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

-- 
You are receiving this mail because:
You 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 135373] It is impossible to move text blocks independently of the Headings that they're underneath

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

--- Comment #6 from Matthew Forrester  ---
Firstly, I would like to express my gratitude to Mr Raykowski and others who
have added outlining features. It's one of the most useful improvements to
LibreOffice Writer ever.

Secondly, I support this feature enhancement request so that the full power of
outlining can be exploited. I sometimes use outlining in the way that Mr
Brenneman describes, with the headers as temporary scaffolding. More often, I
keep the headers in the final presentation version. But in both cases I want to
be able to move body (non-header) paragraphs around quickly and easily as the
structure of the argument evolves. It would definitely be a Quality-of-Life
improvement if I could just click on something like an anchor point (where the
open/collapse button appears for headers) and grab the whole paragraph in order
to drag it elsewhere.

Dieter's option of selecting, cutting, and pasting text is how I work now (when
Ctrl+Alt+Up/Down is not feasible), but it requires more clicks and it's often
fiddly.

As discussed in bug 38093, this behaviour should only be available in Outline
View to avoid confusing users who are not used to outlining.

-- 
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 135373] It is impossible to move text blocks independently of the Headings that they're underneath

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

--- Comment #6 from Matthew Forrester  ---
Firstly, I would like to express my gratitude to Mr Raykowski and others who
have added outlining features. It's one of the most useful improvements to
LibreOffice Writer ever.

Secondly, I support this feature enhancement request so that the full power of
outlining can be exploited. I sometimes use outlining in the way that Mr
Brenneman describes, with the headers as temporary scaffolding. More often, I
keep the headers in the final presentation version. But in both cases I want to
be able to move body (non-header) paragraphs around quickly and easily as the
structure of the argument evolves. It would definitely be a Quality-of-Life
improvement if I could just click on something like an anchor point (where the
open/collapse button appears for headers) and grab the whole paragraph in order
to drag it elsewhere.

Dieter's option of selecting, cutting, and pasting text is how I work now (when
Ctrl+Alt+Up/Down is not feasible), but it requires more clicks and it's often
fiddly.

As discussed in bug 38093, this behaviour should only be available in Outline
View to avoid confusing users who are not used to outlining.

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


[Libreoffice-bugs] [Bug 135427] eps import with text has completely bogus inter-letter spacing

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

--- Comment #4 from Samuel Thibault  ---
I have submitted a patch proposal on
https://gerrit.libreoffice.org/c/core/+/100035

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


[Libreoffice-bugs] [Bug 135310] [META] Writer outline view bugs and enhancements

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

--- Comment #6 from Matthew Forrester  ---
I would like to express my gratitude to Mr Raykowski for adding this feature to
LibreOffice.

I have been using LibreOffice, OpenOffice.org, and StarOffice since the last
century and I think the addition of better outlining features has been my most
desired improvement over all that time. Outlining really makes writing easier
and results in better-quality documents. Navigator is not the same.

I have installed a LibreOffice Daily build for the first time because I want
this so much. I joined the BugZilla just to say thank you.

So thank you all, and especially Mr Raykowski, and I hope that you will
continue to develop this feature.

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


[Libreoffice-bugs] [Bug 135427] eps import with text has completely bogus inter-letter spacing

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

--- Comment #3 from Samuel Thibault  ---
Created attachment 163922
  --> https://bugs.documentfoundation.org/attachment.cgi?id=163922=edit
Proper output

This is the proper output when passing the -nfw option to pstoedit.

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


[Libreoffice-bugs] [Bug 135427] eps import with text has completely bogus inter-letter spacing

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

--- Comment #2 from Samuel Thibault  ---
Created attachment 163921
  --> https://bugs.documentfoundation.org/attachment.cgi?id=163921=edit
Bogus output

This is the bogus output I am getting with various versions of libreoffice.
Notice how letters even step on each other, in "simgrid" the 'm', 'g', and 'r'
are completely collapsed.

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


[Libreoffice-bugs] [Bug 135307] Outline View: should use "Web view", not pages

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

--- Comment #2 from Matthew Forrester  ---
Outlining should be in a specific view for two reasons. 

Firstly, so that users do not accidentally collapse a section by misclicking
and think that LibreOffice has lost their work. It's frightening (especially to
less computer-savvy users) to see their words suddenly disappear.

Secondly, so that users can switch between the viewing the final printed
version of the document and the outline view where they edit the document,
without losing the state of the outline view.

For example, I am editing a hypothetical section 4.3 with reference to section
6.2, so all other paragraphs are collapsed. But I need to add a table in
section 4.3 and I want to make sure it's at the bottom of a page. So I should
be able to switch to Normal View, add and edit the table in WYSIWYG mode, then
switch back to Outline View and find that everything except sections 4.3 and
6.2 are still collapsed.

I'm not sure whether the second workflow is currently possible or not, but an
Outline View makes it possible to add it at a later data.

(Apologies for double-posting, I though Bugzilla comments would be editable)

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


[Libreoffice-bugs] [Bug 135427] eps import with text has completely bogus inter-letter spacing

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

Samuel Thibault  changed:

   What|Removed |Added

 CC||samuel.thiba...@ens-lyon.or
   ||g

--- Comment #1 from Samuel Thibault  ---
Created attachment 163920
  --> https://bugs.documentfoundation.org/attachment.cgi?id=163920=edit
reproducer .eps file

This is the .eps file I used in my tests.

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


[Libreoffice-bugs] [Bug 135427] New: eps import with text has completely bogus inter-letter spacing

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

Bug ID: 135427
   Summary: eps import with text has completely bogus inter-letter
spacing
   Product: LibreOffice
   Version: 4.2.7.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: filters and storage
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: samuel.thiba...@ens-lyon.org

Description:
When importing a .eps image file containing text and the pstoedit tool is
installed, the result is horrible because the inter-letter spacing is
completely bogus.

Steps to Reproduce:
1. Create a new document
2. Insert->Image, select a .eps file containing text

Actual Results:
The image gets inserted, but the letter of the text inside the image are
completely ill-placed.

Expected Results:
The letters of the text should be spaced according to the font, so words can be
read normally.


Reproducible: Always


User Profile Reset: Yes



Additional Info:
Purging from my system the pstoedit tool avoids the issue (I'm then getting a
rasterized output, lower quality but proper text spacing).

I have been having the issue since ages, libreoffice 4.2, I also tried 6.0.7.3,
6.1.6.3, 6.2.8.2, 6.3.6.2, 6.3.4.2, 7.0.0 rc2, with the same result.

I have dug the issue and found that libreoffice should just pass -nfw to the
pstoedit tool, as actually documented by pstoedit itself. I will submit a merge
request doing this.

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


[Libreoffice-bugs] [Bug 135307] Outline View: should use "Web view", not pages

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

--- Comment #1 from Matthew Forrester  ---
I support making these features available in a specific view, accessed through
the View menu.

It should be called Outline View, not Web View. There is no connection between
outlining and the World Wide Web, either technically or in use.

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


[Libreoffice-bugs] [Bug 135374] Newcomers could need help regarding daily builds

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

--- Comment #6 from Matthew Forrester  ---
I encountered the same problem as j.a.swami.

I learned how to install LibreOffice Daily builds and joined BugZilla because
this feature (outlining) has been the most important feature I have wanted in
LibreOffice and its predecessors since I began using them in the last century.

This post was helpful, but I stumbled across it by accident.

Would it be possible to add this information to the 7.10 Release Notes, please?
A link to the Release Notes pops up when you install the LibreOffice Daily
build and so I think that is the place that has the best chance of reaching
other users who are keen to begin using the outlining tools immediately.

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


[Libreoffice-bugs] [Bug 135426] New: Print Window should adjust to window size

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

Bug ID: 135426
   Summary: Print Window should adjust to window size
   Product: LibreOffice
   Version: 6.4.4.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: engineer...@radiolabworks.com

Description:
In the Print window there are two areas which only display when the >More link
is selected.  Once both of these expansion links are selected the window is
filled to a point that could have easily been filled as a default.  This is
especially true on larger display areas.  Such items as Number of Copies or
Number of pages to print per page are often selected and right now it requires
extra steps to perform the >More selection each time a print is selected.  The
>More should only be needed if the print window is to small to fit the full
selection menus.  One displays that have no problem displaying the information
it should be provided as default or once >More is selected it is from then on
remembered as the default display.  I current print many documents that I
select multiple copies and often print 2 psges per side.  This now forces me to
use both the >More expansion links to show me those selections.  A real waste
of time as this setting information is not saved.

Steps to Reproduce:
1. Easy just select to print a document!
2.
3.

Actual Results:
Print Window

Expected Results:
>More selections should be saved or not even needed if the display area can 
>already display all the information from the two >More expansion areas.


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 6.4.4.2
Build ID: 1:6.4.4-0ubuntu0.20.04.1
CPU threads: 24; OS: Linux 5.4; UI render: default; VCL: gtk3; 
Locale: en-US (en_US.UTF-8); UI-Language: en-US
Calc: threaded

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


[Libreoffice-bugs] [Bug 134607] LO7RC1 - LANGPACK macOS - many versions fail to recognize LibreOffice7 installation as valid on Catalina

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

--- Comment #27 from Kamei  ---
(In reply to Christian Lohmaier from comment #25)

Sorry for my lack of explanation.
I installed 7.0 RC3 and then tried
LibreOffice_7.0.0.3_MacOS_x86-64_langpack_ja.dmg and it's still the same
situation.

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

2020-08-03 Thread Markus Mohrhard (via logerrit)
 cui/uiconfig/ui/movemenu.ui |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 23397ecc1ee69462fbe0639c5ea105e2c0ec9a45
Author: Markus Mohrhard 
AuthorDate: Sat Aug 1 23:01:52 2020 +0800
Commit: Adolfo Jayme Barrientos 
CommitDate: Tue Aug 4 03:47:49 2020 +0200

correctly mark the "New menu" dialog as modal

The dialog is called from a modal dialog which means a modeless dialog
does not make sense. Some of our internal dialog tracking code is confused
by that case which confused the UI tests.

Change-Id: I705877e8a751c55bfbd00ddeaf18ab86c95321c3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99944
Tested-by: Markus Mohrhard 
Reviewed-by: Markus Mohrhard 
(cherry picked from commit 3258603e8850900e04cecffb1113b833c4c76fd9)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99929
Tested-by: Jenkins
Reviewed-by: Adolfo Jayme Barrientos 

diff --git a/cui/uiconfig/ui/movemenu.ui b/cui/uiconfig/ui/movemenu.ui
index 7bb5be63309c..18a0712e67c1 100644
--- a/cui/uiconfig/ui/movemenu.ui
+++ b/cui/uiconfig/ui/movemenu.ui
@@ -25,6 +25,7 @@
 6
 New Menu
 dialog
+True
 
   
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 135392] Paste from AOO to CALC overwriting cells with data fails to give warning

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

Dale Eltoft  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 135425] the edges of the arabic text are hidden if you don't continuously update the page formatting manually!

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

--- Comment #5 from Md  ---
Created attachment 163919
  --> https://bugs.documentfoundation.org/attachment.cgi?id=163919=edit
the test document

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


[Libreoffice-bugs] [Bug 135425] the edges of the arabic text are hidden if you don't continuously update the page formatting manually!

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

--- Comment #4 from Md  ---
Created attachment 163918
  --> https://bugs.documentfoundation.org/attachment.cgi?id=163918=edit
4-result after updating page formatting then delete the text

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


[Libreoffice-bugs] [Bug 135425] the edges of the arabic text are hidden if you don't continuously update the page formatting manually!

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

--- Comment #3 from Md  ---
Created attachment 163917
  --> https://bugs.documentfoundation.org/attachment.cgi?id=163917=edit
3-result after scrolling

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


[Libreoffice-bugs] [Bug 135425] the edges of the arabic text are hidden if you don't continuously update the page formatting manually!

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

--- Comment #2 from Md  ---
Created attachment 163916
  --> https://bugs.documentfoundation.org/attachment.cgi?id=163916=edit
2-result after updating page formatting

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


[Libreoffice-bugs] [Bug 135425] the edges of the arabic text are hidden if you don't continuously update the page formatting manually!

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

--- Comment #1 from Md  ---
Created attachment 163915
  --> https://bugs.documentfoundation.org/attachment.cgi?id=163915=edit
1-result after writing

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


[Libreoffice-bugs] [Bug 135425] New: the edges of the arabic text are hidden if you don't continuously update the page formatting manually!

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

Bug ID: 135425
   Summary: the edges of the arabic text are hidden if you don't
continuously update the page formatting manually!
   Product: LibreOffice
   Version: 6.4.5.2 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: out-look...@outlook.com

Description:
The problem was explained step by step in screenshots please check Attachments.
(versions 6.4.5 and 7.0.0.3)

Steps to Reproduce:
The problem was explained step by step in screenshots please check Attachments.

Actual Results:
The problem was explained step by step in screenshots please check Attachments.

Expected Results:
The problem was explained step by step in screenshots please check Attachments.


Reproducible: Always


User Profile Reset: Yes



Additional Info:
Version: 7.0.0.3 (x64)
Build ID: 8061b3e9204bef6b321a21033174034a5e2ea88e
CPU threads: 8; OS: Windows 10.0 Build 19041; UI render: Skia/Vulkan; VCL: win
Locale: ar-SA (en_US); UI: en-US
Calc: CL

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


[Libreoffice-commits] core.git: Branch 'private/quwex/gsoc-box2d-experimental' - slideshow/source

2020-08-03 Thread Sarper Akdemir (via logerrit)
Rebased ref, commits from common ancestor:
commit 3c5585e482953080fa9cd518393c7babe4808910
Author: Sarper Akdemir 
AuthorDate: Mon Jul 27 23:02:48 2020 +0300
Commit: Sarper Akdemir 
CommitDate: Tue Aug 4 02:50:16 2020 +0300

work-in-progress complex shapes

Change-Id: I807bbde92c143b8c96792b3d8bf9603a31216486

diff --git a/slideshow/source/engine/box2dtools.cxx 
b/slideshow/source/engine/box2dtools.cxx
index 8729300184f6..34794065df14 100644
--- a/slideshow/source/engine/box2dtools.cxx
+++ b/slideshow/source/engine/box2dtools.cxx
@@ -11,6 +11,13 @@
 #include 
 
 #include 
+#include 
+#include 
+#include 
+#include 
+
+#include 
+#include 
 
 #define BOX2D_SLIDE_SIZE_IN_METERS 100.00f
 
@@ -62,6 +69,124 @@ b2Vec2 convertB2DPointToBox2DVec2(const basegfx::B2DPoint& 
aPoint, const double
 return { static_cast(aPoint.getX() * fScaleFactor),
  static_cast(aPoint.getY() * -fScaleFactor) };
 }
+
+// expects rPolygon to have coordinates relative to it's center
+void addTriangleVectorToBody(const basegfx::triangulator::B2DTriangleVector& 
rTriangleVector,
+ b2Body* aBody, const float fDensity, const float 
fFriction,
+ const float fRestitution, const double 
fScaleFactor)
+{
+for (const basegfx::triangulator::B2DTriangle& aTriangle : rTriangleVector)
+{
+b2FixtureDef aFixture;
+b2PolygonShape aPolygonShape;
+b2Vec2 aTriangleVertices[3]
+= { convertB2DPointToBox2DVec2(aTriangle.getA(), fScaleFactor),
+convertB2DPointToBox2DVec2(aTriangle.getB(), fScaleFactor),
+convertB2DPointToBox2DVec2(aTriangle.getC(), fScaleFactor) };
+
+bool bValidPointDistance = true;
+for (int a = 0; a < 3; a++)
+{
+for (int b = 0; b < 3; b++)
+{
+if (a == b)
+continue;
+if (b2DistanceSquared(aTriangleVertices[a], 
aTriangleVertices[b]) < 0.003f)
+{
+bValidPointDistance = false;
+}
+}
+}
+if (bValidPointDistance)
+{
+aPolygonShape.Set(aTriangleVertices, 3);
+aFixture.shape = 
+aFixture.density = fDensity;
+aFixture.friction = fFriction;
+aFixture.restitution = fRestitution;
+aBody->CreateFixture();
+}
+}
+}
+
+// expects rPolygon to have coordinates relative to it's center
+void addEdgeShapeToBody(const basegfx::B2DPolygon& rPolygon, b2Body* aBody, 
const float fDensity,
+const float fFriction, const float fRestitution, const 
double fScaleFactor)
+{
+basegfx::B2DPolygon aPolygon = 
basegfx::utils::removeNeutralPoints(rPolygon);
+const float fHalfWidth = 0.1;
+bool bHaveEdgeA = false;
+b2Vec2 aEdgeBoxVertices[4];
+
+for (sal_uInt32 nIndex = 0; nIndex < aPolygon.count(); nIndex++)
+{
+b2FixtureDef aFixture;
+b2PolygonShape aPolygonShape;
+
+basegfx::B2DPoint aPointA;
+basegfx::B2DPoint aPointB;
+if (nIndex != 0)
+{
+aPointA = aPolygon.getB2DPoint(nIndex - 1);
+aPointB = aPolygon.getB2DPoint(nIndex);
+}
+else if (/* nIndex == 0 && */ aPolygon.isClosed())
+{
+// start by connecting the last point to the first one
+aPointA = aPolygon.getB2DPoint(aPolygon.count() - 1);
+aPointB = aPolygon.getB2DPoint(nIndex);
+}
+else // the polygon isn't closed, won't connect last and first points
+{
+continue;
+}
+
+b2Vec2 aEdgeUnitVec = (convertB2DPointToBox2DVec2(aPointB, 
fScaleFactor)
+   - convertB2DPointToBox2DVec2(aPointA, 
fScaleFactor));
+aEdgeUnitVec.Normalize();
+
+b2Vec2 aEdgeNormal(-aEdgeUnitVec.y, aEdgeUnitVec.x);
+
+if (!bHaveEdgeA)
+{
+aEdgeBoxVertices[0]
+= convertB2DPointToBox2DVec2(aPointA, fScaleFactor) + 
fHalfWidth * aEdgeNormal;
+aEdgeBoxVertices[1]
+= convertB2DPointToBox2DVec2(aPointA, fScaleFactor) + 
-fHalfWidth * aEdgeNormal;
+bHaveEdgeA = true;
+}
+aEdgeBoxVertices[2]
+= convertB2DPointToBox2DVec2(aPointB, fScaleFactor) + fHalfWidth * 
aEdgeNormal;
+aEdgeBoxVertices[3]
+= convertB2DPointToBox2DVec2(aPointB, fScaleFactor) + -fHalfWidth 
* aEdgeNormal;
+
+bool bValidPointDistance
+= (b2DistanceSquared(aEdgeBoxVertices[0], aEdgeBoxVertices[2]) > 
0.003f);
+
+if (bValidPointDistance)
+{
+aPolygonShape.Set(aEdgeBoxVertices, 4);
+aFixture.shape = 
+aFixture.density = fDensity;
+aFixture.friction = fFriction;
+aFixture.restitution = fRestitution;
+aBody->CreateFixture();
+
+

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

2020-08-03 Thread Noel Grandin (via logerrit)
 vcl/source/gdi/CommonSalLayout.cxx  |   68 ++--
 vcl/source/gdi/FileDefinitionWidgetDraw.cxx |   40 +-
 vcl/source/gdi/alpha.cxx|  102 +++---
 vcl/source/gdi/bitmap3.cxx  |   76 ++--
 vcl/source/gdi/bitmapex.cxx |   44 +-
 vcl/source/gdi/bmpacc.cxx   |  118 +++
 vcl/source/gdi/bmpacc3.cxx  |  240 +++---
 vcl/source/gdi/gdimtf.cxx   |  134 
 vcl/source/gdi/impvect.cxx  |   38 +-
 vcl/source/gdi/lineinfo.cxx |   86 ++---
 vcl/source/gdi/metaact.cxx  |  232 +++---
 vcl/source/gdi/pdfwriter_impl.cxx   |  456 ++--
 vcl/source/gdi/pdfwriter_impl2.cxx  |  262 
 vcl/source/gdi/print.cxx|  204 ++--
 vcl/source/gdi/print3.cxx   |  124 +++
 vcl/source/gdi/regband.cxx  |   40 +-
 vcl/source/gdi/region.cxx   |   34 +-
 vcl/source/gdi/salgdilayout.cxx |   74 ++--
 vcl/source/gdi/sallayout.cxx|   30 -
 vcl/source/gdi/vectorgraphicdata.cxx|  122 +++
 20 files changed, 1262 insertions(+), 1262 deletions(-)

New commits:
commit 750a6bddf16a2e8ae3859bf5facfd8cff955
Author: Noel Grandin 
AuthorDate: Tue Aug 4 00:16:03 2020 +0200
Commit: Noel Grandin 
CommitDate: Tue Aug 4 01:41:27 2020 +0200

loplugin:flatten in vcl/gdi

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

diff --git a/vcl/source/gdi/CommonSalLayout.cxx 
b/vcl/source/gdi/CommonSalLayout.cxx
index d5ce806fa747..998e07169c51 100644
--- a/vcl/source/gdi/CommonSalLayout.cxx
+++ b/vcl/source/gdi/CommonSalLayout.cxx
@@ -769,45 +769,45 @@ void GenericSalLayout::ApplyDXArray(const ImplLayoutArgs& 
rArgs)
 }
 
 // Insert Kashida glyphs.
-if (bKashidaJustify && !pKashidas.empty())
+if (!bKashidaJustify || pKashidas.empty())
+return;
+
+size_t nInserted = 0;
+for (auto const& pKashida : pKashidas)
 {
-size_t nInserted = 0;
-for (auto const& pKashida : pKashidas)
-{
-auto pGlyphIter = m_GlyphItems.Impl()->begin() + nInserted + 
pKashida.first;
+auto pGlyphIter = m_GlyphItems.Impl()->begin() + nInserted + 
pKashida.first;
 
-// The total Kashida width.
-DeviceCoordinate nTotalWidth = pKashida.second;
+// The total Kashida width.
+DeviceCoordinate nTotalWidth = pKashida.second;
 
-// Number of times to repeat each Kashida.
-int nCopies = 1;
-if (nTotalWidth > nKashidaWidth)
-nCopies = nTotalWidth / nKashidaWidth;
+// Number of times to repeat each Kashida.
+int nCopies = 1;
+if (nTotalWidth > nKashidaWidth)
+nCopies = nTotalWidth / nKashidaWidth;
 
-// See if we can improve the fit by adding an extra Kashidas and
-// squeezing them together a bit.
-DeviceCoordinate nOverlap = 0;
-DeviceCoordinate nShortfall = nTotalWidth - nKashidaWidth * 
nCopies;
-if (nShortfall > 0)
-{
-++nCopies;
-DeviceCoordinate nExcess = nCopies * nKashidaWidth - 
nTotalWidth;
-if (nExcess > 0)
-nOverlap = nExcess / (nCopies - 1);
-}
+// See if we can improve the fit by adding an extra Kashidas and
+// squeezing them together a bit.
+DeviceCoordinate nOverlap = 0;
+DeviceCoordinate nShortfall = nTotalWidth - nKashidaWidth * nCopies;
+if (nShortfall > 0)
+{
+++nCopies;
+DeviceCoordinate nExcess = nCopies * nKashidaWidth - nTotalWidth;
+if (nExcess > 0)
+nOverlap = nExcess / (nCopies - 1);
+}
 
-Point aPos(pGlyphIter->m_aLinearPos.getX() - nTotalWidth, 0);
-int nCharPos = pGlyphIter->charPos();
-GlyphItemFlags const nFlags = GlyphItemFlags::IS_IN_CLUSTER | 
GlyphItemFlags::IS_RTL_GLYPH;
-while (nCopies--)
-{
-GlyphItem aKashida(nCharPos, 0, nKashidaIndex, aPos, nFlags, 
nKashidaWidth, 0, ());
-pGlyphIter = m_GlyphItems.Impl()->insert(pGlyphIter, aKashida);
-aPos.AdjustX(nKashidaWidth );
-aPos.AdjustX( -nOverlap );
-++pGlyphIter;
-++nInserted;
-}
+Point aPos(pGlyphIter->m_aLinearPos.getX() - nTotalWidth, 0);
+int nCharPos = pGlyphIter->charPos();
+GlyphItemFlags const nFlags = GlyphItemFlags::IS_IN_CLUSTER | 
GlyphItemFlags::IS_RTL_GLYPH;
+while (nCopies--)
+{
+GlyphItem aKashida(nCharPos, 0, nKashidaIndex, aPos, nFlags, 

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

2020-08-03 Thread Noel Grandin (via logerrit)
 vcl/source/window/NotebookBarAddonsMerger.cxx |   55 +-
 vcl/source/window/brdwin.cxx  |   50 +-
 vcl/source/window/builder.cxx |   18 
 vcl/source/window/clipping.cxx|   54 +-
 vcl/source/window/cursor.cxx  |  149 +++
 vcl/source/window/dockingarea.cxx |  142 +++---
 vcl/source/window/dockmgr.cxx |  332 +++
 vcl/source/window/dockwin.cxx |  388 +-
 vcl/source/window/event.cxx   |   20 
 vcl/source/window/floatwin.cxx|   32 -
 vcl/source/window/layout.cxx  |  240 +--
 vcl/source/window/menu.cxx|  218 +-
 vcl/source/window/menubarwindow.cxx   |  196 -
 vcl/source/window/menufloatingwindow.cxx  |  226 +-
 vcl/source/window/mouse.cxx   |   71 +--
 vcl/source/window/paint.cxx   |  114 ++---
 vcl/source/window/printdlg.cxx|  152 +++
 vcl/source/window/scrwnd.cxx  |   28 -
 vcl/source/window/seleng.cxx  |   30 -
 vcl/source/window/split.cxx   |   28 -
 vcl/source/window/splitwin.cxx|  136 +++---
 vcl/source/window/stacking.cxx|  252 ++--
 vcl/source/window/status.cxx  |  232 +--
 vcl/source/window/syswin.cxx  |  102 ++--
 vcl/source/window/tabpage.cxx |   30 -
 vcl/source/window/taskpanelist.cxx|   54 +-
 vcl/source/window/toolbox.cxx |  218 +-
 vcl/source/window/toolbox2.cxx|  545 --
 vcl/source/window/window.cxx  |  422 ++--
 vcl/source/window/window2.cxx |  100 ++--
 vcl/source/window/winproc.cxx |   84 ++--
 vcl/source/window/wrkwin.cxx  |   26 -
 32 files changed, 2372 insertions(+), 2372 deletions(-)

New commits:
commit ce47b1a9c68a27fc37594148f6be2661f27120ea
Author: Noel Grandin 
AuthorDate: Tue Aug 4 00:04:11 2020 +0200
Commit: Noel Grandin 
CommitDate: Tue Aug 4 01:41:02 2020 +0200

loplugin:flatten in vcl/window

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

diff --git a/vcl/source/window/NotebookBarAddonsMerger.cxx 
b/vcl/source/window/NotebookBarAddonsMerger.cxx
index 1c042017a3fc..c8c3c4bd2288 100644
--- a/vcl/source/window/NotebookBarAddonsMerger.cxx
+++ b/vcl/source/window/NotebookBarAddonsMerger.cxx
@@ -72,39 +72,38 @@ static void CreateNotebookBarToolBox(vcl::Window* 
pNotebookbarToolBox,
 {
 sal_uInt16 nItemId = 0;
 ToolBox* pToolbox = dynamic_cast(pNotebookbarToolBox);
-if (pToolbox)
+if (!pToolbox)
+return;
+
+pToolbox->InsertSeparator();
+pToolbox->Show();
+Size aSize(0, 0);
+Image sImage;
+pToolbox->InsertItem(aAddonNotebookBarItem.sCommandURL, m_xFrame, 
ToolBoxItemBits::NONE, aSize);
+nItemId = pToolbox->GetItemId(aAddonNotebookBarItem.sCommandURL);
+pToolbox->SetItemCommand(nItemId, aAddonNotebookBarItem.sCommandURL);
+pToolbox->SetQuickHelpText(nItemId, aAddonNotebookBarItem.sLabel);
+
+if (nIter < aImageVec.size())
 {
-pToolbox->InsertSeparator();
-pToolbox->Show();
-Size aSize(0, 0);
-Image sImage;
-pToolbox->InsertItem(aAddonNotebookBarItem.sCommandURL, m_xFrame, 
ToolBoxItemBits::NONE,
- aSize);
-nItemId = pToolbox->GetItemId(aAddonNotebookBarItem.sCommandURL);
-pToolbox->SetItemCommand(nItemId, aAddonNotebookBarItem.sCommandURL);
-pToolbox->SetQuickHelpText(nItemId, aAddonNotebookBarItem.sLabel);
-
-if (nIter < aImageVec.size())
+sImage = aImageVec[nIter];
+if (!sImage)
 {
-sImage = aImageVec[nIter];
-if (!sImage)
-{
-sImage = vcl::CommandInfoProvider::GetImageForCommand(
-aAddonNotebookBarItem.sImageIdentifier, m_xFrame);
-}
+sImage = vcl::CommandInfoProvider::GetImageForCommand(
+aAddonNotebookBarItem.sImageIdentifier, m_xFrame);
 }
+}
 
-if (aAddonNotebookBarItem.sStyle == STYLE_TEXT)
-pToolbox->SetItemText(nItemId, aAddonNotebookBarItem.sLabel);
-else if (aAddonNotebookBarItem.sStyle == STYLE_ICON)
-pToolbox->SetItemImage(nItemId, sImage);
-else
-{
-pToolbox->SetItemText(nItemId, aAddonNotebookBarItem.sLabel);
-pToolbox->SetItemImage(nItemId, sImage);
-}
-pToolbox->Show();
+if (aAddonNotebookBarItem.sStyle == STYLE_TEXT)
+pToolbox->SetItemText(nItemId, aAddonNotebookBarItem.sLabel);
+else if (aAddonNotebookBarItem.sStyle 

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

2020-08-03 Thread Noel Grandin (via logerrit)
 vcl/unx/generic/app/i18n_ic.cxx |   86 +-
 vcl/unx/generic/app/i18n_im.cxx |   44 -
 vcl/unx/generic/app/randrwrapper.cxx|   68 +-
 vcl/unx/generic/app/saldata.cxx |   58 -
 vcl/unx/generic/app/saldisp.cxx |  154 ++---
 vcl/unx/generic/app/sm.cxx  |   50 -
 vcl/unx/generic/app/wmadaptor.cxx   |  712 
 vcl/unx/generic/dtrans/X11_droptarget.cxx   |   42 -
 vcl/unx/generic/dtrans/X11_selection.cxx|  296 -
 vcl/unx/generic/dtrans/bmp.cxx  |   28 
 vcl/unx/generic/fontmanager/fontconfig.cxx  |   24 
 vcl/unx/generic/fontmanager/helper.cxx  |   24 
 vcl/unx/generic/gdi/gdiimpl.cxx |  135 ++--
 vcl/unx/generic/gdi/salbmp.cxx  |   31 -
 vcl/unx/generic/gdi/salgdi.cxx  |   24 
 vcl/unx/generic/glyphs/freetype_glyphcache.cxx  |   30 -
 vcl/unx/generic/print/common_gfx.cxx|  116 +--
 vcl/unx/generic/print/genprnpsp.cxx |   56 -
 vcl/unx/generic/print/prtsetup.cxx  |   68 +-
 vcl/unx/generic/printer/cupsmgr.cxx |   22 
 vcl/unx/generic/printer/jobdata.cxx |   30 -
 vcl/unx/generic/printer/ppdparser.cxx   |  159 ++---
 vcl/unx/generic/window/salframe.cxx |  320 +-
 vcl/unx/generic/window/screensaverinhibitor.cxx |   24 
 vcl/unx/gtk3/a11y/gtk3atklistener.cxx   |  100 +--
 vcl/unx/gtk3/a11y/gtk3atkutil.cxx   |   44 -
 vcl/unx/gtk3/gtk3gloactiongroup.cxx |   36 -
 vcl/unx/gtk3/gtk3gtkframe.cxx   |  434 +++---
 vcl/unx/gtk3/gtk3gtkinst.cxx|  222 +++
 vcl/unx/gtk3/gtk3gtkobject.cxx  |   58 -
 vcl/unx/gtk3/gtk3gtksalmenu.cxx |   38 -
 vcl/unx/gtk3/gtk3salnativewidgets-gtk.cxx   |   42 -
 vcl/unx/gtk3/gtk3salprn-gtk.cxx |   68 +-
 33 files changed, 1824 insertions(+), 1819 deletions(-)

New commits:
commit 6fc2a300ad8b1c6936b513eff94fd527ea74b469
Author: Noel Grandin 
AuthorDate: Mon Aug 3 23:52:11 2020 +0200
Commit: Noel Grandin 
CommitDate: Tue Aug 4 01:40:45 2020 +0200

loplugin:flatten in vcl/unx

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

diff --git a/vcl/unx/generic/app/i18n_ic.cxx b/vcl/unx/generic/app/i18n_ic.cxx
index 6f94fe938818..8f1a814233ea 100644
--- a/vcl/unx/generic/app/i18n_ic.cxx
+++ b/vcl/unx/generic/app/i18n_ic.cxx
@@ -363,23 +363,23 @@ SalI18N_InputContext::Unmap()
 void
 SalI18N_InputContext::Map( SalFrame *pFrame )
 {
-if( mbUseable )
+if( !mbUseable )
+return;
+
+if( !pFrame )
+return;
+
+if ( maContext == nullptr )
 {
-if( pFrame )
-{
-if ( maContext == nullptr )
-{
-SalI18N_InputMethod *pInputMethod;
-pInputMethod = 
vcl_sal::getSalDisplay(GetGenericUnixSalData())->GetInputMethod();
+SalI18N_InputMethod *pInputMethod;
+pInputMethod = 
vcl_sal::getSalDisplay(GetGenericUnixSalData())->GetInputMethod();
 
-maContext = XCreateIC( pInputMethod->GetMethod(),
-   XNVaNestedList, mpAttributes,
-   nullptr );
-}
-if( maClientData.pFrame != pFrame )
-SetICFocus( pFrame );
-}
+maContext = XCreateIC( pInputMethod->GetMethod(),
+   XNVaNestedList, mpAttributes,
+   nullptr );
 }
+if( maClientData.pFrame != pFrame )
+SetICFocus( pFrame );
 }
 
 // Handle DestroyCallbacks
@@ -541,28 +541,28 @@ SalI18N_InputContext::UpdateSpotLocation()
 void
 SalI18N_InputContext::SetICFocus( SalFrame* pFocusFrame )
 {
-if ( mbUseable && (maContext != nullptr)  )
-{
-maClientData.pFrame = pFocusFrame;
+if ( !(mbUseable && (maContext != nullptr))  )
+return;
 
-const SystemEnvData* pEnv   = pFocusFrame->GetSystemData();
-::Window  aClientWindow  = pEnv->aShellWindow;
-::Window  aFocusWindow   = pEnv->aWindow;
+maClientData.pFrame = pFocusFrame;
 
-XSetICValues( maContext,
-  XNFocusWindow,   aFocusWindow,
-  XNClientWindow,  aClientWindow,
-  nullptr );
+const SystemEnvData* pEnv   = pFocusFrame->GetSystemData();
+::Window  aClientWindow  = pEnv->aShellWindow;
+::Window  aFocusWindow   = pEnv->aWindow;
 
-if( maClientData.aInputEv.mpTextAttr )
-{
-sendEmptyCommit(pFocusFrame);
-// begin preedit again
-
vcl_sal::getSalDisplay(GetGenericUnixSalData())->SendInternalEvent( 
pFocusFrame, , SalEvent::ExtTextInput );
-

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

2020-08-03 Thread Noel Grandin (via logerrit)
 sc/qa/unit/parallelism.cxx|   17 
 sc/qa/unit/range.cxx  |1 
 sc/qa/unit/rangelst_test.cxx  |1 
 toolkit/source/awt/vclxaccessiblecomponent.cxx|   38 
 toolkit/source/awt/vclxgraphics.cxx   |  108 -
 toolkit/source/awt/vclxmenu.cxx   |  126 -
 toolkit/source/awt/vclxspinbutton.cxx |   76 
 toolkit/source/awt/vclxtabpagecontainer.cxx   |   26 
 toolkit/source/awt/vclxtoolkit.cxx|  110 -
 toolkit/source/awt/vclxwindow.cxx |  241 +-
 toolkit/source/awt/vclxwindows.cxx| 1538 +-
 toolkit/source/controls/controlmodelcontainerbase.cxx |  120 -
 toolkit/source/controls/dialogcontrol.cxx |   97 -
 toolkit/source/controls/roadmapcontrol.cxx|   28 
 toolkit/source/controls/tree/treedatamodel.cxx|   60 
 toolkit/source/controls/unocontrol.cxx|   54 
 toolkit/source/controls/unocontrolbase.cxx|   56 
 toolkit/source/controls/unocontrolcontainer.cxx   |   80 
 toolkit/source/controls/unocontrolmodel.cxx   |  172 +-
 toolkit/source/controls/unocontrols.cxx   |  164 -
 toolkit/source/helper/unowrapper.cxx  |   22 
 21 files changed, 1565 insertions(+), 1570 deletions(-)

New commits:
commit 714d907d304fae5cc8613eced127060199639af6
Author: Noel Grandin 
AuthorDate: Mon Aug 3 23:36:47 2020 +0200
Commit: Noel Grandin 
CommitDate: Tue Aug 4 01:40:24 2020 +0200

loplugin:flatten in toolkit

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

diff --git a/toolkit/source/awt/vclxaccessiblecomponent.cxx 
b/toolkit/source/awt/vclxaccessiblecomponent.cxx
index b046e9280768..b70a0dbb9bfc 100644
--- a/toolkit/source/awt/vclxaccessiblecomponent.cxx
+++ b/toolkit/source/awt/vclxaccessiblecomponent.cxx
@@ -352,28 +352,28 @@ VclPtr VCLXAccessibleComponent::GetWindow() 
const
 void VCLXAccessibleComponent::FillAccessibleRelationSet( 
utl::AccessibleRelationSetHelper& rRelationSet )
 {
 VclPtr pWindow = GetWindow();
-if ( pWindow )
+if ( !pWindow )
+return;
+
+vcl::Window *pLabeledBy = pWindow->GetAccessibleRelationLabeledBy();
+if ( pLabeledBy && pLabeledBy != pWindow )
 {
-vcl::Window *pLabeledBy = pWindow->GetAccessibleRelationLabeledBy();
-if ( pLabeledBy && pLabeledBy != pWindow )
-{
-uno::Sequence< uno::Reference< uno::XInterface > > aSequence { 
pLabeledBy->GetAccessible() };
-rRelationSet.AddRelation( accessibility::AccessibleRelation( 
accessibility::AccessibleRelationType::LABELED_BY, aSequence ) );
-}
+uno::Sequence< uno::Reference< uno::XInterface > > aSequence { 
pLabeledBy->GetAccessible() };
+rRelationSet.AddRelation( accessibility::AccessibleRelation( 
accessibility::AccessibleRelationType::LABELED_BY, aSequence ) );
+}
 
-vcl::Window* pLabelFor = pWindow->GetAccessibleRelationLabelFor();
-if ( pLabelFor && pLabelFor != pWindow )
-{
-uno::Sequence< uno::Reference< uno::XInterface > > aSequence { 
pLabelFor->GetAccessible() };
-rRelationSet.AddRelation( accessibility::AccessibleRelation( 
accessibility::AccessibleRelationType::LABEL_FOR, aSequence ) );
-}
+vcl::Window* pLabelFor = pWindow->GetAccessibleRelationLabelFor();
+if ( pLabelFor && pLabelFor != pWindow )
+{
+uno::Sequence< uno::Reference< uno::XInterface > > aSequence { 
pLabelFor->GetAccessible() };
+rRelationSet.AddRelation( accessibility::AccessibleRelation( 
accessibility::AccessibleRelationType::LABEL_FOR, aSequence ) );
+}
 
-vcl::Window* pMemberOf = pWindow->GetAccessibleRelationMemberOf();
-if ( pMemberOf && pMemberOf != pWindow )
-{
-uno::Sequence< uno::Reference< uno::XInterface > > aSequence { 
pMemberOf->GetAccessible() };
-rRelationSet.AddRelation( accessibility::AccessibleRelation( 
accessibility::AccessibleRelationType::MEMBER_OF, aSequence ) );
-}
+vcl::Window* pMemberOf = pWindow->GetAccessibleRelationMemberOf();
+if ( pMemberOf && pMemberOf != pWindow )
+{
+uno::Sequence< uno::Reference< uno::XInterface > > aSequence { 
pMemberOf->GetAccessible() };
+rRelationSet.AddRelation( accessibility::AccessibleRelation( 
accessibility::AccessibleRelationType::MEMBER_OF, aSequence ) );
 }
 }
 
diff --git a/toolkit/source/awt/vclxgraphics.cxx 
b/toolkit/source/awt/vclxgraphics.cxx
index 9fcb527a0970..958817053663 100644
--- a/toolkit/source/awt/vclxgraphics.cxx
+++ b/toolkit/source/awt/vclxgraphics.cxx
@@ -98,30 +98,30 @@ void VCLXGraphics::initAttrs()
 
 void VCLXGraphics::InitOutputDevice( InitOutDevFlags 

[Libreoffice-bugs] [Bug 135424] New: FILESAFE XLSX The file in the package for the chart has no stable filename

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

Bug ID: 135424
   Summary: FILESAFE XLSX The file in the package for the chart
has no stable filename
   Product: LibreOffice
   Version: 7.1.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Chart
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rb.hensc...@t-online.de

Created attachment 163914
  --> https://bugs.documentfoundation.org/attachment.cgi?id=163914=edit
Spreadsheet with chart to test saving

Open attached document.
Save it in xlsx-format with new name.
Save it a second time with new name.
Open the packages and find the folder /xl/charts.
In one case you will see a file "chart1.xml" in the other case a file
"chart2.xml".

So the name depends on whether the file had been saved before. Such behavior
hinders unit tests and evaluation of the file by programs.

The reason of this wrong behavior has been discussed in
https://lists.freedesktop.org/archives/libreoffice/2020-July/085613.html

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


Simulated Animation Effects - Week 9 Report

2020-08-03 Thread Sarper Akdemir
Hello everyone,

Last week I worked mainly on representing complex shapes in the
simulation world.
You can check the report on:
https://quwex.com/gsoc20-week9/

Best regards,
Sarper Akdemir
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] online.git: loleaflet/src

2020-08-03 Thread Henry Castro (via logerrit)
 loleaflet/src/control/Ruler.js |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

New commits:
commit 948e21a52d058f9d2a5826ff21bc755224cda587
Author: Henry Castro 
AuthorDate: Mon Aug 3 09:46:00 2020 -0400
Commit: Henry Castro 
CommitDate: Tue Aug 4 00:32:03 2020 +0200

loleaflet: remove more unnecessary jquery dependency

simplify and get rid of jquery dependency

Change-Id: Iebdf641e24eb6bd4e2e9c4b8692febc1c49e97c6
Reviewed-on: https://gerrit.libreoffice.org/c/online/+/15
Tested-by: Jenkins
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Henry Castro 

diff --git a/loleaflet/src/control/Ruler.js b/loleaflet/src/control/Ruler.js
index 9292cc225..bcca9e186 100644
--- a/loleaflet/src/control/Ruler.js
+++ b/loleaflet/src/control/Ruler.js
@@ -294,7 +294,9 @@ L.Control.Ruler = L.Control.extend({
 
var numCounter = -1 * parseInt(lMargin / 1000);
 
-   $('.loleaflet-ruler-maj').remove();
+   while (this._rBPContainer.hasChildNodes()) {
+   
this._rBPContainer.removeChild(this._rBPContainer.lastChild);
+   }
 
// this.options.pageWidth is in mm100, so the code here makes 
one ruler division per
// centimetre.
@@ -317,11 +319,9 @@ L.Control.Ruler = L.Control.extend({
 
// The tabstops. Only draw user-created ones, with style 
RULER_TAB_LEFT,
// RULER_TAB_RIGHT, RULER_TAB_CENTER, and RULER_TAB_DECIMAL. 
See .
-
-   $('.loleaflet-ruler-tabstop-left').remove();
-   $('.loleaflet-ruler-tabstop-right').remove();
-   $('.loleaflet-ruler-tabstop-center').remove();
-   $('.loleaflet-ruler-tabstop-decimal').remove();
+   while (this._rTSContainer.hasChildNodes()) {
+   
this._rTSContainer.removeChild(this._rTSContainer.lastChild);
+   }
 
var pxPerMm100 = this._map._docLayer._docPixelSize.x / 
(this._map._docLayer._docWidthTwips * 2540/1440);
this._rTSContainer.tabStops = [];
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] online.git: loleaflet/src

2020-08-03 Thread Henry Castro (via logerrit)
 loleaflet/src/control/Ruler.js |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d97f8a6bb4540a6c37e8434ea78e51ab94bd12ee
Author: Henry Castro 
AuthorDate: Fri Jul 31 17:23:49 2020 -0400
Commit: Henry Castro 
CommitDate: Tue Aug 4 00:26:38 2020 +0200

loleaflet: change event listener to "moveend"

When the pane element translation3D is modifying
the "moveend" is fired, which is required to compute
the ruler offset.

Change-Id: I1388b44c041563a504de9a47011bfac2b3138679
Reviewed-on: https://gerrit.libreoffice.org/c/online/+/99908
Tested-by: Jenkins
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Henry Castro 

diff --git a/loleaflet/src/control/Ruler.js b/loleaflet/src/control/Ruler.js
index 6ec7c7029..9292cc225 100644
--- a/loleaflet/src/control/Ruler.js
+++ b/loleaflet/src/control/Ruler.js
@@ -26,7 +26,7 @@ L.Control.Ruler = L.Control.extend({
map.on('rulerupdate', this._updateOptions, this);
map.on('tabstoplistupdate', this._updateTabStops, this);
map.on('docsize', this._updatePaintTimer, this);
-   map.on('scrolloffset resize', this._fixOffset, this);
+   map.on('moveend', this._fixOffset, this);
map.on('updatepermission', this._changeInteractions, this);
L.DomUtil.addClass(map.getContainer(), 'hasruler');
this._map = map;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] online.git: loleaflet/src

2020-08-03 Thread Henry Castro (via logerrit)
 loleaflet/src/control/Ruler.js |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 349b2f7eb607b76d655c75b8fbfa133ddc879302
Author: Henry Castro 
AuthorDate: Fri Jul 31 17:14:13 2020 -0400
Commit: Henry Castro 
CommitDate: Tue Aug 4 00:26:14 2020 +0200

loleaflet: remove unnecessary function dependency ...

of the "jquery" library

Change-Id: Id4a2c0171d09320178d900df0339b4b8245fc3da
Reviewed-on: https://gerrit.libreoffice.org/c/online/+/99906
Tested-by: Jenkins CollaboraOffice 
Tested-by: Jenkins
Reviewed-by: Henry Castro 

diff --git a/loleaflet/src/control/Ruler.js b/loleaflet/src/control/Ruler.js
index 79c89ae37..6ec7c7029 100644
--- a/loleaflet/src/control/Ruler.js
+++ b/loleaflet/src/control/Ruler.js
@@ -28,7 +28,7 @@ L.Control.Ruler = L.Control.extend({
map.on('docsize', this._updatePaintTimer, this);
map.on('scrolloffset resize', this._fixOffset, this);
map.on('updatepermission', this._changeInteractions, this);
-   $('#map').addClass('hasruler');
+   L.DomUtil.addClass(map.getContainer(), 'hasruler');
this._map = map;
 
return this._initLayout();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 133206] UI: Closing a style dialog by pressing OK changes the focus in the styles sidebar to the active style where the cursor stands

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

--- Comment #9 from Telesto  ---
*** Bug 133468 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 107326] [META] Writer style bugs and enhancements

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

Bug 133468 Summary: LO goes back automatically to paragraph styles instead of 
staying on frames styles after pressnig OK
https://bugs.documentfoundation.org/show_bug.cgi?id=133468

   What|Removed |Added

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

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


[Libreoffice-ux-advise] [Bug 133206] UI: Closing a style dialog by pressing OK changes the focus in the styles sidebar to the active style where the cursor stands

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

--- Comment #9 from Telesto  ---
*** Bug 133468 has been marked as a duplicate of this bug. ***

-- 
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 133468] LO goes back automatically to paragraph styles instead of staying on frames styles after pressnig OK

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

Telesto  changed:

   What|Removed |Added

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

--- Comment #6 from Telesto  ---
(In reply to Thomas Lendo from comment #5)
> In principle the same root cause as described in bug 133206.

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

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


[Libreoffice-bugs] [Bug 135287] The Time Control no longer supports 12-hour times through TimeFormat

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

atem...@rogers.com changed:

   What|Removed |Added

 CC||atem...@rogers.com

--- Comment #2 from atem...@rogers.com ---
Created attachment 163913
  --> https://bugs.documentfoundation.org/attachment.cgi?id=163913=edit
An ewxample tghat shows that TimeForamt does not work on my Libre installation

I've added a few images of what's happening on my machine to better illustrate
the problem. I hope that helps.

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


[Libreoffice-bugs] [Bug 133468] LO goes back automatically to paragraph styles instead of staying on frames styles after pressnig OK

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

Thomas Lendo  changed:

   What|Removed |Added

 CC||thomas.le...@gmail.com
 Blocks||107326

--- Comment #5 from Thomas Lendo  ---
In principle the same root cause as described in bug 133206.


Referenced Bugs:

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

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||133468


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=133468
[Bug 133468] LO goes back automatically to paragraph styles instead of staying
on frames styles after pressnig OK
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107326] [META] Writer style bugs and enhancements

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||133206


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=133206
[Bug 133206] UI: Closing a style dialog by pressing OK changes the focus in the
styles sidebar to the active style where the cursor stands
-- 
You are receiving this mail because:
You 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 133206] UI: Closing a style dialog by pressing OK changes the focus in the styles sidebar to the active style where the cursor stands

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

Thomas Lendo  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||thomas.le...@gmail.com
Summary|UI: Closing a dialog by |UI: Closing a style dialog
   |pressing OK changes the |by pressing OK changes the
   |focus in the style dialog   |focus in the styles sidebar
   |to  Default paragraph style |to the active style where
   ||the cursor stands
 Blocks||107326

--- Comment #8 from Thomas Lendo  ---
This is a general question how to solve such things and what do users expect.

First, the behavior is not consistent between style types and LibO components.
I could reproduce this issue with Calc and Draw a few times but very rare. Also
in Writer it's not always true.

Second, the focus moves to the style that is active for the text/object where
the cursor stands. If your cursor is in a text that is formatted with paragraph
style Endnote and character style Emphasis and you edit another
paragraph/character style, then the focus goes back to Endnote (paragraph) or
Emphasis (character) style in the styles sidebar.

This isn't bad by design as this is the normal behavior of the styles sidebar
items: highlighting the style where the cursor stands. This could be changed
to: If the user selects another style (by right or left mouse click or
keyboard) then this style should be selected until the user selects another
style or the user changes the cursor position. Then the style will be selected
in the styles sidebar that corresponds with the text/object.

Ideally this behavior should be the same in all LibO components.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107326
[Bug 107326] [META] Writer style bugs and enhancements
-- 
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 133206] UI: Closing a style dialog by pressing OK changes the focus in the styles sidebar to the active style where the cursor stands

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

Thomas Lendo  changed:

   What|Removed |Added

 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||thomas.le...@gmail.com
Summary|UI: Closing a dialog by |UI: Closing a style dialog
   |pressing OK changes the |by pressing OK changes the
   |focus in the style dialog   |focus in the styles sidebar
   |to  Default paragraph style |to the active style where
   ||the cursor stands
 Blocks||107326

--- Comment #8 from Thomas Lendo  ---
This is a general question how to solve such things and what do users expect.

First, the behavior is not consistent between style types and LibO components.
I could reproduce this issue with Calc and Draw a few times but very rare. Also
in Writer it's not always true.

Second, the focus moves to the style that is active for the text/object where
the cursor stands. If your cursor is in a text that is formatted with paragraph
style Endnote and character style Emphasis and you edit another
paragraph/character style, then the focus goes back to Endnote (paragraph) or
Emphasis (character) style in the styles sidebar.

This isn't bad by design as this is the normal behavior of the styles sidebar
items: highlighting the style where the cursor stands. This could be changed
to: If the user selects another style (by right or left mouse click or
keyboard) then this style should be selected until the user selects another
style or the user changes the cursor position. Then the style will be selected
in the styles sidebar that corresponds with the text/object.

Ideally this behavior should be the same in all LibO components.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107326
[Bug 107326] [META] Writer style 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 107332] [META] Calc cell and page styles bugs and enhancements

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||122593


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=122593
[Bug 122593] UI: Focus off. Not able to enter the style name immediately after
style creating
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 122593] UI: Focus off. Not able to enter the style name immediately after style creating

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

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||107332


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107332
[Bug 107332] [META] Calc cell and page styles 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


  1   2   3   4   5   >