[Libreoffice-bugs] [Bug 140563] outline tracking for tables

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

--- Comment #3 from Jim Raykowski  ---
Hi Ulrich,

I think universal outline tracking concept involving headings, tables, frames,
images, etc. was added after the version you are using. Is it possible for you
to test these issues using the current nightly build or a newer version than
what you are using?

A new bug report should be created, if there isn't already one, for the table
"select" not selecting the entire table.

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


[Libreoffice-commits] core.git: Branch 'libreoffice-7-1' - include/systools sal/qa

2021-03-09 Thread Mike Kaganski (via logerrit)
 include/systools/win32/retry_if_failed.hxx |   12 
 sal/qa/systools/test_retry_if_failed.cxx   |   10 +++---
 2 files changed, 11 insertions(+), 11 deletions(-)

New commits:
commit 6ed614ae2cbd7373c01ac85d040187653a65519c
Author: Mike Kaganski 
AuthorDate: Thu Mar 4 09:30:28 2021 +0300
Commit: Xisco Fauli 
CommitDate: Tue Mar 9 21:18:24 2021 +0100

Improve unit test accuracy

I didn't take clock resolution into account when created the test,
and it failed for me occasionally because the value was slightly
less than expected.

The typical system tick resolution is documented at

https://docs.microsoft.com/en-us/windows-hardware/drivers/kernel/high-resolution-timers

Change-Id: Ie48b10d15b14f9ac7d292a2cc9916bcbfff44b6f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111946
Tested-by: Mike Kaganski 
Reviewed-by: Mike Kaganski 
(cherry picked from commit eef43192d4c7b2867638c54a2ac31adfc26476c7)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112076
Tested-by: Jenkins
Reviewed-by: Xisco Fauli 

diff --git a/include/systools/win32/retry_if_failed.hxx 
b/include/systools/win32/retry_if_failed.hxx
index 11a7e5372037..d3dd6b125be9 100644
--- a/include/systools/win32/retry_if_failed.hxx
+++ b/include/systools/win32/retry_if_failed.hxx
@@ -24,16 +24,12 @@ namespace sal::systools
 // HRESULT hr = sal::systools::RetryIfFailed(10, 100, []{ return 
OleFlushClipboard(); });
 template  HRESULT RetryIfFailed(unsigned times, unsigned 
msTimeout, Func func)
 {
-HRESULT hr = E_FAIL;
-for (unsigned i = 0; i < times; ++i)
+for (unsigned i = 0;; ++i)
 {
-hr = func();
-if (SUCCEEDED(hr))
-break;
-if (i < times - 1)
-Sleep(msTimeout);
+if (HRESULT hr = func(); SUCCEEDED(hr) || i >= times)
+return hr;
+Sleep(msTimeout);
 }
-return hr;
 }
 }
 
diff --git a/sal/qa/systools/test_retry_if_failed.cxx 
b/sal/qa/systools/test_retry_if_failed.cxx
index 845cba83092d..7df83cb229a1 100644
--- a/sal/qa/systools/test_retry_if_failed.cxx
+++ b/sal/qa/systools/test_retry_if_failed.cxx
@@ -13,19 +13,22 @@
 
 namespace test_systools
 {
+constexpr int ClockRes = 15; // default interval between system clock ticks is 
~15 ms on x86
+
 class test_retry_if_failed : public CppUnit::TestFixture
 {
 public:
 void test_success()
 {
 const DWORD nTicksBefore = GetTickCount();
-HRESULT hr = sal::systools::RetryIfFailed(10, 100, Tester(5));
+HRESULT hr = sal::systools::RetryIfFailed(10, 200, Tester(5));
 const DWORD nTicksAfter = GetTickCount();
 const DWORD nTicksElapsed = nTicksAfter > nTicksBefore ? nTicksAfter - 
nTicksBefore
: 
std::numeric_limits::max()
  - 
nTicksBefore + nTicksAfter;
 CPPUNIT_ASSERT(SUCCEEDED(hr));
-CPPUNIT_ASSERT(nTicksElapsed >= 400); // 5 attempts, 4 sleeps by 100 ms
+// 5 attempts, 4 sleeps by ~200 ms
+CPPUNIT_ASSERT_GREATER(DWORD(800 - ClockRes), nTicksElapsed);
 }
 
 void test_failure()
@@ -37,7 +40,8 @@ public:
: 
std::numeric_limits::max()
  - 
nTicksBefore + nTicksAfter;
 CPPUNIT_ASSERT(FAILED(hr));
-CPPUNIT_ASSERT(nTicksElapsed >= 900); // 10 attempts, 9 sleeps by 100 
ms
+// 1 + 10 attempts, 10 sleeps by ~100 ms
+CPPUNIT_ASSERT_GREATER(DWORD(1000 - ClockRes), nTicksElapsed);
 }
 
 CPPUNIT_TEST_SUITE(test_retry_if_failed);
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 140928] New: Losing Context while Clicked Into Text Box Causes Crash?

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

Bug ID: 140928
   Summary: Losing Context while Clicked Into Text Box Causes
Crash?
   Product: LibreOffice
   Version: 7.0.4.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sarah.sz...@stonybrook.edu

The issue is this:

Lets say I have a slide. If I enter the context of a text box and then switch
context using ALT + TAB or click into another monitor, Impress freezes and then
crashes. This happens every time.

If I am not in a text box, there is no crash.

I've made a video of what happens here: https://youtu.be/eGZLEfCzP0U

(Also I have no idea how fast the turn around time is for a bug like this (I'm
using impress for work reasons). I would imagine that it is relativly trivial
to find it since it happens all the time, but is it like in the next update or
something?)

Version: 7.0.4.2
Build ID: 00(Build:2)
CPU threads: 12; OS: Linux 5.11; UI render: default; VCL: kf5
Locale: en-US (en_US.UTF-8); UI: en-US
7.0.4-1
Calc: threaded


System Hardware Info:
System:
  Host: MidnightStarSign Kernel: 5.11.1-1-MANJARO x86_64 bits: 64 compiler: gcc 
  v: 10.2.1 Desktop: KDE Plasma 5.21.1 Distro: Manjaro Linux 
Machine:
  Type: Desktop Mobo: ASUSTeK model: PRIME X570-PRO v: Rev X.0x 
  serial:  UEFI: American Megatrends v: 1407 date:
04/02/2020 
CPU:
  Info: 6-Core model: AMD Ryzen 5 3600 bits: 64 type: MT MCP arch: Zen 2 rev: 0 
  L2 cache: 3 MiB 
  flags: avx avx2 lm nx pae sse sse2 sse3 sse4_1 sse4_2 sse4a ssse3 svm 
  bogomips: 103847 
  Speed: 4324 MHz min/max: 2200/5795 MHz boost: enabled Core speeds (MHz): 1:
4324 
  2: 4325 3: 4325 4: 4325 5: 4323 6: 4325 7: 4325 8: 4324 9: 4325 10: 4325 11:
4325 
  12: 4324 
Graphics:
  Device-1: AMD Navi 10 [Radeon RX 5600 OEM/5600 XT / 5700/5700 XT] vendor:
ASRock 
  driver: amdgpu v: kernel bus ID: 0c:00.0 
  Display: x11 server: X.Org 1.20.10 driver: loaded: amdgpu,ati 
  unloaded: modesetting,radeon resolution: 1: 1920x1080~60Hz 2: 1920x1080~60Hz 
  3: 1920x1080~60Hz 
  OpenGL: 
  renderer: AMD Radeon RX 5600 XT (NAVI10 DRM 3.40.0 5.11.1-1-MANJARO LLVM
11.1.0) 
  v: 4.6 Mesa 20.3.4 direct render: Yes 
Audio:
  Device-1: AMD Navi 10 HDMI Audio driver: snd_hda_intel v: kernel bus ID:
0c:00.1 
  Device-2: AMD Starship/Matisse HD Audio vendor: ASUSTeK driver: snd_hda_intel 
  v: kernel bus ID: 0e:00.4 
  Device-3: ASUSTek ASUS AI Noise-Cancelling Mic Adapter type: USB 
  driver: hid-generic,snd-usb-audio,usbhid bus ID: 5-5:4 
  Device-4: Microdia USB 2.0 Camera type: USB driver: snd-usb-audio,uvcvideo 
  bus ID: 7-1:2 
  Device-5: Schiit Audio Schiit Modi 3+ type: USB driver: snd-usb-audio 
  bus ID: 7-2:3 
  Device-6: JMTek LLC. Plugable USB Audio Device type: USB 
  driver: hid-generic,snd-usb-audio,usbhid bus ID: 3-2:3 
  Sound Server: ALSA v: k5.11.1-1-MANJARO 
Network:
  Device-1: Intel I211 Gigabit Network vendor: ASUSTeK driver: igb v: kernel 
  port: f000 bus ID: 06:00.0 
  IF: enp6s0 state: up speed: 1000 Mbps duplex: full mac: 24:4b:fe:5b:08:2a 
Bluetooth:
  Device-1: Cambridge Silicon Radio Bluetooth Dongle (HCI mode) type: USB 
  driver: btusb v: 0.8 bus ID: 3-5.3:9 
  Message: Required tool hciconfig not installed. Check --recommends 
Drives:
  Local Storage: total: 3.69 TiB used: 2.31 TiB (62.7%) 
  ID-1: /dev/nvme0n1 vendor: Western Digital model: WDS100T3X0C-00SJG0 
  size: 931.51 GiB temp: 45.9 C 
  ID-2: /dev/nvme1n1 vendor: Western Digital model: WDS100T2B0C-00PXH0 
  size: 931.51 GiB temp: 43.9 C 
  ID-3: /dev/sda vendor: Seagate model: ST2000LM015-2E8174 size: 1.82 TiB 
  ID-4: /dev/sdb type: USB model: N/A size: 29.3 GiB 
  ID-5: /dev/sdh type: USB vendor: Toshiba model: TransMemory size: 14.92 GiB 
  ID-6: /dev/sdi type: USB vendor: SanDisk model: Gaming Xbox 360 size: 7.48
GiB 
Partition:
  ID-1: / size: 767 GiB used: 612.85 GiB (79.9%) fs: btrfs dev: /dev/dm-0 
  mapped: luks-466d5812-64c7-4a28-bcc4-a1a5adfa9450 
  ID-2: /boot/efi size: 511 MiB used: 26.1 MiB (5.1%) fs: vfat dev:
/dev/nvme0n1p1 
  ID-3: /home size: 767 GiB used: 612.85 GiB (79.9%) fs: btrfs dev: /dev/dm-0 
  mapped: luks-466d5812-64c7-4a28-bcc4-a1a5adfa9450 
Swap:
  ID-1: swap-1 type: partition size: 64 GiB used: 5.71 GiB (8.9%) dev:
/dev/dm-1 
  mapped: luks-81b2dc57-06f5-4471-b484-77c3a516f307 
Sensors:
  System Temperatures: cpu: 44.4 C mobo: N/A gpu: amdgpu temp: 46.0 C 
  Fan Speeds (RPM): N/A gpu: amdgpu fan: 0 
Info:
  Processes: 589 Uptime: 1d 3h 59m Memory: 31.33 GiB used: 20.17 GiB (64.4%) 
  Init: systemd Compilers: gcc: 10.2.0 clang: 11.1.0 Packages: 1893 Shell: Bash 
  v: 5.1.0 inxi: 3.3.01

-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing 

[Libreoffice-bugs] [Bug 127234] I can't save result of QR-code generator to PNG with good quality

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

--- Comment #13 from Telesto  ---
(In reply to Roman Kuznetsov from comment #12)
> (In reply to Telesto from comment #11)
> 
> > 
> > Apparently QR is generated as SVG. SVG not supported by DOCX/DOC format and
> > converted to PNG which goes wrong. I reported the same thing: see bug 
> > 135746.
> 
> Where in this bug report do you see anything about DOC/DOCX?

I don't, but all this stuff is tied together.. The DOCX filter utilizes the
same conversion SVG to PNG as used for export. At least this would 'proper'
coding style entail; re-use the same function instead of duplicate the code
(copy/paste). With single place you can 'fix'. With the downside that it's
broken all over the place. 

And this should be the case in my observations. There is something seriously
broken in the file-format to file format conversion area (not only SVG -> PNG).
Across all components (Writer/Draw/Impress/Calc). 

But well, if you prefer to leave this separate, also fine. But I prefer
directing all relevant bugs to bug 51510, to give it more priority [old +
plenty duplicates + big CC list). And I believe this one would be fixed with
bug 51510. However that's my take; no warrantees.

I leave it up to you.. [and sorry for marking it as duplicate in rude manner]

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


[Libreoffice-bugs] [Bug 140848] FORMATTING: Display errors of rotated vector graphics

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

--- Comment #4 from Matthias Jerye  ---
Version: 7.0.4.2 (x64)
Build ID: dcf040e67528d9187c66b2379df5ea4407429775
CPU threads: 8; OS: Windows 10.0 Build 19042; 
UI render: Skia/Raster; VCL: win
Locale: de-DE (de-DE); UI: de-DE
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


Re: proposition for patch in CommonSalLayout.cxx

2021-03-09 Thread Ilmari Lauhakangas

On 9.3.2021 20.51, Stanisław Jeśmanowicz wrote:


On 3/9/21 6:34 PM, julien2412 wrote:

Stanisław Jeśmanowicz wrote

...
Thank you for your advice, but getting familiar with gerrit on top of 
git

would take some time for
me now.
I hope, that some of your developers could commit this patch for me 
in vcl

module.
It is simple and won't harm anything.
But people could benefit from it on all platforms that use system's 
native

HarfBuzz implementation.
...


I can understand you don't have time for gerrit but would it be 
possible you

submit a license statement?

I have created an account and can log in to https://gerrit.libreoffice.org/
but it is not clear for me where to submit a license statement.


If you already created an account, you might as well submit the patch 
using the web interface: 
https://gerrit.libreoffice.org/Documentation/user-inline-edit.html


Re: license statement: 
https://wiki.documentfoundation.org/Development/GetInvolved#License_statement


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


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

2021-03-09 Thread Caolán McNamara (via logerrit)
 sfx2/source/sidebar/DeckLayouter.cxx |   11 ++-
 1 file changed, 10 insertions(+), 1 deletion(-)

New commits:
commit ec6fe7d32d1433589124a45afa4accd7caaf030c
Author: Caolán McNamara 
AuthorDate: Tue Mar 2 14:12:20 2021 +
Commit: Caolán McNamara 
CommitDate: Tue Mar 9 20:35:38 2021 +0100

make Analog Clock sidebar extension demo work

from...


https://wiki.openoffice.org/wiki/Sidebar_for_Developers#Example:_Analog_Clock_Extension
http://people.apache.org/~af/clock/AnalogClock.oxt

presumably compatibility was broken at:
commit e66be44b69ee2a1b99bda32af93ea453c669b319
Date:   Sun Jun 2 04:46:58 2013 +0200

sidebar: Restrict the minimal width of the sidebar.

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

diff --git a/sfx2/source/sidebar/DeckLayouter.cxx 
b/sfx2/source/sidebar/DeckLayouter.cxx
index f90ec176b2d0..bebc75e726ad 100644
--- a/sfx2/source/sidebar/DeckLayouter.cxx
+++ b/sfx2/source/sidebar/DeckLayouter.cxx
@@ -433,7 +433,16 @@ void GetRequestedSizes (
  << " Maximum: " << rItem.maLayoutSize.Maximum);
 }
 
-sal_Int32 nWidth = xPanel->getMinimalWidth();
+sal_Int32 nWidth = rMinimalWidth;
+try
+{
+// The demo sidebar extension "Analog Clock" fails with
+// java.lang.AbstractMethodError here
+nWidth = xPanel->getMinimalWidth();
+}
+catch (...)
+{
+}
 
 uno::Reference xDesktop
 = 
frame::Desktop::create(comphelper::getProcessComponentContext());
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 86066] [META] bugs and improvements to the statusbar

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

Bug 88064 Summary: Mode "Adds selection" in statusbar Writer does not work 
properly
https://bugs.documentfoundation.org/show_bug.cgi?id=88064

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

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

Jim Raykowski  changed:

   What|Removed |Added

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

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


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

2021-03-09 Thread Stephan Bergmann (via logerrit)
 chart2/source/tools/InternalDataProvider.cxx |7 +++
 1 file changed, 7 insertions(+)

New commits:
commit 6d43ba110084605462901bcee786c7ae4c1f3bdf
Author: Stephan Bergmann 
AuthorDate: Tue Mar 9 15:52:21 2021 +0100
Commit: Stephan Bergmann 
CommitDate: Tue Mar 9 20:16:28 2021 +0100

Avoid signed-integer-overflow parsing table:cell-range-address="PivotChart"

...as happens during UITest_chart
UITEST_TEST_NAME=tdf107097.tdf107097.test_tdf107097 ever since
86b192965ee8d625092b723337f6a65bdf34dcb7 "tdf#107097: sc: Add UItest" added 
that
test (see ),

> /chart2/source/tools/XMLRangeHelper.cxx:136:52: runtime error: signed 
integer overflow: 15 * 308915776 cannot be represented in type 'int'
> #0 0x2ad74a554918 in (anonymous 
namespace)::lcl_getSingleCellAddressFromXMLString(rtl::OUString const&, int, 
int, chart::XMLRangeHelper::Cell&) 
/chart2/source/tools/XMLRangeHelper.cxx:136:52
> #1 0x2ad74a553482 in (anonymous 
namespace)::lcl_getCellAddressFromXMLString(rtl::OUString const&, int, int, 
chart::XMLRangeHelper::Cell&, rtl::OUString&) 
/chart2/source/tools/XMLRangeHelper.cxx:217:13
> #2 0x2ad74a5505da in (anonymous 
namespace)::lcl_getCellRangeAddressFromXMLString(rtl::OUString const&, int, 
int, chart::XMLRangeHelper::CellRange&) 
/chart2/source/tools/XMLRangeHelper.cxx:253:19
> #3 0x2ad74a54fde1 in 
chart::XMLRangeHelper::getCellRangeFromXMLString(rtl::OUString const&) 
/chart2/source/tools/XMLRangeHelper.cxx:328:15
> #4 0x2ad74a2aed4d in 
chart::InternalDataProvider::convertRangeFromXML(rtl::OUString const&) 
/chart2/source/tools/InternalDataProvider.cxx:1227:39
> #5 0x2ad74a2b0164 in non-virtual thunk to 
chart::InternalDataProvider::convertRangeFromXML(rtl::OUString const&) 
/chart2/source/tools/InternalDataProvider.cxx
> #6 0x2ad6c4784257 in (anonymous 
namespace)::lcl_ConvertRange(rtl::OUString const&, 
com::sun::star::uno::Reference const&) 
/xmloff/source/chart/SchXMLPlotAreaContext.cxx:76:32
> #7 0x2ad6c4779a67 in SchXMLPlotAreaContext::startFastElement(int, 
com::sun::star::uno::Reference 
const&) /xmloff/source/chart/SchXMLPlotAreaContext.cxx:233:34
> #8 0x2ad6c4c6328a in SvXMLImport::startFastElement(int, 
com::sun::star::uno::Reference 
const&) /xmloff/source/core/xmlimp.cxx:797:15
> #9 0x2ad704988b78 in (anonymous 
namespace)::Entity::startElement((anonymous namespace)::Event const*) 
/sax/source/fastparser/fastparser.cxx:468:27
> #10 0x2ad70496f681 in 
sax_fastparser::FastSaxParserImpl::consume((anonymous namespace)::EventList&) 
/sax/source/fastparser/fastparser.cxx:1026:25
> #11 0x2ad70496c65f in 
sax_fastparser::FastSaxParserImpl::parseStream(com::sun::star::xml::sax::InputSource
 const&) /sax/source/fastparser/fastparser.cxx:870:22
> #12 0x2ad7049905d1 in 
sax_fastparser::FastSaxParser::parseStream(com::sun::star::xml::sax::InputSource
 const&) /sax/source/fastparser/fastparser.cxx:1482:13
> #13 0x2ad6c4c52b80 in 
SvXMLImport::parseStream(com::sun::star::xml::sax::InputSource const&) 
/xmloff/source/core/xmlimp.cxx:504:15
> #14 0x2ad749aafe1e in 
chart::XMLFilter::impl_ImportStream(rtl::OUString const&, rtl::OUString const&, 
com::sun::star::uno::Reference const&, 
com::sun::star::uno::Reference 
const&, 
com::sun::star::uno::Reference
 const&, com::sun::star::uno::Reference 
const&) /chart2/source/model/filter/XMLFilter.cxx:473:34
> #15 0x2ad749aa9f01 in 
chart::XMLFilter::impl_Import(com::sun::star::uno::Reference
 const&, com::sun::star::uno::Sequence 
const&) /chart2/source/model/filter/XMLFilter.cxx:375:35
> #16 0x2ad749aa0988 in 
chart::XMLFilter::filter(com::sun::star::uno::Sequence
 const&) /chart2/source/model/filter/XMLFilter.cxx:221:13
> #17 0x2ad749c2c76e in 
chart::ChartModel::impl_load(com::sun::star::uno::Sequence
 const&, com::sun::star::uno::Reference 
const&) /chart2/source/model/main/ChartModel_Persistence.cxx:567:18
> #18 0x2ad749c30eea in 
chart::ChartModel::loadFromStorage(com::sun::star::uno::Reference
 const&, com::sun::star::uno::Sequence 
const&) /chart2/source/model/main/ChartModel_Persistence.cxx:759:5
> #19 0x2ad74244b977 in 
OCommonEmbeddedObject::LoadDocumentFromStorage_Impl() 
/embeddedobj/source/commonembedding/persistence.cxx:535:19
> #20 0x2ad7423d7bde in OCommonEmbeddedObject::SwitchStateTo_Impl(int) 
/embeddedobj/source/commonembedding/embedobj.cxx:185:49
> #21 0x2ad7423e32ff in OCommonEmbeddedObject::changeState(int) 
/embeddedobj/source/commonembedding/embedobj.cxx:453:13
> #22 0x2ad7424b7057 in 
OCommonEmbeddedObject::getPreferredVisualRepresentation(long) 
/embeddedobj/source/commonembedding/visobj.cxx:168:9
> #23 0x2ad67e08fdb6 in 
comphelper::EmbeddedObjectContainer::GetGraphicReplacementStream(long, 
com::sun::star::uno::Reference const&, 
rtl::OUString*) 

[Libreoffice-bugs] [Bug 140927] Bookmarks vanish when file closed/reopened in Writer (around comments)

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

--- Comment #2 from Dave Lovelace  ---
Created attachment 170381
  --> https://bugs.documentfoundation.org/attachment.cgi?id=170381=edit
Bookmark after close/open showing bookmark not present.

-- 
You are receiving this mail because:
You 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: offapi/com offapi/UnoApi_offapi.mk sw/qa sw/source

2021-03-09 Thread Miklos Vajna (via logerrit)
 offapi/UnoApi_offapi.mk |1 
 offapi/com/sun/star/text/XTextViewTextRangeSupplier.idl |   46 
 sw/qa/uibase/uno/uno.cxx|   43 ++
 sw/source/uibase/inc/unotxvw.hxx|6 ++
 sw/source/uibase/uno/unotxvw.cxx|   27 +
 5 files changed, 123 insertions(+)

New commits:
commit 8e7dc248f2787df0e658c4ece33220944fca7f16
Author: Miklos Vajna 
AuthorDate: Tue Mar 9 11:49:06 2021 +0100
Commit: Miklos Vajna 
CommitDate: Tue Mar 9 20:12:24 2021 +0100

sw: add UNO API to find the closest doc model position based on pixel 
position

The use-case is drag: if an UNO API client registers its drag
listener, then it gets a DropTargetDropEvent and has to decide if it
wants to handle that event or allow Writer to handle it. In case it
decides to handle the event, it would be good to able to e.g. insert a
string at the point where the Writer UI indicates it to the user. But
DropTargetDropEvent only exposes a pixel position and Writer requires
you to have an XTextRange when inserting content.

Fix the problem by introducing a new createTextRangeByPixelPosition()
which first does a pixel -> logic coordinate conversion (this is
window-specific, in case you have multiple windows), then picks the doc
model position which is the closest to a logic coordinate.

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

diff --git a/offapi/UnoApi_offapi.mk b/offapi/UnoApi_offapi.mk
index 020149df1311..21adff7c48f1 100644
--- a/offapi/UnoApi_offapi.mk
+++ b/offapi/UnoApi_offapi.mk
@@ -3841,6 +3841,7 @@ $(eval $(call 
gb_UnoApi_add_idlfiles,offapi,com/sun/star/text,\
XTextViewCursor \
XTextViewCursorSupplier \
XWordCursor \
+   XTextViewTextRangeSupplier \
 ))
 $(eval $(call gb_UnoApi_add_idlfiles,offapi,com/sun/star/ucb,\
AlreadyInitializedException \
diff --git a/offapi/com/sun/star/text/XTextViewTextRangeSupplier.idl 
b/offapi/com/sun/star/text/XTextViewTextRangeSupplier.idl
new file mode 100644
index ..57adf359f756
--- /dev/null
+++ b/offapi/com/sun/star/text/XTextViewTextRangeSupplier.idl
@@ -0,0 +1,46 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+ */
+#ifndef __com_sun_star_text_XTextViewTextRangeSupplier_idl__
+#define __com_sun_star_text_XTextViewTextRangeSupplier_idl__
+
+#include 
+
+#include 
+#include 
+
+module com {  module sun {  module star {  module text {
+
+/** supplies access to a document model position at a view-dependent pixel 
position.
+
+@since LibreOffice 7.2
+ */
+interface XTextViewTextRangeSupplier: com::sun::star::uno::XInterface
+{
+/** @returns
+the text range of the document position.
+ */
+com::sun::star::text::XTextRange createTextRangeByPixelPosition([in] 
com::sun::star::awt::Point PixelPosition);
+
+};
+
+}; }; }; };
+
+#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sw/qa/uibase/uno/uno.cxx b/sw/qa/uibase/uno/uno.cxx
index 01dadbc80fee..f4b337d8f9d2 100644
--- a/sw/qa/uibase/uno/uno.cxx
+++ b/sw/qa/uibase/uno/uno.cxx
@@ -9,10 +9,18 @@
 
 #include 
 
+#include 
+#include 
 #include 
 
 #include 
 
+#include 
+#include 
+#include 
+#include 
+#include 
+
 constexpr OUStringLiteral DATA_DIRECTORY = u"/sw/qa/uibase/uno/data/";
 
 /// Covers sw/source/uibase/uno/ fixes.
@@ -47,6 +55,41 @@ CPPUNIT_TEST_FIXTURE(SwUibaseUnoTest, 
testCondFieldCachedValue)
 getParagraph(2, "1");
 }
 
+CPPUNIT_TEST_FIXTURE(SwUibaseUnoTest, testCreateTextRangeByPixelPosition)
+{
+// Given a document with 2 characters, and the pixel position of the point 
between them:
+SwDoc* pDoc = createSwDoc();
+SwDocShell* pDocShell = pDoc->GetDocShell();
+SwWrtShell* pWrtShell = pDocShell->GetWrtShell();
+pWrtShell->Insert2("AZ");
+pWrtShell->Left(CRSR_SKIP_CHARS, /*bSelect=*/false, 1, 
/*bBasicCall=*/false);
+Point 

[Libreoffice-bugs] [Bug 140927] Bookmarks vanish when file closed/reopened in Writer (around comments)

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

--- Comment #1 from Dave Lovelace  ---
Created attachment 170380
  --> https://bugs.documentfoundation.org/attachment.cgi?id=170380=edit
Screenshot showing both bookmarks present.

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


[Libreoffice-bugs] [Bug 140927] New: Bookmarks vanish when file closed/reopened in Writer (around comments)

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

Bug ID: 140927
   Summary: Bookmarks vanish when file closed/reopened in Writer
(around comments)
   Product: LibreOffice
   Version: 7.0.4.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: davelovel...@gmail.com

Description:
I use bookmarks a lot.  I also use comments a lot.  I have found, absolutely
consistently, that if I have a comment created by highlighting text (at least,
at the beginning of a line) and opening a comment, and then bookmark that line,
the bookmark is there.  If I thereafter close and reopen Writer, the bookmark
has disappeared.  This is a major irritation, as it means I have to separate my
bookmarks from the actual point being bookmarked.

(For the record, it's also a real pain in the neck that there's no indicator
showing that a bookmark is present.  You have to open the bookmarks list and
hunt.  When there are hundreds of bookmarks present, this isn't really
acceptable.  I've seen that I'm not the only one complaining about this point.)



I originally found this to happen on both Linux and Windows 10.  I no longer
have a Linux machine available.  So I'm leaving Hardware and Operating System
showing "All", though I haven't actually tested more than the one Linux system
and three or four different Windows (32- and 64-bit) systems.  At this point I
have no idea what the earliest version where I detected this was; but it was
before July of 2018.


(I posted a report on this almost three years ago, but I guess I put it in the
forum instead of here.  I got one suggestion that I save in native .odt, which
I already was, and one snooty unhelpful comment.  That was eventually closed
for some reason, but apparently no one ever looked at it.)


Steps to Reproduce:
1.Open LO Writer.
2.Enter several lines of text.
3.Insert a bookmark at the beginning of one line.
4.In a DIFFERENT line, select the first few words of text.  Insert a comment
(and type some text in it so the comment stays).
5.Place cursor at beginning of line and insert another bookmark.  Close the
bookmark dialog.
6.Verify that both bookmarks are present.
7.Save and exit the document.  (I don't THINK having other Writer docs open
matters, but it's possible.  When I've actually tested this, I've always done
it without other LO windows open at all.)
8.Reopen the document (in Writer).
9.Verify that bookmark on line with comment has vanished.  (Other bookmark is
still present.)


Actual Results:
Bookmark on line with comment vanishes when document is closed and reopened.

Expected Results:
Bookmarks should not vanish when document is closed and reopened.


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.0.4.2 (x64)
Build ID: dcf040e67528d9187c66b2379df5ea4407429775
CPU threads: 4; OS: Windows 10.0 Build 19042; UI render: Skia/Raster; VCL: win
Locale: en-US (en_US); UI: en-US
Calc: CL

I am not bothering to reset my profile.  This bug has manifested perfectly
consistently on several different computers and versions of LO (on both Linux
and Windows) over several years.  It's not a corrupted profile.

And I do not know whether OpenGL is enabled.  I looked without finding it under
Tools ▸ Options ▸ LibreOffice ▸ View .

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


[Libreoffice-bugs] [Bug 140910] Blank XLSX file generated with OpenXML SDK

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

--- Comment #10 from himajin100...@gmail.com ---
possible source code pointer?

https://opengrok.libreoffice.org/xref/core/oox/source/core/xmlfilterbase.cxx?r=99bc040b#395

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


[Libreoffice-bugs] [Bug 135783] cannot change page style

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

Timur  changed:

   What|Removed |Added

  Component|Writer  |Documentation

--- Comment #12 from Timur  ---
"As expressed there, it should be possible to double-click a page style and
have it applied to the page. In the attachment, it is possible to do this with
other page styles." 
All comment 11 like it's written not taking comment 10.

I explained why: you cannot change Default to Chapitre because Chapitre is
already precedent style and there is no page break.
 It's easy to recreate sample with any style. So nothing special or unexpected
here.

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


[Libreoffice-ux-advise] [Bug 140769] Dragging image slightly up moves image to second page

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

--- Comment #6 from Telesto  ---
(In reply to Heiko Tietze from comment #4)
> The image is on the second page right after opening the document. Arrows and
> dragging doesn't change this for me.
> 
> /not confirmed; no issue

It's actually drag up with mouse or press arrow down

-- 
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 140769] Dragging image slightly up moves image to second page

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

--- Comment #6 from Telesto  ---
(In reply to Heiko Tietze from comment #4)
> The image is on the second page right after opening the document. Arrows and
> dragging doesn't change this for me.
> 
> /not confirmed; no issue

It's actually drag up with mouse or press arrow down

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


[Libreoffice-bugs] [Bug 127234] I can't save result of QR-code generator to PNG with good quality

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

--- Comment #12 from Roman Kuznetsov <79045_79...@mail.ru> ---
(In reply to Telesto from comment #11)

> 
> Apparently QR is generated as SVG. SVG not supported by DOCX/DOC format and
> converted to PNG which goes wrong. I reported the same thing: see bug 135746.

Where in this bug report do you see anything about DOC/DOCX?

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


[Libreoffice-bugs] [Bug 140769] Dragging image slightly up moves image to second page

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

--- Comment #5 from Telesto  ---
Created attachment 170379
  --> https://bugs.documentfoundation.org/attachment.cgi?id=170379=edit
How it looks on file open

-- 
You are receiving this mail because:
You 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 140769] Dragging image slightly up moves image to second page

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

--- Comment #5 from Telesto  ---
Created attachment 170379
  --> https://bugs.documentfoundation.org/attachment.cgi?id=170379=edit
How it looks on file open

-- 
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 140745] AutoFilter dropdown doesn't show (empty) on top of the list with values

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

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

   What|Removed |Added

 OS|Linux (All) |All
 Ever confirmed|0   |1
 Blocks||103512
 Status|UNCONFIRMED |NEW

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

MS Excel place  item always in bottom of the item list.

But I'm not sure that we should move  item to top of the item list. I
think it should be always in bottom as it is in MS Excel now


Referenced Bugs:

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


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

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

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

   What|Removed |Added

 Depends on||140745


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=140745
[Bug 140745] AutoFilter dropdown doesn't show (empty) on top of the list with
values
-- 
You are receiving this mail because:
You 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 140745] AutoFilter dropdown doesn't show (empty) on top of the list with values

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

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

   What|Removed |Added

 OS|Linux (All) |All
 Ever confirmed|0   |1
 Blocks||103512
 Status|UNCONFIRMED |NEW

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

MS Excel place  item always in bottom of the item list.

But I'm not sure that we should move  item to top of the item list. I
think it should be always in bottom as it is in MS Excel now


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103512
[Bug 103512] [META] AutoFilter-related bugs and enhancements
-- 
You are receiving this mail because:
You are 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 127234] I can't save result of QR-code generator to PNG with good quality

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

--- Comment #11 from Telesto  ---
(In reply to Roman Kuznetsov from comment #10)
> (In reply to Telesto from comment #9)
> > As landed at bug 51510 with pretty much the same issue (see duplicate &
> > response Justin L)
> > 
> > *** This bug has been marked as a duplicate of bug 51510 ***
> 
> I'm not sure. Where is a link between saving embedded SVG as PNG into
> DOC/DOCX and bad PNG quality after saving QR code (OLE object) as different
> PNG file?

Apparently QR is generated as SVG. SVG not supported by DOCX/DOC format and
converted to PNG which goes wrong. I reported the same thing: see bug 135746.

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


[Libreoffice-bugs] [Bug 140926] Memory usage still high after presentation has ended

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

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

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


Re: proposition for patch in CommonSalLayout.cxx

2021-03-09 Thread Stanisław Jeśmanowicz


On 3/9/21 6:34 PM, julien2412 wrote:

Stanisław Jeśmanowicz wrote

...
Thank you for your advice, but getting familiar with gerrit on top of git
would take some time for
me now.
I hope, that some of your developers could commit this patch for me in vcl
module.
It is simple and won't harm anything.
But people could benefit from it on all platforms that use system's native
HarfBuzz implementation.
...


I can understand you don't have time for gerrit but would it be possible you
submit a license statement?

I have created an account and can log in to https://gerrit.libreoffice.org/
but it is not clear for me where to submit a license statement.


About this line, I retrieved the initial patches which put this line:
1) earliest
https://cgit.freedesktop.org/libreoffice/core/commit/?id=3cee50476e422e3ed84169cdcbe6bd9883fc9316:
Author: Khaled Hosny 
Date:   Fri Mar 10 16:53:08 2017 +0200

 tdf#106466: Use graphite2 shaper first
 
 We want to always prefer Graphite shaping when supported by the font,

 which is also what HarfBuzz does by default.


This is not always the case, because if a platform didn't include graphite2 shaper in its HarfBuzz 
implementaion, you won't have it anyway ( like ./configure --with-graphite2=no )
Even if you set it the shapers list (as in 
https://cgit.freedesktop.org/libreoffice/core/commit/?id=3cee50476e422e3ed84169cdcbe6bd9883fc9316 )
And if graphite2 shaper is implemented, then it will be first (as you can see in the harfbuzz code: 
https://github.com/harfbuzz/harfbuzz/blob/master/src/hb-shaper-list.hh )

And generally speaking, hard-coded list in such a case disables possible new 
shapers.

 
 Change-Id: I6670fc03b8e6b3d7e07e1b8e0062880524da1655

 Reviewed-on: https://gerrit.libreoffice.org/35046
 Tested-by: Jenkins 
 Reviewed-by: Khaled Hosny 


2) oldest
https://cgit.freedesktop.org/libreoffice/core/commit/?id=7854d35cd8172b201f1f3ad247860f242e5cb06b
Author: Khaled Hosny 
Date:   Thu Oct 6 04:15:41 2016 +0200

 Use HarfBuzz shape plan for a bit more control
 
 This way we control exactly what shapers we use in what order, and as an

 extra we can now tell which shaper HarfBuzz ends up using.

Julien



--
Sent from: 
http://document-foundation-mail-archive.969070.n3.nabble.com/Dev-f1639786.html
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice



Stan

--
__

Stanislaw Jesmanowicz  stan  mail2  jesmanowicz  com
Amsterdam  voice : + 31 20 6126193
The Netherlandsmobile: + 31  653380520
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 140926] New: Memory usage still high after presentation has ended

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

Bug ID: 140926
   Summary: Memory usage still high after presentation has ended
   Product: LibreOffice
   Version: 7.2.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Memory usage still high after presentation has ended

Steps to Reproduce:
1.Open the attached file (and take task manager to see memory usage
2.Press F5
3. Press and hold Enter -> until different sheet set starts
4. Click around few other slides

Actual Results:
950 - 1 GB memory usage.. even after presentation has finished

Expected Results:
500 or


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.2.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: dc3b64dcbfb0a49c0be65bd8d73ed4e6d3828a21
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: nl-NL (nl_NL); UI: nl-NL
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 140895] Cursor and Scrolling, and typing very slow in Writer v7.xx

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

--- Comment #4 from Macktek  ---
I respect your Workaround.
But the only reason it works is because it "works around" the actual bug.

It doesn't actually fix the causative issue.
Now, if you can say that after v7, this bug is fixed, that is fine.
But if v7 suffers transmitting this bug to v8 etc...

then the only fix will always be "safemode", clear your profile.
And MOST people don't actually visit bugzilla and have no idea why there
Libreoffice is slow.

I suspect you guys might know why this bug exists.

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


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

2021-03-09 Thread Mike Kaganski (via logerrit)
 sw/qa/uitest/navigator/tdf114724.py |5 +
 1 file changed, 5 insertions(+)

New commits:
commit acfd19df520693bb0e052d08df152befd7832a41
Author: Mike Kaganski 
AuthorDate: Tue Mar 9 16:57:40 2021 +0100
Commit: Mike Kaganski 
CommitDate: Tue Mar 9 19:47:09 2021 +0100

Add missing comments as per TEMPLATE.SOURCECODE.HEADER

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

diff --git a/sw/qa/uitest/navigator/tdf114724.py 
b/sw/qa/uitest/navigator/tdf114724.py
index ee39921a3285..be4c900d579d 100644
--- a/sw/qa/uitest/navigator/tdf114724.py
+++ b/sw/qa/uitest/navigator/tdf114724.py
@@ -1,3 +1,6 @@
+# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-offset: 4 -*-
+#
+# This file is part of the LibreOffice project.
 #
 # This Source Code Form is subject to the terms of the Mozilla Public
 # License, v. 2.0. If a copy of the MPL was not distributed with this
@@ -44,3 +47,5 @@ class tdf114724(UITestCase):
 
 self.xUITest.executeCommand(".uno:Sidebar")
 self.ui_test.close_doc()
+
+# vim: set shiftwidth=4 softtabstop=4 expandtab:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 109323] [META] Graphic export bugs and enhancements (jpg, png, eps, tiff, gif ...)

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

Bug 127234 Summary: I can't save result of QR-code generator to PNG with good 
quality
https://bugs.documentfoundation.org/show_bug.cgi?id=127234

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|DUPLICATE   |---

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


[Libreoffice-bugs] [Bug 127232] [META] QR-code generator's problems and enhancements

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

Bug 127234 Summary: I can't save result of QR-code generator to PNG with good 
quality
https://bugs.documentfoundation.org/show_bug.cgi?id=127234

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|DUPLICATE   |---

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


[Libreoffice-bugs] [Bug 127234] I can't save result of QR-code generator to PNG with good quality

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

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

   What|Removed |Added

 Resolution|DUPLICATE   |---
 Status|RESOLVED|NEW

--- Comment #10 from Roman Kuznetsov <79045_79...@mail.ru> ---
(In reply to Telesto from comment #9)
> As landed at bug 51510 with pretty much the same issue (see duplicate &
> response Justin L)
> 
> *** This bug has been marked as a duplicate of bug 51510 ***

I'm not sure. Where is a link between saving embedded SVG as PNG into DOC/DOCX
and bad PNG quality after saving QR code (OLE object) as different PNG file?

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


[Libreoffice-bugs] [Bug 136542] swlo!BigPtrArray::Index2Block+0xc8:

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

Telesto  changed:

   What|Removed |Added

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

--- Comment #2 from Telesto  ---
Solved
Version: 7.2.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: dc3b64dcbfb0a49c0be65bd8d73ed4e6d3828a21
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: nl-NL (nl_NL); UI: nl-NL
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 140910] Blank XLSX file generated with OpenXML SDK

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

--- Comment #9 from himajin100...@gmail.com ---
just a guess (possible cause?)

case-sensitiveness of the filename "sheet1.xml" and "Sheet1.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 133340] Slow and choppy slides (with large GIF) after save (fine on file opening) & slow save

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

--- Comment #4 from Telesto  ---
Still around
Version: 7.2.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: dc3b64dcbfb0a49c0be65bd8d73ed4e6d3828a21
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: nl-NL (nl_NL); UI: nl-NL
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 140753] Image tearing while scrolling GDI/SKIA raster with high zoom level

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

Telesto  changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
   Keywords|bibisectRequest, regression |
 Status|UNCONFIRMED |RESOLVED

--- Comment #15 from Telesto  ---
Version: 7.2.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: dc3b64dcbfb0a49c0be65bd8d73ed4e6d3828a21
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: nl-NL (nl_NL); UI: nl-NL
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 129062] [META] Skia library bugs

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

Bug 140753 Summary: Image tearing while scrolling GDI/SKIA raster with high 
zoom level
https://bugs.documentfoundation.org/show_bug.cgi?id=140753

   What|Removed |Added

 Status|UNCONFIRMED |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 134906] [META] Regressions from implementing soft edge and glow effects

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

Bug 140755 Summary: Blurred text in images
https://bugs.documentfoundation.org/show_bug.cgi?id=140755

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 140755] Blurred text in images

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

Luboš Luňák  changed:

   What|Removed |Added

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

--- Comment #9 from Luboš Luňák  ---
If my change "fixes" this, then it's rather just worked around. Rotate the
image slightly, that should still use the old code path and the problem should
be still there. Also the impBufferDevice class is used in other places, so
those may be possibly also affected.

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


[Libreoffice-bugs] [Bug 132590] Export selection cuts off pixels on the right side and at the bottom side

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

Telesto  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 51510] FILESAVE: Exporting documents with embedded SVG to doc or docx converts the image to low-resolution pixel graphics

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

Telesto  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 118675] Low image quality when using special paste bitmap of a shape/textbox

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

Telesto  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 51510] FILESAVE: Exporting documents with embedded SVG to doc or docx converts the image to low-resolution pixel graphics

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

Telesto  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 140680] DOC formula's a blurry hard to read image on file-open (not accessing to 'get proper' rendering)

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

Telesto  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 51510] FILESAVE: Exporting documents with embedded SVG to doc or docx converts the image to low-resolution pixel graphics

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

Telesto  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 103152] [META] Writer image bugs and enhancements

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

Bug 116281 Summary: Slow scrolling with keyboard arrow keys in Writer 
(especially with images)
https://bugs.documentfoundation.org/show_bug.cgi?id=116281

   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 116281] Slow scrolling with keyboard arrow keys in Writer (especially with images)

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

Telesto  changed:

   What|Removed |Added

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

--- Comment #9 from Telesto  ---
Smooth, no issue on Windows
Version: 7.2.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: dc3b64dcbfb0a49c0be65bd8d73ed4e6d3828a21
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: nl-NL (nl_NL); UI: nl-NL
Calc: CL

@Ilmari
Any change to test this against GTK3/KDE to be sure; Skia is likely the best
performing backend at this point in time

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


[Libreoffice-bugs] [Bug 140914] Alt+C does not work to create special characters in Calc

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

--- Comment #10 from Uwe Auer  ---
(In reply to j.eschmann from comment #8)
> I must add that it works now only in the Safe Mode. So if I need many
> special characters I must start the program in the Safe Mode. There should
> be done something to improve the program.

No, you don't need to start in Safe Mode to enter special character. The advice
to perform *Safe Mode* run wasn't meant as a workaround but as a test to figure
out, whether a corrupt user profile could cause your issue. And the fact, that
everything is working in "Safe Mode" as expected, is a clear indicator your
user profile is causing the issue. Therefore the following advice to reset your
user profile.

Please provide a feedback and if everything is OK after having reset the user
profile to factory settings, I'll close this report (your consent provided).

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


[Libreoffice-bugs] [Bug 140569] Feature request: Collapsible objects in Normal view

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

--- Comment #2 from Eyal Rozenberg  ---
(In reply to Heiko Tietze from comment #1)
> Is the new outline mode a viable solution for you?

No, for the following reasons:

* That requires the user to change their LO settings to enable, then change
them back. It is not something inherent in the document.
* It makes a huge number of things collapsible which should not be.
* It doesn't necessarily make what I want to make collapsible, collapsible.
* It typically confuses the user by terminology and UI elements having to do
with outline mode and levels, when all I want is for the user to be able to
collapse and expand some specific element(s) of my choice.


However, the implementation itself may be possibly be useful in also
implementing the feature I suggest.

-- 
You are receiving this mail because:
You 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 140569] Feature request: Collapsible objects in Normal view

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

--- Comment #2 from Eyal Rozenberg  ---
(In reply to Heiko Tietze from comment #1)
> Is the new outline mode a viable solution for you?

No, for the following reasons:

* That requires the user to change their LO settings to enable, then change
them back. It is not something inherent in the document.
* It makes a huge number of things collapsible which should not be.
* It doesn't necessarily make what I want to make collapsible, collapsible.
* It typically confuses the user by terminology and UI elements having to do
with outline mode and levels, when all I want is for the user to be able to
collapse and expand some specific element(s) of my choice.


However, the implementation itself may be possibly be useful in also
implementing the feature I suggest.

-- 
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 140925] Dragging are (super) high resolution PNG in Impress with Skia Raster not as smooth (compared to Writer)

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

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

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


[Libreoffice-bugs] [Bug 40656] Measurement settings are separate for each module - make it to one setting LibreOffice -wide

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

Regina Henschel  changed:

   What|Removed |Added

 CC||rb.hensc...@t-online.de

--- Comment #14 from Regina Henschel  ---
I disagree with a central setting. The use cases for Writer/Calc/Draw/Impress
are very different. Someone might use pt in Writer, because font related things
use pt, whereas in Draw he wants mm to get maximal possible precision visible.
In Calc he might want to use inch to be compatible with Excel, used by his
partner in USA, and in Impress unit cm might be appropriate for him to quickly
recognize sizes.

The measure unit is stored in the file. The unit in Tools > Options > ... >
General is coupled with the unit of the current active document. Only that the
unit which was last set in the dialog is used for new documents.

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


[Libreoffice-bugs] [Bug 129062] [META] Skia library bugs

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

Telesto  changed:

   What|Removed |Added

 Depends on||140925


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=140925
[Bug 140925] Dragging are (super) high resolution PNG in Impress with Skia
Raster not as smooth (compared to Writer)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 140925] Dragging are (super) high resolution PNG in Impress with Skia Raster not as smooth (compared to Writer)

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

Telesto  changed:

   What|Removed |Added

 Blocks||129062


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 140925] New: Dragging are (super) high resolution PNG in Impress with Skia Raster not as smooth (compared to Writer)

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

Bug ID: 140925
   Summary: Dragging are (super) high resolution PNG in Impress
with Skia Raster not as smooth (compared to Writer)
   Product: LibreOffice
   Version: 7.2.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Dragging are (super) high resolution PNG in Impress with Skia Raster not as
smooth (compared to Writer)

Steps to Reproduce:
1. Open the attached file
2. Click and starting dragging left/right.. notice delay

Actual Results:
Some unresponsiveness. 

Expected Results:
Smooth drag & drop (as Writer)


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 7.2.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: dc3b64dcbfb0a49c0be65bd8d73ed4e6d3828a21
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: nl-NL (nl_NL); UI: nl-NL
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 140569] Feature request: Collapsible objects in Normal view

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

Eyal Rozenberg  changed:

   What|Removed |Added

Summary|Feature requeast:   |Feature request:
   |Collapsible objects in  |Collapsible objects in
   |Normal view |Normal view

-- 
You are receiving this mail because:
You 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 140569] Feature request: Collapsible objects in Normal view

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

Eyal Rozenberg  changed:

   What|Removed |Added

Summary|Feature requeast:   |Feature request:
   |Collapsible objects in  |Collapsible objects in
   |Normal view |Normal view

-- 
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 140881] LO fails opening some WOFF and TTF files

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

--- Comment #5 from Eyal Rozenberg  ---
(In reply to Xisco Faulí from comment #4)
> again, it's not a failure, it's a warning

The message is a warning. The content of the message tells us about a _failure_
to open the font file.

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


[Libreoffice-bugs] [Bug 113038] Editing: Working with hi-res png-image is extremely slow

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

Telesto  changed:

   What|Removed |Added

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

--- Comment #12 from Telesto  ---
This is solved with Skia
Version: 7.2.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: dc3b64dcbfb0a49c0be65bd8d73ed4e6d3828a21
CPU threads: 4; OS: Windows 6.3 Build 9600; UI render: Skia/Raster; VCL: win
Locale: nl-NL (nl_NL); UI: nl-NL
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 116109] [META] Regressions introduced by unified Graphic processing to use GraphicPrimitive2D

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

Bug 113038 Summary: Editing: Working with hi-res png-image is extremely slow
https://bugs.documentfoundation.org/show_bug.cgi?id=113038

   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 103152] [META] Writer image bugs and enhancements

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

Bug 113038 Summary: Editing: Working with hi-res png-image is extremely slow
https://bugs.documentfoundation.org/show_bug.cgi?id=113038

   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 140914] Alt+C does not work to create special characters in Calc

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

--- Comment #9 from Uwe Auer  ---
(In reply to j.eschmann from comment #8)
> I must add that it works now only in the Safe Mode. So if I need many
> special characters I must start the program in the Safe Mode. There should
> be done something to improve the program.

Due to you test result, most probably your user profile is corrupt - please
perform a reset of you user profile. Please check
https://wiki.documentfoundation.org/UserProfile on how to reset to factory
settings or perform:

- Start LibreOffice
- Start in **Safe Mode** using `Help -> Restart in Safe Mode` and confirm the
restart using button: `Restart`  
- Archive your profile expanding `Advanced` (click on the word *Advanced* right
above `Help` button) and click `Archive User Profile` button   
- Select option `Reset to factory settings`  
- Activate `[x] Reset entire user profile`  
- Click button `Apply Changes and 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 137456] Bad performance if there is a image visible

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

Telesto  changed:

   What|Removed |Added

 CC||tele...@surfxs.nl

--- Comment #3 from Telesto  ---
This should be solved with 7.0.5

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


[Libreoffice-bugs] [Bug 120200] [META] Update or correct help for features

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

Bug 58136 Summary: Add tooltips to the buttons at the bottom of the Option 
Dialogs and improve help about these buttons
https://bugs.documentfoundation.org/show_bug.cgi?id=58136

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 51510] FILESAVE: Exporting documents with embedded SVG to doc or docx converts the image to low-resolution pixel graphics

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

Telesto  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 140449] PDF Image insertion of high res image results in LOW resolution result

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

Telesto  changed:

   What|Removed |Added

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

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

2021-03-09 Thread Seth Chaiklin (via logerrit)
 cui/uiconfig/ui/optionsdialog.ui |6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

New commits:
commit 1ee086906bd64bd5be3f3af06d2c08da680aaef1
Author: Seth Chaiklin 
AuthorDate: Sat Feb 27 18:33:41 2021 +0100
Commit: Seth Chaiklin 
CommitDate: Tue Mar 9 19:06:28 2021 +0100

tdf#58136 add tooltips to Options dialog buttons

Change-Id: I420365fcf94f8deda0d53d83a5badc4e73dd7342
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111694
Tested-by: Jenkins
Reviewed-by: Heiko Tietze 
Reviewed-by: Seth Chaiklin 

diff --git a/cui/uiconfig/ui/optionsdialog.ui b/cui/uiconfig/ui/optionsdialog.ui
index 75fc99cbbc98..85acd3198c52 100644
--- a/cui/uiconfig/ui/optionsdialog.ui
+++ b/cui/uiconfig/ui/optionsdialog.ui
@@ -51,6 +51,7 @@
 True
 True
 True
+Unsaved modifications to this tab are 
reverted.
 
   
 Resets changes 
made to the current tab to those applicable when this dialog was 
opened.
@@ -70,6 +71,7 @@
 True
 True
 True
+Save all modifications without closing dialog. 
Cannot be reverted with Reset.
   
   
 False
@@ -86,6 +88,7 @@
 True
 True
 True
+Save all changes and close dialog.
 
   
 Saves all changes 
and closes dialog.
@@ -105,9 +108,10 @@
 True
 True
 True
+Discard all unsaved changes and close 
dialog.
 
   
-Closes dialog 
and discards all changes.
+Closes dialog 
and discards all unsaved changes.
   
 
   
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 124539] poor resolution of PDF in the background

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

Telesto  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 51510] FILESAVE: Exporting documents with embedded SVG to doc or docx converts the image to low-resolution pixel graphics

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

Telesto  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 140914] Alt+C does not work to create special characters in Calc

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

--- Comment #8 from j.eschmann  ---
I must add that it works now only in the Safe Mode. So if I need many special
characters I must start the program in the Safe Mode. There should be done
something to improve the program.

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


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

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

New commits:
commit faa13c4f85556c41102c088eb6ca52fa0244fc30
Author: Seth Chaiklin 
AuthorDate: Tue Mar 9 10:00:12 2021 +0100
Commit: Seth Chaiklin 
CommitDate: Tue Mar 9 18:55:12 2021 +0100

tdf#128469 add "Apply" tooltip for all style dialogs

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

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


[Libreoffice-commits] core.git: solenv/gbuild

2021-03-09 Thread Stephan Bergmann (via logerrit)
 solenv/gbuild/platform/unxgcc.mk |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit bad219c25262924fc8bd02e1eceba6bf9a157310
Author: Stephan Bergmann 
AuthorDate: Tue Mar 9 14:44:26 2021 +0100
Commit: Stephan Bergmann 
CommitDate: Tue Mar 9 18:52:46 2021 +0100

Run gdb in `make debugrun` with PYTHONWARNINGS=default, too

...same as fb06d5b1784cb8b91ea6d286b3f2baa38fed0b4c "Run gdb with
PYTHONWARNINGS=default"

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

diff --git a/solenv/gbuild/platform/unxgcc.mk b/solenv/gbuild/platform/unxgcc.mk
index 7ef9d0b4015e..749ba8e17932 100644
--- a/solenv/gbuild/platform/unxgcc.mk
+++ b/solenv/gbuild/platform/unxgcc.mk
@@ -330,7 +330,7 @@ gb_PythonTest_PRECOMMAND := 
$(gb_CppunitTest_CPPTESTPRECOMMAND)
 define gb_Module_DEBUGRUNCOMMAND
 OFFICESCRIPT=`mktemp` && \
 printf 'if [ -e $(INSTROOT)/program/ooenv ]; then . $(INSTROOT)/program/ooenv; 
fi\n' > $${OFFICESCRIPT} && \
-printf "gdb $(INSTROOT)/$(LIBO_BIN_FOLDER)/soffice.bin" >> $${OFFICESCRIPT} && 
\
+printf "PYTHONWARNINGS=default gdb $(INSTROOT)/$(LIBO_BIN_FOLDER)/soffice.bin" 
>> $${OFFICESCRIPT} && \
 printf " -ex \"set args --norestore --nologo '--accept=pipe,name=$(USER);urp;' 
%s\"" \
"$(subst ","\\\"",$(value gb_DBGARGS))" >> $${OFFICESCRIPT} && \
 $(SHELL) $${OFFICESCRIPT} && \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 87483] weird list behavior

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

--- Comment #10 from Juang Dse  ---
bug still there.

Unfortunately I cannot install the 3.3 version anymore.


Version: 7.1.1.2 / LibreOffice Community
Build ID: fe0b08f4af1bacafe4c7ecc87ce55bb426164676
CPU threads: 4; OS: Linux 5.9; UI render: default; VCL: gtk3
Locale: de-DE (en_US.UTF-8); UI: en-US
Calc: threaded

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


[Libreoffice-bugs] [Bug 135783] cannot change page style

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

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

   What|Removed |Added

  Component|Documentation   |Writer

--- Comment #11 from sdc.bla...@youmail.dk ---
(In reply to Timur from comment #7)
> I reproduce but not sure if this is a bug.
I suspect it is a bug, or a problem with the template for Chapitre.

First.  About help.

https://help.libreoffice.org/7.2/en-US/text/swriter/guide/pagestyles.html

As expressed there, it should be possible to double-click a page style and have
it applied to the page. In the attachment, it is possible to do this with other
page styles. 

> Expected Results:
> double-clicking page style Chapitre should change the style, remove the
> header.
I agree that double-clicking should change the style.  And do not understand
why it does not work in this case.  But I do notice that the printer setting is
left and right and that header setting has something about same content on both
pages.  This may have something to do with what is going on in this case.

Meanwhile, click on any other page style on page 2 (e.g., Footnote).  Then it
gets applied to both pages.  Afterwards, on p. 2, click on Chapitre, then it
goes back to the original configuration, consistent with the speculation in the
previous paragraph that it has to do with printer and header settings. iow
there is something special about the configuration of Chapitre in pageB.odt  

(I have also noted -- by loading the Page Styles into a new document that
applying Chapitre makes the page to be page 0.)

> Let's convert to Documentation to be explained in help.
Putting this back to Writer.  The issue is not about double-clicking to apply
page styles.  I do not know enough about left/right pages and header to know
what to expect here.  (maybe there is something in the help pages that is
relevant).  For example, this page might give TorrAB enough insight to be able
to do what is wanted.

https://help.libreoffice.org/7.2/en-US/text/swriter/guide/even_odd_sdw.html

Of course put it back to Documentation if it is possible to identify a specific
information that should be added a specific place.

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


Bug 140865 - FILEOPEN FILESAVE PPTX: Wordart 3D is lost on round trip

2021-03-09 Thread Regina Henschel

Hi all,

I have a fix for it in https://gerrit.libreoffice.org/c/core/+/112185

But I'm not (yet) familiar with oox, so I would appreciate, if someone 
of you oox experts would have a look at it.


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


[Libreoffice-bugs] [Bug 140590] Crash in: mergedlo.dll: Using Save-As dialog in Tools>Chapter Numbering

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

--- Comment #10 from Noel Grandin  ---
(In reply to sdc.blanco from comment #7)
> Attachment 170368 [details].

Fix here
   https://gerrit.libreoffice.org/c/core/+/112233
but this only affects assert or debug builds, so might not fix all the issues
here.

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


[Libreoffice-bugs] [Bug 140914] Alt+C does not work to create special characters in Calc

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

--- Comment #7 from j.eschmann  ---
I tried: It works in Safe Mode just as I wanted to have it.

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

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

--- Comment #1 from Harold Cheyney  ---
Was able to fix this by running sudo apt upgrade.

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


Re: Integer overflow in Calc lcl_getSingleCellAddressFromXMLString nColumn computation

2021-03-09 Thread Regina Henschel

Hi Stephan,

in regard to table:cell-range-address the following bug is relevant too:
https://bugs.documentfoundation.org/show_bug.cgi?id=131862
ODF: Remove deprecated attribute table:cell-range-address from element 



Kind regards
Regina

Stephan Bergmann schrieb am 09.03.2021 um 16:10:

On 08/03/2021 20:18, Regina Henschel wrote:
Your problem with table:cell-range-address="PivotChart" might be 
related to bug https://bugs.documentfoundation.org/show_bug.cgi?id=112783
"PIVOT CHARTS: Save produces invalid file because of invalid cell 
address"


Ah, thanks, that's a reassuring reference.  So I've created 
 "Avoid 
signed-integer-overflow parsing table:cell-range-address='PivotChart'" now.


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



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


[Libreoffice-bugs] [Bug 140924] Broken "Select Your Preferred User Interface" window when SAL_USE_VCLPLUGIN is set to "kf5"

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

--- Comment #1 from domk...@wp.pl ---
Created attachment 170376
  --> https://bugs.documentfoundation.org/attachment.cgi?id=170376=edit
User Interface switcher 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 140924] New: Broken "Select Your Preferred User Interface" window when SAL_USE_VCLPLUGIN is set to "kf5"

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

Bug ID: 140924
   Summary: Broken "Select Your Preferred User Interface" window
when SAL_USE_VCLPLUGIN is set to "kf5"
   Product: LibreOffice
   Version: 7.1.1.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: domk...@wp.pl

Description:
After select "☰" -> User Interface... window is empty (only if
SAL_USE_VCLPLUGIN is set to "kf5")

Steps to Reproduce:
1.Set: export SAL_USE_VCLPLUGIN=kf5
2. Run libreoffice --writer //or calc etc.
3. Window to switching user interface it's unusable 

Actual Results:
Empty "Select Your Preferred User Interface" window.

Expected Results:
"Select Your Preferred User Interface" window with selectable UI type.


Reproducible: Always


User Profile Reset: Yes



Additional Info:
Version: 7.1.1.2 / LibreOffice Community
Build ID: 10(Build:2)
CPU threads: 8; OS: Linux 5.11; UI render: GL; VCL: kf5
Locale: pl-PL (pl_PL.UTF-8); UI: en-US
7.1.1-1
Calc: threaded

Operating System: Arch Linux
KDE Plasma Version: 5.21.2
KDE Frameworks Version: 5.79.0
Qt Version: 5.15.2
Kernel Version: 5.11.4-arch1-1
OS Type: 64-bit
Graphics Platform: X11
Processors: 8 × Intel® Core™ i7-4790K CPU @ 4.00GHz
Memory: 15.6 GiB of RAM
Graphics Processor: GeForce GTX 980/PCIe/SSE2

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

2021-03-09 Thread dante (via logerrit)
 starmath/inc/parse5.hxx |   12 +--
 starmath/qa/cppunit/test_cursor.cxx |8 +-
 starmath/qa/cppunit/test_node.cxx   |2 
 starmath/qa/cppunit/test_nodetotextvisitors.cxx |   20 ++---
 starmath/qa/cppunit/test_parse.cxx  |4 -
 starmath/source/cursor.cxx  |2 
 starmath/source/parse.cxx   |4 -
 starmath/source/parse5.cxx  |   88 
 8 files changed, 70 insertions(+), 70 deletions(-)

New commits:
commit 2dc105d9742814f9627d91232a47913ee105b103
Author: dante 
AuthorDate: Mon Mar 8 17:35:42 2021 +0100
Commit: Noel Grandin 
CommitDate: Tue Mar 9 17:47:12 2021 +0100

Rename SmParser to SmParser5

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

diff --git a/starmath/inc/parse5.hxx b/starmath/inc/parse5.hxx
index 053202a56d10..1d312351fb36 100644
--- a/starmath/inc/parse5.hxx
+++ b/starmath/inc/parse5.hxx
@@ -25,7 +25,7 @@
 
 #include "parsebase.hxx"
 
-class SmParser : public AbstractSmParser
+class SmParser5 : public AbstractSmParser
 {
 OUString m_aBufferString;
 SmToken m_aCurToken;
@@ -45,8 +45,8 @@ class SmParser : public AbstractSmParser
 // pointer to System locale's CharClass, which is alive inside SM_MOD()
 const CharClass* m_pSysCC;
 
-SmParser(const SmParser&) = delete;
-SmParser& operator=(const SmParser&) = delete;
+SmParser5(const SmParser5&) = delete;
+SmParser5& operator=(const SmParser5&) = delete;
 
 // Moves between tokens inside starmath code.
 void NextToken();
@@ -94,8 +94,8 @@ class SmParser : public AbstractSmParser
 // end of grammar
 
 public:
-SmParser();
-virtual ~SmParser();
+SmParser5();
+virtual ~SmParser5();
 
 /** Parse rBuffer to formula tree */
 std::unique_ptr Parse(const OUString& rBuffer);
@@ -115,6 +115,6 @@ public:
 const std::set& GetUsedSymbols() const { return m_aUsedSymbols; }
 };
 
-inline bool SmParser::TokenInGroup(TG nGroup) { return bool(m_aCurToken.nGroup 
& nGroup); }
+inline bool SmParser5::TokenInGroup(TG nGroup) { return 
bool(m_aCurToken.nGroup & nGroup); }
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/starmath/qa/cppunit/test_cursor.cxx 
b/starmath/qa/cppunit/test_cursor.cxx
index 720a885be3a3..1d5e5fad6d04 100644
--- a/starmath/qa/cppunit/test_cursor.cxx
+++ b/starmath/qa/cppunit/test_cursor.cxx
@@ -67,7 +67,7 @@ void Test::tearDown()
 
 void Test::testCopyPaste()
 {
-auto xTree = SmParser().Parse("a * b + c");
+auto xTree = SmParser5().Parse("a * b + c");
 xTree->Prepare(xDocShRef->GetFormat(), *xDocShRef, 0);
 
 SmCursor aCursor(xTree.get(), xDocShRef.get());
@@ -89,7 +89,7 @@ void Test::testCopyPaste()
 
 void Test::testCopySelectPaste()
 {
-auto xTree = SmParser().Parse("a * b + c");
+auto xTree = SmParser5().Parse("a * b + c");
 xTree->Prepare(xDocShRef->GetFormat(), *xDocShRef, 0);
 
 SmCursor aCursor(xTree.get(), xDocShRef.get());
@@ -115,7 +115,7 @@ void Test::testCopySelectPaste()
 
 void Test::testCutPaste()
 {
-auto xTree = SmParser().Parse("a * b + c");
+auto xTree = SmParser5().Parse("a * b + c");
 xTree->Prepare(xDocShRef->GetFormat(), *xDocShRef, 0);
 
 SmCursor aCursor(xTree.get(), xDocShRef.get());
@@ -137,7 +137,7 @@ void Test::testCutPaste()
 
 void Test::testCutSelectPaste()
 {
-auto xTree = SmParser().Parse("a * b + c");
+auto xTree = SmParser5().Parse("a * b + c");
 xTree->Prepare(xDocShRef->GetFormat(), *xDocShRef, 0);
 
 SmCursor aCursor(xTree.get(), xDocShRef.get());
diff --git a/starmath/qa/cppunit/test_node.cxx 
b/starmath/qa/cppunit/test_node.cxx
index e543ac04027c..c51b86759879 100644
--- a/starmath/qa/cppunit/test_node.cxx
+++ b/starmath/qa/cppunit/test_node.cxx
@@ -64,7 +64,7 @@ void NodeTest::tearDown()
 
 void NodeTest::testTdf47813()
 {
-SmParser aParser;
+SmParser5 aParser;
 #define MATRIX "matrix {-2#33##4#-5##6,0#7}"
 auto pNodeA = aParser.Parse(MATRIX);
 auto pNodeC = aParser.Parse("alignc " MATRIX);
diff --git a/starmath/qa/cppunit/test_nodetotextvisitors.cxx 
b/starmath/qa/cppunit/test_nodetotextvisitors.cxx
index 70cc01512f92..5d1694197b30 100644
--- a/starmath/qa/cppunit/test_nodetotextvisitors.cxx
+++ b/starmath/qa/cppunit/test_nodetotextvisitors.cxx
@@ -442,12 +442,12 @@ void Test::parseandparseagain(const char* formula, const 
char* test_name)
 
 // parse 1
 OUString input = OUString::createFromAscii(formula);
-auto pNode1 = SmParser().ParseExpression(input);
+auto pNode1 = SmParser5().ParseExpression(input);
 pNode1->Prepare(xDocShRef->GetFormat(), *xDocShRef, 0);
 SmNodeToTextVisitor(pNode1.get(), output1);
 
 // parse 2
-auto pNode2 = SmParser().ParseExpression(output1);
+auto pNode2 = 

[Libreoffice-bugs] [Bug 140641] Chapter Numbering dialog "forgets" a loaded Numbering in switching from Numbering to Position tab and back, if no modifications are made in Position tab

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

--- Comment #11 from sdc.bla...@youmail.dk ---
(In reply to Timur from comment #9)
> value in Position is lost if not accepted with Ok before returning to
> Numbering
I think I have found a reliable case where Position is lost in Save As.

1. Leave Numbering as "None" or choose a numbering scheme in the Number field.
2. In Position, set Numbering Alignment as "Centered" for a few levels.
3. Save as "Centered" (or whatever)
4. Set the "position" to "Left" manually.
5. Load/Save > Centered 
Result:  Position remains at "Left", the "Centered" is not saved.

Tested in Safe Mode

Version: 7.2.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 72841008bf422dfd8553240b3a78f0474d03523c
CPU threads: 8; OS: Windows 10.0 Build 19041; UI render: default; VCL: win
Locale: en-US (en_DK); UI: en-US
Calc: threaded

(but other times position is remembered, for example, when I was not working in
Safe Mode. Not sure what is critical here.)

(see bug 140800 for an enhancement request for the Load/Save 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-commits] core.git: vcl/source

2021-03-09 Thread Noel (via logerrit)
 vcl/source/edit/textundo.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3dfe1df0f1084b06c7d4c95df387253b2e058cd6
Author: Noel 
AuthorDate: Tue Mar 9 12:08:43 2021 +0200
Commit: Noel Grandin 
CommitDate: Tue Mar 9 17:46:29 2021 +0100

this should be dynamic_cast

accidentally broken with
commit e4e80ed313882f9ea1b309054e5aa3e839586516
Date:   Sat Mar 6 20:40:58 2021 +0200
loplugin:staticdynamic now with extra salt

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

diff --git a/vcl/source/edit/textundo.cxx b/vcl/source/edit/textundo.cxx
index e7c2fe1c76aa..89dd0c50f316 100644
--- a/vcl/source/edit/textundo.cxx
+++ b/vcl/source/edit/textundo.cxx
@@ -273,7 +273,7 @@ void TextUndoInsertChars::Redo()
 
 bool TextUndoInsertChars::Merge( SfxUndoAction* pNextAction )
 {
-TextUndoInsertChars* pNext = 
static_cast(pNextAction);
+TextUndoInsertChars* pNext = 
dynamic_cast(pNextAction);
 if ( !pNext )
 return false;
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 57147] EDITING: Paste stops working after several copy-paste (steps: comment 28)

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

--- Comment #60 from Orwel  ---
Hi, as I also faced the copy-pasted bug so I have tested the proposed nightly
build for a hour and for me it seems to work.

For further purposes I also add my description of the problem I had faced, as I
did not see this behavior mentioned in other bugs:

Copying text from any 3rd party source (web-Firefox, pdf-Foxit Reader, MS
Word...) etc worked only sometimes (alike as in other bug reports), mostly
first time. 

But I had noticed that LO recognized the text which was clipboarded in 3rd
party indeed, as the clipboarded text you could paste for example in the FONT
NAME rectangle or to SET PARAGRAPH STYLE rectangle (placed between icons)
although PASTE did not work directly to Document/Writer. 
This happened after I had upgraded from 6.4 to 7.0/7.1. So in the case the
paste/paste without formatting did not work, I used to paste the clipboarded
text firstly into FONT NAME rectangle (which worked) and the copied it (CTRL+A,
CTRL+C) one more time to the clipboard and after this the PASTE into the
Writer/Document text worked. So there was some problem with pasting the text
only directly to Writer/Document. Maybe this helps a bit.

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


[Libreoffice-bugs] [Bug 140800] Improve dialog for saving/loading Outline Formats in Tools > Chapter Numbering (see comment 8)

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

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

   What|Removed |Added

Summary|Improve dialog for  |Improve dialog for
   |saving/loading Outline  |saving/loading Outline
   |Formats in Tools > Chapter  |Formats in Tools > Chapter
   |Numbering   |Numbering (see comment 8)

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


[Libreoffice-bugs] [Bug 103370] [META] Outline/Chapter numbering bugs and enhancements

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

Bug 140800 Summary: Improve dialog for saving/loading Outline Formats in Tools 
> Chapter Numbering
https://bugs.documentfoundation.org/show_bug.cgi?id=140800

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|DUPLICATE   |---

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


[Libreoffice-bugs] [Bug 140800] Improve dialog for saving/loading Outline Formats in Tools > Chapter Numbering

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

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

   What|Removed |Added

 Status|RESOLVED|REOPENED
Summary|Crash when all entries in   |Improve dialog for
   |Load/Save chapter numbering |saving/loading Outline
   |are filled  |Formats in Tools > Chapter
   ||Numbering
 Resolution|DUPLICATE   |---

--- Comment #8 from sdc.bla...@youmail.dk ---
New Description.

1. Tools > Chapter Numbering is where it is necessary to add numbering/bullets
(and format their layout) for Heading 1-10.

2.  At present, the Load/Save dialog offers the possibility to "save" a design
(stored in {user profile}/config/chapter.cfg), which can then be loaded into
other documents.

3.  As noted in comment 2, maybe a new approach is needed.

4.  Meanwhile, where are problems with current design that a new design should
address.

A.  There needs to be a way to "reset" the dialog (i.e., values for numbering
and position at different levels) to "null/initial state"), or maybe just a
"New" command to get a "clean sheet" from which to start.

B. In current design, it is possible to load an "empty" entry, but maybe the
dropdown list should only show actually existing formats, so that you do not
have to guess if the entry has been configured or not.

C.  There are some experiences (also by Timur) that "Position" information is
not always saved (but have not found reliable STR) or maybe there is a problem
with how Loading is working in relation to position (that makes it look like
information is lost).  

In short, from user PoV (independently of how implemented): 
- "Save as" should save numbering and position information for all levels.
- Loading a "saved entry" should completely update the loaded values for
numbering and position for all levels, according to the saved entry. 
- Preview should be updated when loading a saved entry to correspond to the
saved entry.

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


[Libreoffice-bugs] [Bug 140674] EDITING Autocorrect no longer works with Change Tracking enabled

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

--- Comment #2 from Commit Notification 
 ---
László Németh committed a patch related to this issue.
It has been pushed to "master":

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

tdf#140674 sw change tracking: fix :emoji: replacement

It will be available in 7.2.0.

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

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

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


[Libreoffice-bugs] [Bug 140674] EDITING Autocorrect no longer works with Change Tracking enabled

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.2.0

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


[Libreoffice-commits] core.git: sw/qa sw/source test/user-template

2021-03-09 Thread László Németh (via logerrit)
 sw/qa/extras/uiwriter/uiwriter.cxx  |   35 
 sw/source/core/doc/DocumentRedlineManager.cxx   |4 +-
 test/user-template/user/autocorr/acor_en-GB.dat |binary
 3 files changed, 37 insertions(+), 2 deletions(-)

New commits:
commit db999ddee7a890390f66d7e34906066c8bf178da
Author: László Németh 
AuthorDate: Mon Mar 8 14:13:39 2021 +0100
Commit: László Németh 
CommitDate: Tue Mar 9 17:42:04 2021 +0100

tdf#140674 sw change tracking: fix :emoji: replacement

Regression from commit 2951c96bcb673a260a09e2c6eb92ca0f99bf0c18
(tdf#83419 sw change tracking: clean-up autocorrect).

Note: only :snowman: -> ☃ was added to the test autocorrect
file acor_en-GB.dat.

Change-Id: Ic3013e969ab937a5f9e5b6d1a6fac2f533b541f8
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/112166
Tested-by: Jenkins
Reviewed-by: László Németh 

diff --git a/sw/qa/extras/uiwriter/uiwriter.cxx 
b/sw/qa/extras/uiwriter/uiwriter.cxx
index 9c2719f99638..c39659fa9bab 100644
--- a/sw/qa/extras/uiwriter/uiwriter.cxx
+++ b/sw/qa/extras/uiwriter/uiwriter.cxx
@@ -399,6 +399,7 @@ public:
 void testSpellOnlineParameter();
 void testRedlineAutoCorrect();
 void testRedlineAutoCorrect2();
+void testEmojiAutoCorrect();
 #if HAVE_FEATURE_PDFIUM
 void testInsertPdf();
 #endif
@@ -631,6 +632,7 @@ public:
 CPPUNIT_TEST(testSpellOnlineParameter);
 CPPUNIT_TEST(testRedlineAutoCorrect);
 CPPUNIT_TEST(testRedlineAutoCorrect2);
+CPPUNIT_TEST(testEmojiAutoCorrect);
 #if HAVE_FEATURE_PDFIUM
 CPPUNIT_TEST(testInsertPdf);
 #endif
@@ -7771,6 +7773,39 @@ void SwUiWriterTest::testRedlineAutoCorrect2()
 CPPUNIT_ASSERT_EQUAL(sReplaced, 
static_cast(pDoc->GetNodes()[nIndex])->GetText());
 }
 
+void SwUiWriterTest::testEmojiAutoCorrect()
+{
+SwDoc* pDoc = createDoc("redline-autocorrect2.fodt");
+SwWrtShell* pWrtShell = pDoc->GetDocShell()->GetWrtShell();
+
+// Emoji replacement (:snowman: -> ☃)
+
+// without change tracking
+CPPUNIT_ASSERT(!(pWrtShell->GetRedlineFlags() & RedlineFlags::On));
+SwAutoCorrect corr(*SvxAutoCorrCfg::Get().GetAutoCorrect());
+pWrtShell->Insert(":snowman");
+pWrtShell->AutoCorrect(corr, ':');
+sal_uLong nIndex = pWrtShell->GetCursor()->GetNode().GetIndex();
+OUString sReplaced = u"☃Lorem,";
+nIndex = pWrtShell->GetCursor()->GetNode().GetIndex();
+CPPUNIT_ASSERT_EQUAL(sReplaced, 
static_cast(pDoc->GetNodes()[nIndex])->GetText());
+
+// with change tracking (showing redlines)
+RedlineFlags const nMode(pWrtShell->GetRedlineFlags() | RedlineFlags::On);
+CPPUNIT_ASSERT(nMode & (RedlineFlags::ShowDelete | 
RedlineFlags::ShowInsert));
+pWrtShell->SetRedlineFlags(nMode);
+CPPUNIT_ASSERT(nMode & RedlineFlags::On);
+CPPUNIT_ASSERT(nMode & RedlineFlags::ShowDelete);
+
+pWrtShell->Insert(":snowman");
+pWrtShell->AutoCorrect(corr, ':');
+sReplaced = u"☃☃Lorem,";
+nIndex = pWrtShell->GetCursor()->GetNode().GetIndex();
+
+// tdf#140674 This was ":snowman:" instead of autocorrect
+CPPUNIT_ASSERT_EQUAL(sReplaced, 
static_cast(pDoc->GetNodes()[nIndex])->GetText());
+}
+
 void SwUiWriterTest::testTdf108423()
 {
 SwDoc* pDoc = createDoc();
diff --git a/sw/source/core/doc/DocumentRedlineManager.cxx 
b/sw/source/core/doc/DocumentRedlineManager.cxx
index d694fff83154..8f8688702a18 100644
--- a/sw/source/core/doc/DocumentRedlineManager.cxx
+++ b/sw/source/core/doc/DocumentRedlineManager.cxx
@@ -2555,7 +2555,7 @@ SwRedlineTable::size_type 
DocumentRedlineManager::GetRedlinePos( const SwNode& r
 // #TODO - add 'SwExtraRedlineTable' also ?
 }
 
-bool DocumentRedlineManager::HasRedline( const SwPaM& rPam, RedlineType nType, 
bool bStartOrEndInRange ) const // xxx
+bool DocumentRedlineManager::HasRedline( const SwPaM& rPam, RedlineType nType, 
bool bStartOrEndInRange ) const
 {
 SwPosition currentStart(*rPam.Start());
 SwPosition currentEnd(*rPam.End());
@@ -2576,7 +2576,7 @@ bool DocumentRedlineManager::HasRedline( const SwPaM& 
rPam, RedlineType nType, b
 if ( currentStart < *pTmp->End() && *pTmp->Start() <= currentEnd &&
  // starting or ending within the range
  ( !bStartOrEndInRange ||
- ( currentStart <= *pTmp->Start() || *pTmp->End() <= 
currentEnd ) ) )
+ ( currentStart < *pTmp->Start() || *pTmp->End() < currentEnd 
) ) )
 {
 return true;
 }
diff --git a/test/user-template/user/autocorr/acor_en-GB.dat 
b/test/user-template/user/autocorr/acor_en-GB.dat
index b74f1834caac..ae2f12db59d8 100644
Binary files a/test/user-template/user/autocorr/acor_en-GB.dat and 
b/test/user-template/user/autocorr/acor_en-GB.dat differ
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 83946] [META] Tracking changes issues

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

Bug 140674 Summary: EDITING Autocorrect no longer works with Change Tracking 
enabled
https://bugs.documentfoundation.org/show_bug.cgi?id=140674

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 140674] EDITING Autocorrect no longer works with Change Tracking enabled

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

László Németh  changed:

   What|Removed |Added

   Assignee|nem...@numbertext.org   |libreoffice-b...@lists.free
   ||desktop.org
 Resolution|--- |FIXED
 Status|ASSIGNED|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 118129] The implementation of the ooo.vba.excel.XWindow.Caption property getter obviously does not work as intended

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

Andreas Heinisch  changed:

   What|Removed |Added

   Assignee|andreas.heini...@yahoo.de   |libreoffice-b...@lists.free
   ||desktop.org
 Status|ASSIGNED|NEW

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


[Libreoffice-bugs] [Bug 140922] not a bug, it is a suggestion for libreoffice: upper and lower cases for Day or day in insert>field>more fields>type date>extra formats>date> personal day format

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

jazei-AR  changed:

   What|Removed |Added

Summary|not a bug, it is a  |not a bug, it is a
   |suggestion for libreoffice: |suggestion for libreoffice:
   |upper and lower cases for   |upper and lower cases for
   |Day or day in   |Day or day in
   |insert>field>date> personal |insert>field>more
   |day format  |fields>type date>extra
   ||formats>date> personal day
   ||format

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


[Libreoffice-bugs] [Bug 140923] New: Calc and Macro IDE UI Scaling Issues On Mac

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

Bug ID: 140923
   Summary: Calc and Macro IDE UI Scaling Issues On Mac
   Product: LibreOffice
   Version: 7.1.1.2 release
  Hardware: x86-64 (AMD64)
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: libreb...@osxtra.dev

Created attachment 170375
  --> https://bugs.documentfoundation.org/attachment.cgi?id=170375=edit
Screen Shots Showing Scaling Differences

Can be overcome, so not critical, just annoying.  ;)

OSX 10.15 (Catalina - Cannot say for sure if other versions of MacOS are
affected.(

I believe this began with LO v7.0

When using identical multiple monitors with different scaling, neither Calc nor
the macro IDE render properly on the monitor scaled to less than 100%.

Using two identical 28" 4K monitors (3840 x 2160).  One is scaled to the
default (100%), while the other is scaled to appear as 2560 x 1440.

Please see attached screen shots.

Dragging a calc window back and forth between the screens reproduces the look.

Dragging a macro IDE window to the other screen does NOT reproduce the look. 
It depends on where it was opened.  If opened on the "100%" screen, it looks
OK, and remains OK even after being dragged to the other screen.  If opened on
the "scaled" screen, it remains wrong even after being dragged to the "100%"
screen.  

When "wrong", the IDE inconsistency can be reproduced by using the mouse to
click into the library drop-down.  If keyboard arrows are used to navigate to a
library, the drop-down changes to look OK until the mouse is again used.  The
code area always appears to look OK.

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


[Libreoffice-bugs] [Bug 140922] New: not a bug, it is a suggestion for libreoffice: upper and lower cases for Day or day in insert>field>date> personal day format

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

Bug ID: 140922
   Summary: not a bug, it is a suggestion for libreoffice: upper
and lower cases for Day or day in insert>field>date>
personal day format
   Product: LibreOffice
   Version: 7.1.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: olasenela...@gmail.com

Description:
going to "insert" from menu bar >fied>more fields Ctrl+F12>extra formats below
of the list of actual formats:
i'd like to suggester this change: use Day or day upper or lowe case sensitive
format for the first letter of the word of the day: Monday (suggested from me)
or monday (actual format now) Sat. or sat. etc.
sintax: NNN DD/MM/AA for actual format and suggestion new format: Nnn DD/MM/...
note upper or lower 1º letter D or d: NNN or Nnn

Actual Results:
a suggestion not a bug

Expected Results:
add Nnn to existing NNN or N and n to short format of the days


Reproducible: Didn't try


User Profile Reset: No



Additional Info:
sorry for mi english

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


[Libreoffice-bugs] [Bug 134906] [META] Regressions from implementing soft edge and glow effects

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

Bug 136841 Summary: Arrow image shows up black after docx export
https://bugs.documentfoundation.org/show_bug.cgi?id=136841

   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 136841] Arrow image shows up black after docx export

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

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org
 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #4 from Xisco Faulí  ---
This issue is fixed by

author  Luboš Luňák  2021-03-04 15:35:44 +0100
committer   Luboš Luňák  2021-03-08 13:46:36
+0100
commit  6b8c157a0b4f37a09fdbf656919b2df06a3abc3e (patch)
tree52451b3b5152511cb4fb68a2f09867bc9db85592
parent  db2e9619397f1e53232824a649b5ad0ba3dd368a (diff)
make RenderMaskPrimitive2DPixel() clip using clipping (tdf#140797)

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


<    1   2   3   4   5   >