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

2020-08-14 Thread Caolán McNamara (via logerrit)
 extensions/source/propctrlr/standardcontrol.cxx |8 ++--
 vcl/source/window/builder.cxx   |7 ++-
 2 files changed, 12 insertions(+), 3 deletions(-)

New commits:
commit 4acf7b7b03ed62cbea2b738c9dcfe3a8bdb36288
Author: Caolán McNamara 
AuthorDate: Fri Aug 14 10:29:30 2020 +0100
Commit: Adolfo Jayme Barrientos 
CommitDate: Sat Aug 15 07:38:00 2020 +0200

tdf#135526 ranges overflowing to become negative

the properties panel uses huge min/maxes which can overflow
when the number of digits changes

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

diff --git a/extensions/source/propctrlr/standardcontrol.cxx 
b/extensions/source/propctrlr/standardcontrol.cxx
index dc1891eab122..a9b422440932 100644
--- a/extensions/source/propctrlr/standardcontrol.cxx
+++ b/extensions/source/propctrlr/standardcontrol.cxx
@@ -327,9 +327,13 @@ namespace pcr
 return getTypedControlWindow()->get_digits();
 }
 
-void SAL_CALL ONumericControl::setDecimalDigits( ::sal_Int16 
_decimaldigits )
+void SAL_CALL ONumericControl::setDecimalDigits( ::sal_Int16 decimaldigits 
)
 {
-getTypedControlWindow()->set_digits( _decimaldigits );
+weld::MetricSpinButton* pControlWindow = getTypedControlWindow();
+int min, max;
+pControlWindow->get_range(min, max, FieldUnit::NONE);
+pControlWindow->set_digits(decimaldigits);
+pControlWindow->set_range(min, max, FieldUnit::NONE);
 }
 
 Optional< double > SAL_CALL ONumericControl::getMinValue()
diff --git a/vcl/source/window/builder.cxx b/vcl/source/window/builder.cxx
index d15d3e668937..14d6cdeed6ce 100644
--- a/vcl/source/window/builder.cxx
+++ b/vcl/source/window/builder.cxx
@@ -321,7 +321,12 @@ namespace weld
 
 int MetricSpinButton::ConvertValue(int nValue, FieldUnit eInUnit, 
FieldUnit eOutUnit) const
 {
-return vcl::ConvertValue(nValue, 0, m_xSpinButton->get_digits(), 
eInUnit, eOutUnit);
+auto nRet = vcl::ConvertValue(nValue, 0, m_xSpinButton->get_digits(), 
eInUnit, eOutUnit);
+if (nRet > SAL_MAX_INT32)
+nRet = SAL_MAX_INT32;
+else if (nRet < SAL_MIN_INT32)
+nRet = SAL_MIN_INT32;
+return nRet;
 }
 
 IMPL_LINK(MetricSpinButton, spin_button_input, int*, result, bool)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 134202] Crash upon deleting a heading in a specific document

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

Buovjaga  changed:

   What|Removed |Added

   Severity|normal  |critical
   Priority|medium  |high
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 135641] ListBox in a table control - can't write into the cell without using the mouse

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

QA Administrators  changed:

   What|Removed |Added

   Keywords||bibisectRequest

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


[Libreoffice-bugs] [Bug 134836] Writer Print Function Shows Three Page Sizes

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

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 135337] The «Tab» key and Alt-Underlined key shortcuts do not work as expected in the «Hyperlink» dialogue of Calc

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

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 135534] [EDITING] Can't undo (ctrl+z) picture position change in xls/xlsx files.

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

--- 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 81593] Regression: thumbnails in gallery have poor resolution and excessive enlargement when the vector source has small dimensions

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

QA Administrators  changed:

   What|Removed |Added

   Keywords||bibisectRequest

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


[Libreoffice-bugs] [Bug 134314] Auto Complete does weird stuff when comes to Umlauts in German Version 6.4.4.2

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

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-14 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=134933

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

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


[Libreoffice-bugs] [Bug 134836] Writer Print Function Shows Three Page Sizes

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

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 135534] [EDITING] Can't undo (ctrl+z) picture position change in xls/xlsx files.

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

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 134836] Writer Print Function Shows Three Page Sizes

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

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

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


[Libreoffice-bugs] [Bug 134116] LibO Writer 6.4.4 crashes with serial correspondence

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

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

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

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 130018] Space in the word York as Y ork in Calc, using Arial font

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

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

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 97783] FILESAVE Auto numbering in merged cell work incorrectly when saved as DOC

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

--- Comment #6 from QA Administrators  ---
Dear Andrew,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 130036] Crash writer when type Ctrl+f2

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

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

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 125431] An unwanted image is corrupting .pdf conversion

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

--- Comment #14 from QA Administrators  ---
Dear 510jrb2301,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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


[Libreoffice-bugs] [Bug 134116] LibO Writer 6.4.4 crashes with serial correspondence

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

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

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


[Libreoffice-bugs] [Bug 130036] Crash writer when type Ctrl+f2

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

QA Administrators  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 130018] Space in the word York as Y ork in Calc, using Arial font

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

QA Administrators  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 130033] LibreOffice Stalls When Opening - Refuses To Work

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

QA Administrators  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 130033] LibreOffice Stalls When Opening - Refuses To Work

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

--- Comment #3 from QA Administrators  ---
Dear Payroo Support,

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 73668] text not rendered fully (cut off) when editing 90deg rotated rectangle

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

--- Comment #5 from QA Administrators  ---
Dear Michael Stahl,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 135778] New: bug in rtl text

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

Bug ID: 135778
   Summary: bug in rtl text
   Product: LibreOffice
   Version: 7.0.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bocedoc...@brosj.net

Created attachment 164326
  --> https://bugs.documentfoundation.org/attachment.cgi?id=164326=edit
Example Text and Font

Some characters are not in their real place if typed in a row (with All
standard Persian fonts "B fontName").

Example:
U+651 and (U+0627 + U+064B)

اتّفاقاً


Also for:
U+651 and (U+0627 + U+064C)
U+651 and (U+0627 + U+064D)


*Please check the Attachment Files

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


[Libreoffice-bugs] [Bug 135777] libreoffice online 7.0.0.2: Many Invalid URI requests after loolwsd launch

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

--- Comment #1 from Hillwood Yang  ---
Created attachment 164325
  --> https://bugs.documentfoundation.org/attachment.cgi?id=164325=edit
loolwsd.xml

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


[Libreoffice-bugs] [Bug 135777] New: libreoffice online 7.0.0.2: Many Invalid URI requests after loolwsd launch

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

Bug ID: 135777
   Summary: libreoffice online 7.0.0.2: Many Invalid URI requests
after loolwsd launch
   Product: LibreOffice Online
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: hillw...@opensuse.org

Created attachment 164324
  --> https://bugs.documentfoundation.org/attachment.cgi?id=164324=edit
rpm spec

I try to build libreoffice online 7.0.0.2 on openSUSE Tumbleweed. The Web
Services Daemon works fine. But css and js resources can not be loaded, they
are all in Invalid URI. The terminal reports me many Invalid URI requests like
this:
kit-08144-07256 2020-08-15 02:56:42.585376 [ kit_spare_002 ] WRN 
Linking/copying files from /usr/lib64/libreoffice to
/var/lib/libreoffice-online/child-roots/ldNyM1hbV3jlAULp/lo/ is taking too much
time. Enabling verbose link/copy logging.| kit/Kit.cpp:264
wsd-07254-08141 2020-08-15 02:56:56.023990 [ websrv_poll ] WRN 
FileServerRequestHandler: File not found: Invalid URI request:
[/loleaflet/7.0.0/bundle.css].| wsd/FileServer.cpp:487
wsd-07254-08141 2020-08-15 02:56:56.544312 [ websrv_poll ] WRN 
FileServerRequestHandler: File not found: Invalid URI request:
[/loleaflet/7.0.0/branding.js].| wsd/FileServer.cpp:487
wsd-07254-08141 2020-08-15 02:56:56.728547 [ websrv_poll ] WRN 
FileServerRequestHandler: File not found: Invalid URI request:
[/loleaflet/7.0.0/branding.css].| wsd/FileServer.cpp:487
wsd-07254-08141 2020-08-15 02:56:56.791324 [ websrv_poll ] WRN 
FileServerRequestHandler: File not found: Invalid URI request:
[/loleaflet/7.0.0/branding.js].| wsd/FileServer.cpp:487
wsd-07254-08141 2020-08-15 02:56:56.798298 [ websrv_poll ] WRN 
FileServerRequestHandler: File not found: Invalid URI request:
[/loleaflet/7.0.0/device-desktop.css].| wsd/FileServer.cpp:487
wsd-07254-08141 2020-08-15 02:56:56.802575 [ websrv_poll ] WRN 
FileServerRequestHandler: File not found: Invalid URI request:
[/loleaflet/7.0.0/branding-desktop.css].| wsd/FileServer.cpp:487
wsd-07254-08141 2020-08-15 02:56:56.870321 [ websrv_poll ] WRN 
FileServerRequestHandler: File not found: Invalid URI request:
[/loleaflet/7.0.0/bundle.js].| wsd/FileServer.cpp:487

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


[Libreoffice-bugs] [Bug 135776] Calc open and close, and report a problem

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

Rafael D  changed:

   What|Removed |Added

Version|unspecified |7.0.0.3 release

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


[Libreoffice-bugs] [Bug 135776] New: Calc open and close, and report a problem

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

Bug ID: 135776
   Summary: Calc open and close, and report a problem
   Product: LibreOffice
   Version: unspecified
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rafaeldel...@gmail.com

Description:
Good Day, I install libreoffice 7 and all the programs run well, but when i
open calc make an error messaje and close. Close every libreoffice aplication
open on the moment.

This is the information:

Application: soffice (soffice), signal: Segmentation fault
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
To enable execution of this file addApplication: soffice (soffice), signal:
Segmentation fault
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
To enable execution of this file add
add-auto-load-safe-path
/opt/libreoffice7.0/program/libpython3.7m.so.1.0-gdb.py
line to your configuration file "/home/rafael/.gdbinit".
To completely disable this security protection add
set auto-load safe-path /
line to your configuration file "/home/rafael/.gdbinit".
For more information about this security protection see the
"Auto-loading safe path" section in the GDB manual.  E.g., run from the shell:
info "(gdb)Auto-loading safe path"
[Current thread is 1 (Thread 0x7fd99a969000 (LWP 4389))]

Thread 4 (Thread 0x7fd97c748700 (LWP 4413)):
#0  futex_abstimed_wait_cancelable (private=,
abstime=0x7fd97c746570, clockid=, expected=0,
futex_word=0x2a21e48) at ../sysdeps/nptl/futex-internal.h:320
#1  __pthread_cond_wait_common (abstime=0x7fd97c746570, clockid=, mutex=0x2a21e50, cond=0x2a21e20) at pthread_cond_wait.c:520
#2  __pthread_cond_timedwait (cond=0x2a21e20, mutex=0x2a21e50,
abstime=0x7fd97c746570) at pthread_cond_wait.c:656
#3  0x7fd9a4e82d48 in osl_waitCondition () from
/opt/libreoffice7.0/program/libuno_sal.so.3
#4  0x7fd9a7dd0391 in ?? () from /opt/libreoffice7.0/program/libmergedlo.so
#5  0x7fd9a61c741a in ?? () from /opt/libreoffice7.0/program/libmergedlo.so
#6  0x7fd9a4e901d9 in ?? () from
/opt/libreoffice7.0/program/libuno_sal.so.3
#7  0x7fd99eb9f609 in start_thread (arg=) at
pthread_create.c:477
#8  0x7fd9a4d61103 in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:95

Thread 3 (Thread 0x7fd98dea2700 (LWP 4405)):
#0  0x7fd9a4d1f361 in __GI___clock_nanosleep (clock_id=clock_id@entry=0,
flags=flags@entry=0, req=0x7fd98dea0540, rem=0x0) at
../sysdeps/unix/sysv/linux/clock_nanosleep.c:48
#1  0x7fd9a4d24eb7 in __GI___nanosleep (requested_time=,
remaining=) at nanosleep.c:27
#2  0x7fd9a4e90699 in osl_waitThread () from
/opt/libreoffice7.0/program/libuno_sal.so.3
#3  0x7fd9a714d37b in ?? () from /opt/libreoffice7.0/program/libmergedlo.so
#4  0x7fd9a0900cb6 in salhelper::Thread::run() () from
/opt/libreoffice7.0/program/libuno_salhelpergcc3.so.3
#5  0x7fd9a0900e9a in ?? () from
/opt/libreoffice7.0/program/libuno_salhelpergcc3.so.3
#6  0x7fd9a4e901d9 in ?? () from
/opt/libreoffice7.0/program/libuno_sal.so.3
#7  0x7fd99eb9f609 in start_thread (arg=) at
pthread_create.c:477
#8  0x7fd9a4d61103 in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:95

Thread 2 (Thread 0x7fd98f478700 (LWP 4403)):
#0  0x7fd9a1d8d742 in g_main_context_prepare () from
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#1  0x7fd9a1d8e0db in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#2  0x7fd9a1d8e2e3 in g_main_context_iteration () from
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#3  0x7fd9995fc583 in
QEventDispatcherGlib::processEvents(QFlags) ()
from /lib/x86_64-linux-gnu/libQt5Core.so.5
#4  0x7fd9995a34db in
QEventLoop::exec(QFlags) () from
/lib/x86_64-linux-gnu/libQt5Core.so.5
#5  0x7fd9993db785 in QThread::exec() () from
/lib/x86_64-linux-gnu/libQt5Core.so.5
#6  0x7fd9980a7efa in ?? () from /lib/x86_64-linux-gnu/libQt5DBus.so.5
#7  0x7fd9993dc9d2 in ?? () from /lib/x86_64-linux-gnu/libQt5Core.so.5
#8  0x7fd99eb9f609 in start_thread (arg=) at
pthread_create.c:477
#9  0x7fd9a4d61103 in clone () at
../sysdeps/unix/sysv/linux/x86_64/clone.S:95

Thread 1 (Thread 0x7fd99a969000 (LWP 4389)):
[KCrash Handler]
#8  0x7fd9a757673f in ?? () from /opt/libreoffice7.0/program/libmergedlo.so
#9  0x7fd9a70c667a in
SfxToolBoxControl::statusChanged(com::sun::star::frame::FeatureStateEvent
coApplication: soffice (soffice), signal: Segmentation fault
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
To enable execution of this file add
add-auto-load-safe-path
/opt/libreoffice7.0/program/libpython3.7m.so.1.0-gdb.py
line to your configuration file "/home/rafael/.gdbinit".
To completely disable this security protection add
set auto-load safe-path /

[Libreoffice-commits] core.git: Branch 'libreoffice-7-0' - icon-themes/colibre icon-themes/colibre_svg

2020-08-14 Thread Rizal Muttaqin (via logerrit)
 icon-themes/colibre/res/lx03245.png |binary
 icon-themes/colibre/res/lx03246.png |binary
 icon-themes/colibre/res/lx03247.png |binary
 icon-themes/colibre/res/lx03248.png |binary
 icon-themes/colibre/res/lx03249.png |binary
 icon-themes/colibre/res/lx03250.png |binary
 icon-themes/colibre/res/lx03251.png |binary
 icon-themes/colibre/res/lx03255.png |binary
 icon-themes/colibre_svg/res/lx03245.svg |1 +
 icon-themes/colibre_svg/res/lx03246.svg |1 +
 icon-themes/colibre_svg/res/lx03247.svg |1 +
 icon-themes/colibre_svg/res/lx03248.svg |1 +
 icon-themes/colibre_svg/res/lx03249.svg |1 +
 icon-themes/colibre_svg/res/lx03250.svg |1 +
 icon-themes/colibre_svg/res/lx03251.svg |1 +
 icon-themes/colibre_svg/res/lx03255.svg |1 +
 16 files changed, 8 insertions(+)

New commits:
commit 88b121d528a2a7b0b437a70cc4b534a53c0d1d87
Author: Rizal Muttaqin 
AuthorDate: Fri Aug 14 14:21:26 2020 +0300
Commit: Rizal Muttaqin 
CommitDate: Sat Aug 15 04:16:05 2020 +0200

Restore required resource in Colibre theme

Regression after 56d5531373cf0588e02c254ea8ffa00221c8342b

The missing "lx03249" caused failure in ImplImage::getSizePixel when
exiting from presentation mode in Impress:

assert(maBitmapChecksum == 0);

when res/lx03249.png couldn't be loaded; the resource is referenced
as BMP_OO_IMPRESS_DOC_LC in svtools/inc/bitmaps.hlst.

Neccessary icons added.

Change-Id: Iab240a4587e1aa1ff44b3478a029756db4b4da43
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100734
Reviewed-by: Mike Kaganski 
Tested-by: Jenkins
(cherry picked from commit 4708fa80ac95f11bfbfd422bec52865a17b46fd9)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100708
Reviewed-by: Rizal Muttaqin 

diff --git a/icon-themes/colibre/res/lx03245.png 
b/icon-themes/colibre/res/lx03245.png
new file mode 100644
index ..c525f1be8cf5
Binary files /dev/null and b/icon-themes/colibre/res/lx03245.png differ
diff --git a/icon-themes/colibre/res/lx03246.png 
b/icon-themes/colibre/res/lx03246.png
new file mode 100644
index ..a79d8cdaa9a5
Binary files /dev/null and b/icon-themes/colibre/res/lx03246.png differ
diff --git a/icon-themes/colibre/res/lx03247.png 
b/icon-themes/colibre/res/lx03247.png
new file mode 100644
index ..b519709ecb92
Binary files /dev/null and b/icon-themes/colibre/res/lx03247.png differ
diff --git a/icon-themes/colibre/res/lx03248.png 
b/icon-themes/colibre/res/lx03248.png
new file mode 100644
index ..2eed96446f0a
Binary files /dev/null and b/icon-themes/colibre/res/lx03248.png differ
diff --git a/icon-themes/colibre/res/lx03249.png 
b/icon-themes/colibre/res/lx03249.png
new file mode 100644
index ..037d68b4de7f
Binary files /dev/null and b/icon-themes/colibre/res/lx03249.png differ
diff --git a/icon-themes/colibre/res/lx03250.png 
b/icon-themes/colibre/res/lx03250.png
new file mode 100644
index ..9b88046ca54c
Binary files /dev/null and b/icon-themes/colibre/res/lx03250.png differ
diff --git a/icon-themes/colibre/res/lx03251.png 
b/icon-themes/colibre/res/lx03251.png
new file mode 100644
index ..e01a9ab638f8
Binary files /dev/null and b/icon-themes/colibre/res/lx03251.png differ
diff --git a/icon-themes/colibre/res/lx03255.png 
b/icon-themes/colibre/res/lx03255.png
new file mode 100644
index ..124a93885b55
Binary files /dev/null and b/icon-themes/colibre/res/lx03255.png differ
diff --git a/icon-themes/colibre_svg/res/lx03245.svg 
b/icon-themes/colibre_svg/res/lx03245.svg
new file mode 100644
index ..60dfb16073ff
--- /dev/null
+++ b/icon-themes/colibre_svg/res/lx03245.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/colibre_svg/res/lx03246.svg 
b/icon-themes/colibre_svg/res/lx03246.svg
new file mode 100644
index ..7d7c3cd4a37e
--- /dev/null
+++ b/icon-themes/colibre_svg/res/lx03246.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
 
\ No newline at end of file
diff --git a/icon-themes/colibre_svg/res/lx03247.svg 
b/icon-themes/colibre_svg/res/lx03247.svg
new file mode 100644
index ..605e1325ea27
--- /dev/null
+++ b/icon-themes/colibre_svg/res/lx03247.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/colibre_svg/res/lx03248.svg 
b/icon-themes/colibre_svg/res/lx03248.svg
new file mode 100644
index ..a71328b590ba
--- /dev/null
+++ b/icon-themes/colibre_svg/res/lx03248.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/colibre_svg/res/lx03249.svg 
b/icon-themes/colibre_svg/res/lx03249.svg
new file mode 100644
index ..9e916c9c4148
--- /dev/null
+++ b/icon-themes/colibre_svg/res/lx03249.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git 

[Libreoffice-bugs] [Bug 135740] tab characters are no longer displayed after upgrading from 6.2

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

--- Comment #4 from Mike Blumenkrantz  ---
Also moving/deleting my libreoffice config has no effect.

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


[Libreoffice-bugs] [Bug 135740] tab characters are no longer displayed after upgrading from 6.2

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

--- Comment #3 from Mike Blumenkrantz  ---
Updated to 6.4.6.2: no change.

Restarted in safe mode: no change.

This isn't specific to .rtf files either, it affects all files.

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


[Libreoffice-bugs] [Bug 115893] LO Base Report Builder Does Not Display CLOB (memo field) Data of External HSQLDB and Firebird (embedded / file)

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

--- Comment #18 from trowelandmatt...@yahoo.co.uk ---
There appears to be no fix for this yet, making design/modification of
databases with data difficult for CLOB types, and especially difficult for
migration to firebird with existing database structures.

Here is my work-around for changing a field to CLOB in existing table with
data:

1: create the new intended CLOB field as VarChar
2: copy the table and data to a spreadsheet
3:copy the spreadsheet
4: paste back into base as new table, and use the dialog to change the VarChar
to CLOB as needed - no other method appears to work :/

NB//
The first attempt may not get all the data copied, AND might rearrange some
columns (!!!)

Fix this by creating new firebird DB (for safety) - then copy original table
there, making sure to use initial dialog to set CLOB - proceed through the many
dialog boxes... (errors and all!) - now delete all the spurious data just
leaving the definitions - note if any column order has changed - now copy the
original data to a spreadsheet, and modify to match any changed columns in new
version - now copy spreadsheet and append to the new table - check it again as
the first row seems to get buggy, but all the other data should be there
...sigh.



Love You Libre! (firebird don't us down now please:)

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


[Libreoffice-bugs] [Bug 135775] New: When entering data in spreadsheet, it is jumping to another cell

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

Bug ID: 135775
   Summary: When entering data in spreadsheet, it is jumping to
another cell
   Product: LibreOffice
   Version: 7.0.0.3 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: b2bs...@gmail.com

is jumping to another cell, no matter if entering number or alpha character.
Has happened 5x in 5 minutes

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


[Libreoffice-bugs] [Bug 81593] Regression: thumbnails in gallery have poor resolution and excessive enlargement when the vector source has small dimensions

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

--- Comment #19 from Regina Henschel  ---
Still a problem in Version: 7.0.0.2 (x64)
Build ID: c01aa64b6c3d89ebe5fe69c28c7adb24eb85249c
CPU threads: 8; OS: Windows 10.0 Build 18362; UI render: Skia/Raster; VCL: win
Locale: de-DE (en_US); UI: en-US
Calc: CL

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


[Libreoffice-bugs] [Bug 108800] [META] Print related issues

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on|80944   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80944
[Bug 80944] 'print to file' setting gets reset after restart
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 102187] [META] Options dialog bugs and enhancements

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||80944


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80944
[Bug 80944] 'print to file' setting gets reset after restart
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 80944] 'print to file' setting gets reset after restart

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

Thomas Lendo  changed:

   What|Removed |Added

 Blocks|108800  |102187

--- Comment #9 from Thomas Lendo  ---
Repro with
Version: 7.1.0.0.alpha0+
CPU threads: 2; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: de-AT (de_AT.UTF-8); UI: en-US
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2020-08-05_04:03:50
Calc: CL


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102187
[Bug 102187] [META] Options dialog bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=108800
[Bug 108800] [META] Print related issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 80944] 'print to file' setting gets reset after restart

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

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||108800


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108800
[Bug 108800] [META] Print related issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108800] [META] Print related issues

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||80944


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80944
[Bug 80944] 'print to file' setting gets reset after restart
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 81593] Regression: thumbnails in gallery have poor resolution and excessive enlargement when the vector source has small dimensions

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

Thomas Lendo  changed:

   What|Removed |Added

   Hardware|Other   |All
   Keywords||regression

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


[Libreoffice-bugs] [Bug 99671] [META] Gallery bugs and enhancements

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||81593


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=81593
[Bug 81593] Regression: thumbnails in gallery have poor resolution and
excessive enlargement when the vector source has small dimensions
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 81593] Regression: thumbnails in gallery have poor resolution and excessive enlargement when the vector source has small dimensions

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

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||99671


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=99671
[Bug 99671] [META] Gallery 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 108253] [META] Calc cell formula bugs and enhancements

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||80265


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80265
[Bug 80265] Request: Calc should accept and auto-correct full-width brackets
"()" to half-width "()"
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 80265] Request: Calc should accept and auto-correct full-width brackets "()" to half-width "()"

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

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||108253


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108253
[Bug 108253] [META] Calc cell formula 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 108441] [META] Database table bugs and enhancements

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||82321


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=82321
[Bug 82321] row add/lock bug when deleting field from row to be added
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 82321] row add/lock bug when deleting field from row to be added

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

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||108441


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108441
[Bug 108441] [META] Database table 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 82735] Select whole word by mouse omits the following space

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

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #3 from V Stuart Foote  ---
This is correct, reason being we often will apply DF or character styling to
the selection made--we do not want to include the bounding space (of any
flavor, 2-click word selection is made ICU word bounds).

Once a word is selected, LO provides simple ++ will
extend selection at word bounds.

This dual mode is far more useful, than a selection including the space.

IMHO => WF

-- 
You are receiving this mail because:
You 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 82735] Select whole word by mouse omits the following space

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

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #3 from V Stuart Foote  ---
This is correct, reason being we often will apply DF or character styling to
the selection made--we do not want to include the bounding space (of any
flavor, 2-click word selection is made ICU word bounds).

Once a word is selected, LO provides simple ++ will
extend selection at word bounds.

This dual mode is far more useful, than a selection including the space.

IMHO => WF

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


[Libreoffice-ux-advise] [Bug 82735] Select whole word by mouse omits the following space

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

Thomas Lendo  changed:

   What|Removed |Added

   Hardware|Other   |All
Version|4.2.6.2 release |Inherited From OOo
 Blocks||112182
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||thomas.le...@gmail.com
   Keywords||needsUXEval


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112182
[Bug 112182] [META] Text and object selection issues
-- 
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 112182] [META] Text and object selection issues

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||82735


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=82735
[Bug 82735] Select whole word by mouse omits the following space
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 82735] Select whole word by mouse omits the following space

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

Thomas Lendo  changed:

   What|Removed |Added

   Hardware|Other   |All
Version|4.2.6.2 release |Inherited From OOo
 Blocks||112182
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||thomas.le...@gmail.com
   Keywords||needsUXEval


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112182
[Bug 112182] [META] Text and object selection issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 109236] [META] CSV import bugs and enhancements

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

Bug 135756 Summary: CSV file opening error of version 7
https://bugs.documentfoundation.org/show_bug.cgi?id=135756

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 135756] CSV file opening error of version 7

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

Kouichi Nakamura  changed:

   What|Removed |Added

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

--- Comment #5 from Kouichi Nakamura  ---
Safe mode worked.
There is a possibilty that it had something to do with Tab view. But once I
cleaned the profile, it's OK now.
Thank you.

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


[Libreoffice-bugs] [Bug 80084] sort out ownership of resultset returned by "X(Prepared)?Statement::execute(Query|Update)?"

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

Thomas Lendo  changed:

   What|Removed |Added

   Hardware|Other   |All
 Blocks||104790


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=104790
[Bug 104790] [META] Database connectivity interfaces (ODBC, JDBC..) and
external databases
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 104790] [META] Database connectivity interfaces (ODBC, JDBC..) and external databases

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||80084


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80084
[Bug 80084] sort out ownership of resultset returned by
"X(Prepared)?Statement::execute(Query|Update)?"
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 135281] UI/EDITING: Calc crashed after pasting data (CTRL+V) into PyCharm previously copied (CTRL+C) from a Calc sheet

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

--- Comment #2 from conrad_heimbold  ---
I can't see any link. Can you send the link again?

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


[Libreoffice-bugs] [Bug 80414] SPELL: Save ignored words within the document

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

Thomas Lendo  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
 CC||thomas.le...@gmail.com
 Status|NEW |RESOLVED
   Hardware|Other   |All

--- Comment #3 from Thomas Lendo  ---


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

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


[Libreoffice-bugs] [Bug 36446] EDITING allow permanent per document "Ignore All" word list

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

Thomas Lendo  changed:

   What|Removed |Added

 CC||br.renatosi...@gmail.com

--- Comment #14 from Thomas Lendo  ---
*** Bug 80414 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 80430] [META] Documentation gap for new features

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

Bug 135686 Summary: Open Line Style Help page from TSAs Add dialog
https://bugs.documentfoundation.org/show_bug.cgi?id=135686

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 107810] [META] OLE/Embedded object bugs and enhancements

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||82625


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=82625
[Bug 82625] UI for inserting OLE objects on Windows is awfully confusing
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 102019] [META] Dialog bugs and enhancements

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||82625


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=82625
[Bug 82625] UI for inserting OLE objects on Windows is awfully confusing
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 82625] UI for inserting OLE objects on Windows is awfully confusing

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

Thomas Lendo  changed:

   What|Removed |Added

   Hardware|Other   |All
 Blocks||107810, 102019


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102019
[Bug 102019] [META] Dialog bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=107810
[Bug 107810] [META] OLE/Embedded object 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 113458] [META] Packaging/installation/removal bugs and enhancements

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||83242


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=83242
[Bug 83242] UI: Inform User during Installation, that LibreOffice is Accessible
for Users with Impairments/Disabilities
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 83242] UI: Inform User during Installation, that LibreOffice is Accessible for Users with Impairments/Disabilities

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

Thomas Lendo  changed:

   What|Removed |Added

   Hardware|Other   |All
 Blocks||113458


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113458
[Bug 113458] [META] Packaging/installation/removal 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 113458] [META] Packaging/installation/removal bugs and enhancements

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||81786


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=81786
[Bug 81786] UI Language list not sorted
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 81786] UI Language list not sorted

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

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||113458


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113458
[Bug 113458] [META] Packaging/installation/removal 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 135479] LO Complains about missing JDK when accessing any Java functionality, despite recognizing JDK on macOS under Preferences

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

--- Comment #15 from Marc Grober  ---
Any idea whether this is limited to MacOS, or whether this is a problem with
other OS, and whether it only arises on using TDF bundled versions, or all
versions?

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


[Libreoffice-bugs] [Bug 86349] [META] Context menu bugs and enhancements

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||83324


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=83324
[Bug 83324] UI: Right click context menu in vertical and bottom horizontal
toolbars is displayed too far from mouse pointer
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 83324] UI: Right click context menu in vertical and bottom horizontal toolbars is displayed too far from mouse pointer

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

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||86349


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=86349
[Bug 86349] [META] Context menu 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 86066] [META] bugs and improvements to the statusbar

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||81661


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=81661
[Bug 81661] UI: Display of image size in statusbar in inches instead of
centimeters
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 81661] UI: Display of image size in statusbar in inches instead of centimeters

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

Thomas Lendo  changed:

   What|Removed |Added

 CC||thomas.le...@gmail.com
Summary|VIEWING: Display in the |UI: Display of image size
   |screen in inches then in|in statusbar in inches
   |centimeters |instead of centimeters
 Blocks||86066

--- Comment #6 from Thomas Lendo  ---
Still reproducible with
Version: 7.1.0.0.alpha0+
CPU threads: 2; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: de-AT (de_AT.UTF-8); UI: en-US
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2020-08-05_04:03:50
Calc: CL

STR:
1. Insert an image.
2. Select the image and look at the image size shown in the status bar.
3. Double click at the image size and open the image properties dialog and
compare.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=86066
[Bug 86066] [META] bugs and improvements to the statusbar
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108660] [META] Formula bar (input line) bugs and enhancements

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

Bug 44390 Summary: UI: Input Line height not adapted for View Zoom
https://bugs.documentfoundation.org/show_bug.cgi?id=44390

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 44390] UI: Input Line height not adapted for View Zoom

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

Thomas Lendo  changed:

   What|Removed |Added

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

--- Comment #8 from Thomas Lendo  ---
Scaling isn't anymore in LibO (see bug 101646 - UI option "Scaling" was
removed) but also with Windows own scaling I couldn't see any problem.

Closing as WORKSFORME.

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


[Libreoffice-bugs] [Bug 103239] [META] Toolbars bugs and enhancements

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||83267


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=83267
[Bug 83267] UI: Dropdowns in Standard toolbar follow scaling with delay
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 83267] UI: Dropdowns in Standard toolbar follow scaling with delay

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

Thomas Lendo  changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
Summary|VIEWING: Dropdowns in   |UI: Dropdowns in Standard
   |Standard toolbar follow |toolbar follow scaling with
   |scaling with delay  |delay
 Blocks||103239
 Status|NEW |RESOLVED
   Hardware|Other   |All

--- Comment #7 from Thomas Lendo  ---
Scaling isn't anymore in LibO (see bBug 101646 - UI option "Scaling" was
removed) but also with Windows own scaling I couldn't see any problem.

Closing as WORKSFORME.


Referenced Bugs:

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

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

Bug 83267 Summary: UI: Dropdowns in Standard toolbar follow scaling with delay
https://bugs.documentfoundation.org/show_bug.cgi?id=83267

   What|Removed |Added

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

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


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

2020-08-14 Thread gokaysatir (via logerrit)
 loleaflet/css/toolbar.css |   18 --
 1 file changed, 12 insertions(+), 6 deletions(-)

New commits:
commit 5de37de1c7e51443889979c06ad0bfbe1d3f5630
Author: gokaysatir 
AuthorDate: Wed Aug 12 19:20:42 2020 +0300
Commit: Henry Castro 
CommitDate: Sat Aug 15 00:01:06 2020 +0200

loleaflet mobile: Insert image: Make all items visible.

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

diff --git a/loleaflet/css/toolbar.css b/loleaflet/css/toolbar.css
index 0f11a2b34..9b1b579af 100644
--- a/loleaflet/css/toolbar.css
+++ b/loleaflet/css/toolbar.css
@@ -792,21 +792,27 @@ button.leaflet-control-search-next
 .insertshape-grid {
box-sizing: border-box;
background: rgba(255, 255, 255, 0.5);
-   position: relative;
+   position: static;
padding: 2px;
-   display: inline-block;
+   display: block;
min-width: 350px;
width:  100%;
-   height: 100%;
+   height: auto;
 }
 
 .insertshape-grid .row {
-   height: 30px;
+   height: auto;
+   position: static;
+   text-align: left;
+}
+
+.insertshape-grid .row:last-child {
+   box-sizing: content-box;
+   margin-bottom: 43px;
 }
 
 .insertshape-grid .col {
-   height: 100%;
-   float: left;
+   height: 30px;
padding: 2px;
width: 30px;
border: 1px solid transparent;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: icon-themes/colibre icon-themes/colibre_svg

2020-08-14 Thread Rizal Muttaqin (via logerrit)
 icon-themes/colibre/res/lx03245.png |binary
 icon-themes/colibre/res/lx03246.png |binary
 icon-themes/colibre/res/lx03247.png |binary
 icon-themes/colibre/res/lx03248.png |binary
 icon-themes/colibre/res/lx03249.png |binary
 icon-themes/colibre/res/lx03250.png |binary
 icon-themes/colibre/res/lx03251.png |binary
 icon-themes/colibre/res/lx03255.png |binary
 icon-themes/colibre_svg/res/lx03245.svg |1 +
 icon-themes/colibre_svg/res/lx03246.svg |1 +
 icon-themes/colibre_svg/res/lx03247.svg |1 +
 icon-themes/colibre_svg/res/lx03248.svg |1 +
 icon-themes/colibre_svg/res/lx03249.svg |1 +
 icon-themes/colibre_svg/res/lx03250.svg |1 +
 icon-themes/colibre_svg/res/lx03251.svg |1 +
 icon-themes/colibre_svg/res/lx03255.svg |1 +
 16 files changed, 8 insertions(+)

New commits:
commit 4708fa80ac95f11bfbfd422bec52865a17b46fd9
Author: Rizal Muttaqin 
AuthorDate: Fri Aug 14 14:21:26 2020 +0300
Commit: Rizal Muttaqin 
CommitDate: Fri Aug 14 23:59:22 2020 +0200

Restore required resource in Colibre theme

Regression after 56d5531373cf0588e02c254ea8ffa00221c8342b

The missing "lx03249" caused failure in ImplImage::getSizePixel when
exiting from presentation mode in Impress:

assert(maBitmapChecksum == 0);

when res/lx03249.png couldn't be loaded; the resource is referenced
as BMP_OO_IMPRESS_DOC_LC in svtools/inc/bitmaps.hlst.

Neccessary icons added.

Change-Id: Iab240a4587e1aa1ff44b3478a029756db4b4da43
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100734
Reviewed-by: Mike Kaganski 
Tested-by: Jenkins

diff --git a/icon-themes/colibre/res/lx03245.png 
b/icon-themes/colibre/res/lx03245.png
new file mode 100644
index ..c525f1be8cf5
Binary files /dev/null and b/icon-themes/colibre/res/lx03245.png differ
diff --git a/icon-themes/colibre/res/lx03246.png 
b/icon-themes/colibre/res/lx03246.png
new file mode 100644
index ..a79d8cdaa9a5
Binary files /dev/null and b/icon-themes/colibre/res/lx03246.png differ
diff --git a/icon-themes/colibre/res/lx03247.png 
b/icon-themes/colibre/res/lx03247.png
new file mode 100644
index ..b519709ecb92
Binary files /dev/null and b/icon-themes/colibre/res/lx03247.png differ
diff --git a/icon-themes/colibre/res/lx03248.png 
b/icon-themes/colibre/res/lx03248.png
new file mode 100644
index ..2eed96446f0a
Binary files /dev/null and b/icon-themes/colibre/res/lx03248.png differ
diff --git a/icon-themes/colibre/res/lx03249.png 
b/icon-themes/colibre/res/lx03249.png
new file mode 100644
index ..037d68b4de7f
Binary files /dev/null and b/icon-themes/colibre/res/lx03249.png differ
diff --git a/icon-themes/colibre/res/lx03250.png 
b/icon-themes/colibre/res/lx03250.png
new file mode 100644
index ..9b88046ca54c
Binary files /dev/null and b/icon-themes/colibre/res/lx03250.png differ
diff --git a/icon-themes/colibre/res/lx03251.png 
b/icon-themes/colibre/res/lx03251.png
new file mode 100644
index ..e01a9ab638f8
Binary files /dev/null and b/icon-themes/colibre/res/lx03251.png differ
diff --git a/icon-themes/colibre/res/lx03255.png 
b/icon-themes/colibre/res/lx03255.png
new file mode 100644
index ..124a93885b55
Binary files /dev/null and b/icon-themes/colibre/res/lx03255.png differ
diff --git a/icon-themes/colibre_svg/res/lx03245.svg 
b/icon-themes/colibre_svg/res/lx03245.svg
new file mode 100644
index ..60dfb16073ff
--- /dev/null
+++ b/icon-themes/colibre_svg/res/lx03245.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/colibre_svg/res/lx03246.svg 
b/icon-themes/colibre_svg/res/lx03246.svg
new file mode 100644
index ..7d7c3cd4a37e
--- /dev/null
+++ b/icon-themes/colibre_svg/res/lx03246.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
 
\ No newline at end of file
diff --git a/icon-themes/colibre_svg/res/lx03247.svg 
b/icon-themes/colibre_svg/res/lx03247.svg
new file mode 100644
index ..605e1325ea27
--- /dev/null
+++ b/icon-themes/colibre_svg/res/lx03247.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/colibre_svg/res/lx03248.svg 
b/icon-themes/colibre_svg/res/lx03248.svg
new file mode 100644
index ..a71328b590ba
--- /dev/null
+++ b/icon-themes/colibre_svg/res/lx03248.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/colibre_svg/res/lx03249.svg 
b/icon-themes/colibre_svg/res/lx03249.svg
new file mode 100644
index ..9e916c9c4148
--- /dev/null
+++ b/icon-themes/colibre_svg/res/lx03249.svg
@@ -0,0 +1 @@
+http://www.w3.org/2000/svg;>
\ No newline at end of file
diff --git a/icon-themes/colibre_svg/res/lx03250.svg 
b/icon-themes/colibre_svg/res/lx03250.svg
new file mode 100644
index ..6c04513bee52
--- /dev/null
+++ b/icon-themes/colibre_svg/res/lx03250.svg

[Libreoffice-bugs] [Bug 135479] LO Complains about missing JDK when accessing any Java functionality, despite recognizing JDK on macOS under Preferences

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

--- Comment #14 from Marc Grober  ---
At least on Mac OS 10.15 with Intel quad core CPU:
Oracle Java SE 14 has worked with each of the major LO 6.x releases and al
Catalina releases.
On download and install of LO 7.0.0.3 (via TDF dmg) on system with Oracle Java
SE 14, and 14.0.1, the LO threw an error message (TWICE) on start-up advising
the existing JDKs were defective. Reinstall of LO 7.0.0.3 and install of Oracle
Java SE 14.0.2 had no effect.

On install of Oracle Java SE 12.0.2, LO7 found 12.0.2 and worked fine.

Efficacy of java functionality determined by using Zotero to install LO
connector (this will not work if LO does not "see" a working JDK.

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


[Libreoffice-commits] core.git: helpcontent2

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

New commits:
commit ee0787d804a9090639fad4eef55f89ce9ec4a3f3
Author: Olivier Hallot 
AuthorDate: Fri Aug 14 18:54:44 2020 -0300
Commit: Gerrit Code Review 
CommitDate: Fri Aug 14 23:54:44 2020 +0200

Update git submodules

* Update helpcontent2 from branch 'master'
  to 5bbeaa6e676b2ce465f8b05c09bfa483aef2c40e
  - tdf#135686 Refactor TSA Help page

+ other refactoring in Options

Change-Id: Idb0fe9dbf335f37d41cf2f7e43c8f4ff96dfd819
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/100761
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/helpcontent2 b/helpcontent2
index 106adba5b39e..5bbeaa6e676b 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 106adba5b39e31415d2fccc4dfb38e7fefb3d0b6
+Subproject commit 5bbeaa6e676b2ce465f8b05c09bfa483aef2c40e
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2020-08-14 Thread Olivier Hallot (via logerrit)
 AllLangHelp_shared.mk  |2 
 source/auxiliary/shared.tree   |   10 +-
 source/text/shared/00/0001.xhp |8 +-
 source/text/shared/01/05200200.xhp |   30 +++-
 source/text/shared/01/ref_pdf_export_digital_signature.xhp |6 -
 source/text/shared/01/timestampauth.xhp|   48 +
 source/text/shared/02/namedialog.xhp   |   27 +++
 source/text/shared/optionen/0100.xhp   |   33 
 source/text/shared/optionen/01030300.xhp   |7 -
 9 files changed, 121 insertions(+), 50 deletions(-)

New commits:
commit 5bbeaa6e676b2ce465f8b05c09bfa483aef2c40e
Author: Olivier Hallot 
AuthorDate: Fri Aug 14 18:48:38 2020 -0300
Commit: Olivier Hallot 
CommitDate: Fri Aug 14 23:54:44 2020 +0200

tdf#135686 Refactor TSA Help page

+ other refactoring in Options

Change-Id: Idb0fe9dbf335f37d41cf2f7e43c8f4ff96dfd819
Reviewed-on: https://gerrit.libreoffice.org/c/help/+/100761
Tested-by: Jenkins
Reviewed-by: Olivier Hallot 

diff --git a/AllLangHelp_shared.mk b/AllLangHelp_shared.mk
index 92c720da5..2f757db99 100644
--- a/AllLangHelp_shared.mk
+++ b/AllLangHelp_shared.mk
@@ -372,6 +372,7 @@ $(eval $(call gb_AllLangHelp_add_helpfiles,shared,\
 helpcontent2/source/text/shared/01/signexistingpdf \
 helpcontent2/source/text/shared/01/securitywarning \
 helpcontent2/source/text/shared/01/selectcertificate \
+helpcontent2/source/text/shared/01/timestampauth \
 helpcontent2/source/text/shared/01/webhtml \
 helpcontent2/source/text/shared/01/xformsdata \
 helpcontent2/source/text/shared/01/xformsdataadd \
@@ -516,6 +517,7 @@ $(eval $(call gb_AllLangHelp_add_helpfiles,shared,\
 helpcontent2/source/text/shared/02/flowcharts \
 helpcontent2/source/text/shared/02/fontwork \
 helpcontent2/source/text/shared/02/limit \
+helpcontent2/source/text/shared/02/namedialog \
 helpcontent2/source/text/shared/02/paintbrush \
 helpcontent2/source/text/shared/02/querypropdlg \
 helpcontent2/source/text/shared/02/stars \
diff --git a/source/auxiliary/shared.tree b/source/auxiliary/shared.tree
index 3e0efb2e6..fabd5d58a 100644
--- a/source/auxiliary/shared.tree
+++ b/source/auxiliary/shared.tree
@@ -41,18 +41,19 @@
 Options
 User Data
 General
-Paths
-Writing Aids
-General
-Fonts
 View
 Print Options
+Paths
+Fonts
+Security
 Application Colors
 Accessibility
 Advanced
 Expert 
Configuration
 Basic IDE
 OpenCL
+Writing Aids
+General
 Load/Save options
 Internet options
 Text Document 
Options
@@ -108,6 +109,7 @@
 About Digital 
Signatures
 Applying Digital 
Signatures
 Digital 
Signatures in PDF Exports
+Time 
Stamp Authorities
 Signing Existing PDFs
 Adding Signature Lines in Text 
Documents
 Signing Signature Lines in 
Text Documents
diff --git a/source/text/shared/00/0001.xhp 
b/source/text/shared/00/0001.xhp
index 22a53eefe..6c83e692d 100644
--- a/source/text/shared/00/0001.xhp
+++ b/source/text/shared/00/0001.xhp
@@ -260,10 +260,12 @@
 
 Options dialog buttons
 OK
-  Save 
the changes in the page and close the Options dialog.
+Save 
the changes in the page and close the Options dialog.
 Cancel
-  Close the Options dialog and discard all changes 
done.
-
+Close 
the Options dialog and discard all changes done.
+Apply
+Applies the modified or 
selected values without closing the Options dialog.
+
 
 Some options cannot be reset once edited. 
Either edit back the changes manually or click Cancel and reopen 
the Options dialog.
 
diff --git a/source/text/shared/01/05200200.xhp 
b/source/text/shared/01/05200200.xhp
index 24a6feb0b..9d7192573 100644
--- a/source/text/shared/01/05200200.xhp
+++ b/source/text/shared/01/05200200.xhp
@@ -30,50 +30,46 @@
 
 
 
-Line 
Styles
+Line Styles
 Edit or create dashed or dotted line 
styles.
 
 
 
 
-Properties
+Properties
 
-Line 
style
+Line style
 Select the style of line that you 
want to create.
 
 
-Type
+Type
 Select the combination of dashes and 
dots that you want.
 
 
-Number
+Number
 Enter the number of times that you want 
a dot or a dash to appear in a sequence.
 
 
-Length
+Length
 Enter the length of the 
dash.
 
-Spacing
+Spacing
 Enter the amount of space that 
you want to leave between dots or dashes.
 
-Fit to 
line width
+Fit to line width
 Automatically adjusts the entries 
relative to the length of the line.
 
-Add
-Creates a new line style using the 
current settings.
-
-
-Name
-Enter a name.
+Add
+Creates a new line style using the 
current settings. Enter a name for the new line style.
 
-Modify
+Modify
 Updates the selected line style using 
the current settings. To change the name of the selected line style, enter a 
new name when 

[Libreoffice-bugs] [Bug 135686] Open Line Style Help page from TSAs Add dialog

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

Olivier Hallot  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |olivier.hallot@libreoffice.
   |desktop.org |org

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


[Libreoffice-bugs] [Bug 82474] UI: enhancement request: mark as favourite style, search for styles

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

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||103427
   Hardware|Other   |All
   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||thomas.le...@gmail.com
Summary|VIEWING: enhancement /  |UI: enhancement request:
   |feature request: styles,|mark as favourite style,
   |favorites or search |search for styles


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103427
[Bug 103427] [META] Styles and Formatting sidebar deck and floating window
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 82474] UI: enhancement request: mark as favourite style, search for styles

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

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||103427
   Hardware|Other   |All
   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org,
   ||thomas.le...@gmail.com
Summary|VIEWING: enhancement /  |UI: enhancement request:
   |feature request: styles,|mark as favourite style,
   |favorites or search |search for styles


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103427
[Bug 103427] [META] Styles and Formatting sidebar deck and floating window
-- 
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 103427] [META] Styles and Formatting sidebar deck and floating window

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||82474


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=82474
[Bug 82474] UI: enhancement request: mark as favourite style, search for styles
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-ux-advise] [Bug 91886] Make font installation optional

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

--- Comment #12 from Sascha Z  ---
MS Windows already has a huge amount of installed system-fonts. And trust me
when I say it is must painful to remove any of those because Microsoft's policy
is all about compatibility.
The mechanism to avoid users from inconveniences by searching "endless"
font-lists is done by flagging foreign language fonts. So applications don't
load foreign language fonts by default but just when needed. This feature
became more or less mandatory for Windows applications since Windows 7.

Unfortunately, LibreOffice still omit the capability of hiding foreign language
fonts. Instead does LibreOffice install with its own blob of fonts - without
asking the user for nor limiting fonts to the users region.

Also is LibreOffice's font-menu very basic. It doesn't limit the amount of
shown fonts while searching be letters but jumps to the most related entry
inside the full list. And scrolling inside the menu feels very uncomfortable to
me, especially with many installed fonts where the list starts to lags.

For this reason do I fully agree to make font-installation optimal. As least
for all unnecessary fonts, like the 48!! different Noto variants.

-- 
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 91886] Make font installation optional

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

--- Comment #12 from Sascha Z  ---
MS Windows already has a huge amount of installed system-fonts. And trust me
when I say it is must painful to remove any of those because Microsoft's policy
is all about compatibility.
The mechanism to avoid users from inconveniences by searching "endless"
font-lists is done by flagging foreign language fonts. So applications don't
load foreign language fonts by default but just when needed. This feature
became more or less mandatory for Windows applications since Windows 7.

Unfortunately, LibreOffice still omit the capability of hiding foreign language
fonts. Instead does LibreOffice install with its own blob of fonts - without
asking the user for nor limiting fonts to the users region.

Also is LibreOffice's font-menu very basic. It doesn't limit the amount of
shown fonts while searching be letters but jumps to the most related entry
inside the full list. And scrolling inside the menu feels very uncomfortable to
me, especially with many installed fonts where the list starts to lags.

For this reason do I fully agree to make font-installation optimal. As least
for all unnecessary fonts, like the 48!! different Noto variants.

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


[Libreoffice-bugs] [Bug 129971] what is the server for roadrunner email?

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

--- Comment #11 from MP3 Cape  ---
You can download your latest south african songs from https://mp3cape.com

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


[Libreoffice-bugs] [Bug 114426] [META] Caption bugs and enhancements

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||80931


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80931
[Bug 80931] VIEWING: Size of caption depending on amount of description text &
above/below object
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 80931] VIEWING: Size of caption depending on amount of description text & above/below object

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

Thomas Lendo  changed:

   What|Removed |Added

   Hardware|Other   |All
 Blocks||114426

--- Comment #7 from Thomas Lendo  ---
Still reproducible with
Version: 7.1.0.0.alpha0+
CPU threads: 2; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: de-AT (de_AT.UTF-8); UI: en-US
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2020-08-05_04:03:50
Calc: CL


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=114426
[Bug 114426] [META] Caption 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 123288] Calc-UX: Add note about user defined print range in Print dialog

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

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||108815


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108815
[Bug 108815] [META] Print range/area 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 108815] [META] Print range/area bugs and enhancements

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

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||123288


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=123288
[Bug 123288] Calc-UX: Add note about user defined print range in Print dialog
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 123288] Calc-UX: Add note about user defined print range in Print dialog

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

Thomas Lendo  changed:

   What|Removed |Added

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

--- Comment #3 from Thomas Lendo  ---
I would also prefer something like a notification bar in the print dialog.
Ideally this notification bar is gaining attention so that it will not be
overlooked and it must be in a position that isn't there without the
notification (e.g. the notification area and also it's space in the dialog
isn't existing without any notification and the dialog is smaller without the
notification bar).

A link/button that opens the print ranges edit dialog would be cool.
But isn't this too intrusive as the print dialog must be closed automatically?

Nothing should overlay the content that will be printed (e.g. no info in the
preview of the print dialog) and such info should not be "too loud" (e.g. no
red 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 134836] Writer Print Function Shows Three Page Sizes

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

--- Comment #4 from slow_sp...@att.net  ---
Look closely to the top left in the picture and note the User Defined
horizontal size.  Then look to the right middle and see User Defined size
there.  Then look at the popup window and see Paper size.  They are all three
different.  You just have to look very carefully in the overly busy dialog box.

I realize that it is confusing, but this is because of the poor programming of
this feature.  It appears that the programmers never actually used the feature
at all.

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


[Libreoffice-commits] online.git: Branch 'distro/collabora/co-4-2' - loleaflet/css loleaflet/src

2020-08-14 Thread Szymon Kłos (via logerrit)
 loleaflet/css/mobilewizard.css   |2 +-
 loleaflet/src/control/Control.JSDialogBuilder.js |6 +-
 2 files changed, 6 insertions(+), 2 deletions(-)

New commits:
commit 745bc47a0434e60854ab4f5b05c7ef16c0d74f6f
Author: Szymon Kłos 
AuthorDate: Tue Aug 11 11:32:14 2020 +0200
Commit: Jan Holesovsky 
CommitDate: Fri Aug 14 22:43:58 2020 +0200

mobile-wizard: improve calc shape shadow panel

- use listboxes
- reduce input to make space for -/+ controls
- working color selector

Change-Id: Ia9df4fbc09132474985d169d7b0d55985461ec2b
Reviewed-on: https://gerrit.libreoffice.org/c/online/+/100472
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Jan Holesovsky 

diff --git a/loleaflet/css/mobilewizard.css b/loleaflet/css/mobilewizard.css
index 8cba28d8e..177cf7877 100644
--- a/loleaflet/css/mobilewizard.css
+++ b/loleaflet/css/mobilewizard.css
@@ -700,7 +700,7 @@ a.leaflet-control-zoom-in {
 #DecrementIndent + input:disabled{display: none;}
 div#mobile-wizard-content input[type=number]{
height: 46px;
-   width: 42%;
+   width: 40%;
padding-left: 8%;
border: none;
-moz-appearance: textfield;
diff --git a/loleaflet/src/control/Control.JSDialogBuilder.js 
b/loleaflet/src/control/Control.JSDialogBuilder.js
index 980ba21e7..00bcf2fd3 100644
--- a/loleaflet/src/control/Control.JSDialogBuilder.js
+++ b/loleaflet/src/control/Control.JSDialogBuilder.js
@@ -1412,7 +1412,9 @@ L.Control.JSDialogBuilder = L.Control.extend({
if (data.id === 'applystyle' ||
data.id === 'fontnamecombobox' ||
data.id === 'fontsizecombobox' ||
-   data.id === 'FontBox') {
+   data.id === 'FontBox' ||
+   data.id === 'LB_ANGLE' ||
+   data.id === 'LB_DISTANCE') {
builder._listboxControl(parentContainer, data, builder);
} else if (data.id === 'searchterm' ||
data.id === 'replaceterm') {
@@ -1765,6 +1767,8 @@ L.Control.JSDialogBuilder = L.Control.extend({

builder.map['stateChangeHandler'].setItemValue(data.command, 
params[data.id].value);
builder.map.sendUnoCommand(data.command, params);
return;
+   } else if (data.id === 'LB_SHADOW_COLOR') {
+   data.command = '.uno:FillShadowColor';
}
 
var command = data.command + '?Color:string=' + color;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2020-08-14 Thread Szymon Kłos (via logerrit)
 sc/source/ui/drawfunc/drawsh.cxx |8 
 svx/sdi/svx.sdi  |2 +-
 2 files changed, 9 insertions(+), 1 deletion(-)

New commits:
commit c10f1254e250280227a33bb9c8045ce99bd092d5
Author: Szymon Kłos 
AuthorDate: Tue Aug 11 15:14:23 2020 +0200
Commit: Jan Holesovsky 
CommitDate: Fri Aug 14 22:43:09 2020 +0200

Shadow color setter for online

Change-Id: Id79d879a6017beb39e95a8d923e8368178901c74
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100502
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Jan Holesovsky 

diff --git a/sc/source/ui/drawfunc/drawsh.cxx b/sc/source/ui/drawfunc/drawsh.cxx
index 70623818ef29..1b19748a584a 100644
--- a/sc/source/ui/drawfunc/drawsh.cxx
+++ b/sc/source/ui/drawfunc/drawsh.cxx
@@ -64,6 +64,7 @@
 #include 
 #include 
 #include 
+#include 
 
 SFX_IMPL_INTERFACE(ScDrawShell, SfxShell)
 
@@ -109,6 +110,13 @@ namespace
 pArgs->Put(aFillColorItem);
 break;
 }
+
+case SID_ATTR_SHADOW_COLOR:
+{
+XColorItem aItem(SDRATTR_SHADOWCOLOR, aColor);
+pArgs->Put(aItem);
+break;
+}
 }
 }
 if (SfxItemState::SET == pArgs->GetItemState(SID_FILL_GRADIENT_JSON, 
false, ))
diff --git a/svx/sdi/svx.sdi b/svx/sdi/svx.sdi
index 36fe1d2e528d..2d8ef16ecae4 100644
--- a/svx/sdi/svx.sdi
+++ b/svx/sdi/svx.sdi
@@ -7632,7 +7632,7 @@ SdrOnOffItem FillShadow SID_ATTR_FILL_SHADOW
 ]
 
 XColorItem FillShadowColor SID_ATTR_SHADOW_COLOR
-
+(SfxStringItem Color SID_ATTR_COLOR_STR)
 [
 
 AutoUpdate = TRUE,
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2020-08-14 Thread Szymon Kłos (via logerrit)
 vcl/source/control/combobox.cxx |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 769fc49f87ccfd1858da4cddab09d978ff19df5a
Author: Szymon Kłos 
AuthorDate: Wed Jul 8 13:52:43 2020 +0200
Commit: Jan Holesovsky 
CommitDate: Fri Aug 14 22:41:57 2020 +0200

Call modified handler on combobox selection

SelectEntryPos is used by uitest framework
to perform combobox selection action.
Calling handler is required to propagate
changes to the client code.

Change-Id: I83d3d72ee5f17f382ce5f56b35b0a91ec98ebfb3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98370
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Szymon Kłos 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100470
Reviewed-by: Jan Holesovsky 

diff --git a/vcl/source/control/combobox.cxx b/vcl/source/control/combobox.cxx
index 944860e0ca74..227856bee234 100644
--- a/vcl/source/control/combobox.cxx
+++ b/vcl/source/control/combobox.cxx
@@ -453,7 +453,10 @@ IMPL_LINK( ComboBox::Impl, ImplSelectionChangedHdl, 
sal_Int32, nChanged, void )
 if (!m_pImplLB->IsTrackingSelect())
 {
 if (!m_pSubEdit->IsReadOnly() && 
m_pImplLB->GetEntryList()->IsEntryPosSelected(nChanged))
+{
 
m_pSubEdit->SetText(m_pImplLB->GetEntryList()->GetEntryText(nChanged));
+m_pSubEdit->Modify();
+}
 }
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.2' - include/vcl vcl/source

2020-08-14 Thread Szymon Kłos (via logerrit)
 include/vcl/combobox.hxx|3 +++
 vcl/source/control/combobox.cxx |   29 +
 2 files changed, 32 insertions(+)

New commits:
commit 0c9c1bcbeb937ac9fae785b9f890de18ccbf3e28
Author: Szymon Kłos 
AuthorDate: Tue Feb 25 13:01:20 2020 +0100
Commit: Jan Holesovsky 
CommitDate: Fri Aug 14 22:40:55 2020 +0200

jsdialog: export combobox entries

Change-Id: Ic0a3c93020c7c915fd908fe994ec0a3a900358eb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97625
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Szymon Kłos 
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100469
Reviewed-by: Jan Holesovsky 

diff --git a/include/vcl/combobox.hxx b/include/vcl/combobox.hxx
index 9dc14739f4e1..62569fc8d0c1 100644
--- a/include/vcl/combobox.hxx
+++ b/include/vcl/combobox.hxx
@@ -23,6 +23,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #define COMBOBOX_APPEND (SAL_MAX_INT32)
 #define COMBOBOX_ENTRY_NOTFOUND (SAL_MAX_INT32)
@@ -183,6 +184,8 @@ public:
 virtual bool set_property(const OString , const OUString ) 
override;
 
 virtual FactoryFunction GetUITestFactory() const override;
+
+virtual boost::property_tree::ptree DumpAsPropertyTree() override;
 };
 
 #endif  // _COMBOBOX_HXX
diff --git a/vcl/source/control/combobox.cxx b/vcl/source/control/combobox.cxx
index 99203e61b793..944860e0ca74 100644
--- a/vcl/source/control/combobox.cxx
+++ b/vcl/source/control/combobox.cxx
@@ -1562,4 +1562,33 @@ FactoryFunction ComboBox::GetUITestFactory() const
 return ComboBoxUIObject::create;
 }
 
+boost::property_tree::ptree ComboBox::DumpAsPropertyTree()
+{
+boost::property_tree::ptree aTree(Control::DumpAsPropertyTree());
+boost::property_tree::ptree aEntries;
+
+for (int i = 0; i < GetEntryCount(); ++i)
+{
+boost::property_tree::ptree aEntry;
+aEntry.put("", GetEntry(i));
+aEntries.push_back(std::make_pair("", aEntry));
+}
+
+aTree.add_child("entries", aEntries);
+
+boost::property_tree::ptree aSelected;
+
+for (int i = 0; i < GetSelectedEntryCount(); ++i)
+{
+boost::property_tree::ptree aEntry;
+aEntry.put("", GetSelectedEntryPos(i));
+aSelected.push_back(std::make_pair("", aEntry));
+}
+
+aTree.put("selectedCount", GetSelectedEntryCount());
+aTree.add_child("selectedEntries", aSelected);
+
+return aTree;
+}
+
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2020-08-14 Thread Szymon Kłos (via logerrit)
 svx/source/sidebar/shadow/ShadowPropertyPanel.cxx |   16 
 1 file changed, 16 insertions(+)

New commits:
commit 57d63ffb2f071e4fbb7d358557c1cb6aa54464b7
Author: Szymon Kłos 
AuthorDate: Tue Aug 11 10:28:52 2020 +0200
Commit: Jan Holesovsky 
CommitDate: Fri Aug 14 22:40:32 2020 +0200

Instant update shadow fields in sidebar

This allows mobile LOK client to receive updated
state.

Change-Id: I07fb397c1566546e6e2eb8071eaf6d848f6effc0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100466
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Jan Holesovsky 

diff --git a/svx/source/sidebar/shadow/ShadowPropertyPanel.cxx 
b/svx/source/sidebar/shadow/ShadowPropertyPanel.cxx
index a3c40a649db2..fc2b7ccd69bc 100644
--- a/svx/source/sidebar/shadow/ShadowPropertyPanel.cxx
+++ b/svx/source/sidebar/shadow/ShadowPropertyPanel.cxx
@@ -28,6 +28,7 @@
 #include 
 #include 
 #include 
+#include 
 
 using namespace css;
 using namespace css::uno;
@@ -141,12 +142,27 @@ IMPL_LINK_NOARG(ShadowPropertyPanel, ClickShadowHdl, 
Button*, void)
 SdrOnOffItem aItem(makeSdrShadowItem(false));
 GetBindings()->GetDispatcher()->ExecuteList(SID_ATTR_FILL_SHADOW,
 SfxCallMode::RECORD, {  });
+
+if (comphelper::LibreOfficeKit::isActive())
+{
+mpShowShadow->SetState( TRISTATE_FALSE );
+UpdateControls();
+}
 }
 else
 {
 SdrOnOffItem aItem(makeSdrShadowItem(true));
 GetBindings()->GetDispatcher()->ExecuteList(SID_ATTR_FILL_SHADOW,
 SfxCallMode::RECORD, {  });
+
+if (mpShadowDistance->GetValue( FieldUnit::POINT ) == 0)
+mpShadowDistance->SetValue( 8, FieldUnit::POINT );
+
+if (comphelper::LibreOfficeKit::isActive())
+{
+mpShowShadow->SetState( TRISTATE_TRUE );
+UpdateControls();
+}
 }
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


  1   2   3   4   5   >