[Libreoffice-bugs] [Bug 144096] "underdots" are too fine (in PDF export)

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

--- Comment #2 from Ulrich Windl  ---
Created attachment 174547
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174547&action=edit
PDF export for attachment 174546

Here is an example export

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

[Libreoffice-bugs] [Bug 144096] "underdots" are too fine (in PDF export)

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

Ulrich Windl  changed:

   What|Removed |Added

 CC||ulrich.wi...@rz.uni-regensb
   ||urg.de

--- Comment #1 from Ulrich Windl  ---
Created attachment 174546
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174546&action=edit
Sample document (test case)

For the screen shot the dots are distinguishable at roughly 400% zoom.
Here is a test case document reproducing the problem (PDF will follow).

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

[Libreoffice-bugs] [Bug 144096] New: "underdots" are too fine (in PDF export)

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

Bug ID: 144096
   Summary: "underdots" are too fine (in PDF export)
   Product: LibreOffice
   Version: 7.1.5.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ulrich.wi...@rz.uni-regensburg.de

Created attachment 174545
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174545&action=edit
Screenshot showing PDF in Adobe Reader (Windows) at high zoom-in

(I can't remember whether ever or when I had used "underdots" (underlining
using dots) last)
Using "underdots" at font size 14 point resulted in a PDF that had no
distinguishable point at 100% zoom. It seems the dots are too dense (see
attachment).

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

[Libreoffice-bugs] [Bug 144001] Crash while deleting work or opening workbook

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

Henrik Palomäki  changed:

   What|Removed |Added

 CC||henrik.palom...@yandex.com

--- Comment #4 from Henrik Palomäki  ---
Cannot reproduce the bug.

The attached file seems to open without any errors. Only some cells contain
weird "jaa" words that don't exists when opening the file in MS Excel. I guess
they have some meaning. Also, deleting cells with a "Del", "Delete Rows" or
"Delete  Columns" keys seem to work and does not crash the Calc. Finally,
Opening an existing workbook works as excepted. It opens normally.

Version: 7.3.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 0224d859b8a497779611cc15943c017ec42f9b90
CPU threads: 8; OS: Windows 10.0 Build 19043; UI render: Skia/Raster; VCL: win
Locale: fi-FI (fi_FI); UI: en-US
Calc: CL

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

[Libreoffice-bugs] [Bug 142307] Upgrade SSE2 sum to AVX512 sum with Neumaier (precise fp-sum)

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

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

https://git.libreoffice.org/core/commit/5b9cf5881ef53fac5f1d8376f687dbadf9d3cf2b

tdf#142307 - Upgrade SSE2 sum to AVX512 sum with Neumaier 1

It will be available in 7.3.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] [Bug 142307] Upgrade SSE2 sum to AVX512 sum with Neumaier (precise fp-sum)

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.3.0

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

[Libreoffice-bugs] [Bug 84837] Make show/hide comments UNO command work in Calc

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

jobsflyer  changed:

   What|Removed |Added

URL||https://jobsflyer.com

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

[Libreoffice-bugs] [Bug 137737] REPLACE not working if there is a footnote or endnote anchor at end of paragraph

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

--- Comment #15 from Mike Kaganski  ---
(In reply to Justin L from comment #14)
> I don't think ^ specifically means "beginning of paragraph" in every
> context. I would expect it to be the beginning of the search string. So if
> only a selection of text was chosen, it would refer to the beginning of the
> selection (and if the selection contained multiple lines[aka paragraphs], it
> would also match the beginning of these other lines).

No. It must match start of the paragraph to behave according to least surprise
principle.

The caret is a special kind of a look-behind assertion, and as such, it needs
to consider the data *to the left* of current position. Consider a look-behind
condition like

  (?<=\s).

It must only succeed if the previous character was a "space". Then in a text
like

  lorem ipsum

when you select only the second word "ipsum", and use "current selection only",
you would have the "i" *matching* the regex. If you would not consider the text
outside of the selection as the context, you would not be able to match the
starting character, or you would need to select the character before this.
(Yes, there are ways to create more sophisticated queries, but they would
likely be less specific - e.g., using ^ as alternative in (?<=^|\s) would also
match starts of paragraphs in selections spanning over paragraph boundaries,
which is likely not what user wanted.)

Regex engines also have this idea, expressed in e.g. icu::RegexMatcher::region
[1] allowing to search inside a specific region, but considering the data
outside of it as the context (configurable though).

[1]
https://unicode-org.github.io/icu-docs/apidoc/released/icu4c/classicu_1_1RegexMatcher.html#a556e40af5e725121ad23944b24e0fb1b

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

[Libreoffice-bugs] [Bug 90871] Drop-down and pop-up menus can open down behind Windows taskbar [Windows, multimonitor]

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

--- Comment #35 from Lars Jødal  ---
Still reproducible with LO 7.1.5.2. Tested with the procedure from comment 30.
The pop-up menu adjusts itself according to screen bottom, not according to the
Windows taskbar 

For easier reproduction, the Windows taskbar may be given a larger-than-normal
height before the test. If the height of the taskbar is e.g. tripled, then it
becomes easy to demonstrate that the pop-up menu can extend down below the
taskbar. As noted earlier, the bug is not present with single-monitor systems,
only two-monitor systems (and perhaps those with even more monitors). If I pull
the connection from one of my two monitors, then the bug goes away: The pop-up
menu aligns itself according to space above the taskbar, i.e. not behind it.
Re-establishing the connection, the bug is back. (Just unplugging and plugging
a monitor, no restart of LO or Windows.)

Version: 7.1.5.2 (x64) / LibreOffice Community
Build ID: 85f04e9f809797b8199d13c421bd8a2b025d52b5
CPU threads: 4; OS: Windows 10.0 Build 18363; UI render: Skia/Raster; VCL: win
Locale: da-DK (da_DK); UI: da-DK
Calc: threaded

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

[Libreoffice-bugs] [Bug 144094] worldescortshub

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

Buovjaga  changed:

   What|Removed |Added

 Resolution|--- |INVALID
 Status|UNCONFIRMED |RESOLVED
  Component|Base|deletionRequest

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

[Libreoffice-bugs] [Bug 144095] worldescortshub

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

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
  Component|Base|deletionRequest
 Resolution|--- |INVALID
URL|https://www.worldescortshub |
   |.com|

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

[Libreoffice-bugs] [Bug 137737] REPLACE not working if there is a footnote or endnote anchor at end of paragraph

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

--- Comment #14 from Justin L  ---
(In reply to Mike Kaganski from comment #11)
> 3. Using F&R, use regex "^." (any character in the beginning of the
> paragraph), ad replace with "A" (character A).
I don't think ^ specifically means "beginning of paragraph" in every context. I
would expect it to be the beginning of the search string. So if only a
selection of text was chosen, it would refer to the beginning of the selection
(and if the selection contained multiple lines[aka paragraphs], it would also
match the beginning of these other lines).

But your regression steps make it plain there is more involved than just this.

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

[Libreoffice-bugs] [Bug 144024] Conversion to .docx does not respect table spacing below

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

Vassilis Chryssos  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID

--- Comment #3 from Vassilis Chryssos  ---
Thanks for your replies Mike, I was not aware there is not such feature in MS
Word (not an MS Word user myself).

I am closing this issue (until MS decides to fix it from their side..)

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

[Libreoffice-bugs] [Bug 144075] Fonts in interface and preferences are too small.

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

MarjaE  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #5 from MarjaE  ---
Yes, I'm using 1080p, I'm not using scaling.

Yes, that *should* produce readable text.

But on my screen, the text in the preferences interface is 2 mm high, and at
about 60 cm away, that is about 11 arcminutes.

And the labels for Layout, Dimensions, Controls, etc. are also 2 mm high.

I have a lot of trouble reading black text on white backgrounds at less than 22
arcminutes, and white text on black backgrounds at less than 30 arcminutes.
Your mileage may vary, but I'd strongly suggest (a) letting users set sizes we
can read, and (b) erring on the side of too big instead of too small.

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

[Libreoffice-bugs] [Bug 144095] worldescortshub

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

worldescortshub  changed:

   What|Removed |Added

URL||https://www.worldescortshub
   ||.com

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

[Libreoffice-bugs] [Bug 144095] New: worldescortshub

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

Bug ID: 144095
   Summary: worldescortshub
   Product: LibreOffice
   Version: 3.3.1 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: worldescorts...@outlook.com

Description:
WorldEscortsHub - Minneapolis Escorts, St. Paul Escorts - Female Escorts -
Local Escorts In Minnesota.

Actual Results:
WorldEscortsHub - Minneapolis Escorts, St. Paul Escorts - Female Escorts -
Local Escorts In Minnesota.

Expected Results:
WorldEscortsHub - Minneapolis Escorts, St. Paul Escorts - Female Escorts -
Local Escorts In Minnesota.


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
WorldEscortsHub - Minneapolis Escorts, St. Paul Escorts - Female Escorts -
Local Escorts In Minnesota.

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

[Libreoffice-bugs] [Bug 144094] New: worldescortshub

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

Bug ID: 144094
   Summary: worldescortshub
   Product: LibreOffice
   Version: 3.3.1 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Base
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: worldescorts...@outlook.com

Description:
WorldEscortsHub - Minneapolis Escorts, St. Paul Escorts - Female Escorts -
Local Escorts In Minnesota.
https://www.worldescortshub.com
https://www.worldescortshub.com>escorts
[url=https://www.worldescortshub.com]escorts[/url]

Actual Results:
ddghhg

Expected Results:
sdfsFDF


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
ssdvfSfAS

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

[Libreoffice-bugs] [Bug 144075] Fonts in interface and preferences are too small.

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

V Stuart Foote  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #4 from V Stuart Foote  ---
That BenQ BW2280 monitor is not 4K/5K Retina resolution, rather it is standard
HD 1920 x 1080, have you adjusted System Preferences -> Displays and set the
scale to 1080p?  When configured correctly UI elements should then be a scale
appropriate for the display's resolution.

A 1080p monitor should produce readable text and icons.

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

[Libreoffice-bugs] [Bug 144074] Cannot change order of layers in list in LibreOffice Draw

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

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #2 from V Stuart Foote  ---
Layers will be added relative to the layer tab with focus.

Layers are not like sheets in Calc, they can not be dragged or otherwise moved
to a new position.

If you need a fixed set of layer tabs with fixed names--create a template once
and reuse it for subsequent drawings.

Layers can be hidden.

Layers can be locked so objects can not be changed.

=-ref-=
https://help.libreoffice.org/7.1/en-US/text/sdraw/guide/layers.html

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

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

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

BogdanB  changed:

   What|Removed |Added

 Depends on|128580  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=128580
[Bug 128580] Copy text from Word is pasted as an image in Mac OS
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 102593] [META] Paste bugs and enhancements

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

BogdanB  changed:

   What|Removed |Added

 Depends on||128580


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=128580
[Bug 128580] Copy text from Word is pasted as an image in Mac OS
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 128580] Copy text from Word is pasted as an image in Mac OS

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

BogdanB  changed:

   What|Removed |Added

 Blocks|103152  |102593


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102593
[Bug 102593] [META] Paste bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=103152
[Bug 103152] [META] Writer image bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

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

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

BogdanB  changed:

   What|Removed |Added

 Depends on||128580


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=128580
[Bug 128580] Copy text from Word is pasted as an image in Mac OS
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 128580] Copy text from Word is pasted as an image in Mac OS

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

BogdanB  changed:

   What|Removed |Added

 Blocks||103152
 CC||buzea.bog...@libreoffice.or
   ||g


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103152
[Bug 103152] [META] Writer image bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

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

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

BogdanB  changed:

   What|Removed |Added

 Depends on||126010


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=126010
[Bug 126010] Very blurry image in odt export from google docs depending on zoom
level
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 126010] Very blurry image in odt export from google docs depending on zoom level

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

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g
 Blocks||103152


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103152
[Bug 103152] [META] Writer image bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 132448] The first options, in the 'Crop' tab dialog box for an image (JPG) inserted in a text file (LibreOffice Writer), are always covered by some black artefacts

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

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g
 Status|NEW |UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #2 from BogdanB  ---
Estienne, you can't confirm your own bug. This meany just you had this problem
until now. We need someone else to confirm.

Until than please download a newer version and retest your own bug if it still
exists.

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

[Libreoffice-bugs] [Bug 103270] [META] Image/Picture dialog bugs and enhancements

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

BogdanB  changed:

   What|Removed |Added

 Depends on||101001


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=101001
[Bug 101001] need to move link checkbox in dialogue Insert image files
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 101001] need to move link checkbox in dialogue Insert image files

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

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g
 Blocks||103270


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103270
[Bug 103270] [META] Image/Picture dialog bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

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

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

BogdanB  changed:

   What|Removed |Added

 Depends on||94074


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=94074
[Bug 94074] If you select an image direct after caption was selected,
imagerelated entries in contextmenu are missing
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 94074] If you select an image direct after caption was selected, imagerelated entries in contextmenu are missing

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

BogdanB  changed:

   What|Removed |Added

 Blocks||103152
 CC||buzea.bog...@libreoffice.or
   ||g


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103152
[Bug 103152] [META] Writer image bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 144093] XML import calc does not complete automatic format conversion

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

dongshili  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |dongsh...@qq.com
   |desktop.org |
 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #1 from dongshili  ---
Created attachment 174544
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174544&action=edit
Prompt message when dragging in

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

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

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

BogdanB  changed:

   What|Removed |Added

 Depends on||94075


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=94075
[Bug 94075] If you select an image direct after caption was selected, "keep
aspect" on mouse-resizing is broken
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 94075] If you select an image direct after caption was selected, "keep aspect" on mouse-resizing is broken

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

BogdanB  changed:

   What|Removed |Added

 Blocks||103152
 CC||buzea.bog...@libreoffice.or
   ||g


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103152
[Bug 103152] [META] Writer image bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 144093] New: XML import calc does not complete automatic format conversion

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

Bug ID: 144093
   Summary: XML import calc does not complete automatic format
conversion
   Product: LibreOffice
   Version: 7.2.0.4 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: dongsh...@qq.com

Description:
In some environments, you can only export XML files. In MS Office, dragging XML
onto Excel automatically converts it to a table, but this is not supported
under Calc

Steps to Reproduce:
In some environments, you can only export XML files. In MS Office, dragging XML
onto Excel automatically converts it to a table, but this is not supported
under Calc

Actual Results:
Please see the attachment

Expected Results:
Convert to a table


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
Version: 7.2.0.4 (x64) / LibreOffice Community
Build ID: 9a9c6381e3f7a62afc1329bd359cc48accb6435b
CPU threads: 8; OS: Windows 10.0 Build 19043; UI render: Skia/Raster; VCL: win
Locale: zh-CN (zh_CN); UI: zh-CN
Calc: CL

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

[Libreoffice-bugs] [Bug 117754] Option required to show low resolution preview instead of full resolution for smooth navigation of documents with high resolution linked images

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

BogdanB  changed:

   What|Removed |Added

 Blocks||107810
 CC||buzea.bog...@libreoffice.or
   ||g


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107810
[Bug 107810] [META] OLE/Embedded object bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

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

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

BogdanB  changed:

   What|Removed |Added

 Depends on||117754


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=117754
[Bug 117754] Option required to show low resolution preview instead of full
resolution for smooth navigation of documents with high resolution linked
images
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 144075] Fonts in interface and preferences are too small.

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

V Stuart Foote  changed:

   What|Removed |Added

 OS|All |Mac OS X (All)
 CC||vstuart.fo...@utsa.edu

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

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

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

BogdanB  changed:

   What|Removed |Added

 Depends on||113659


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=113659
[Bug 113659] Add option to disable automatic centering the image to the window,
when clicking the image
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 113659] Add option to disable automatic centering the image to the window, when clicking the image

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

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g
 Blocks||103152


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103152
[Bug 103152] [META] Writer image bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 75644] Better options to control LibO window resize of the Start Screen and last used window size of each document module (summary in comment 10)

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

V Stuart Foote  changed:

   What|Removed |Added

   Keywords||needsUXEval
 CC||libreoffice-ux-advise@lists
   ||.freedesktop.org

--- Comment #50 from V Stuart Foote  ---
(In reply to Chuck Spalding from comment #49)

No. What was a UX decision was that a per-document size is not supported by ODF
document model so will not be implemented by project. 

What was accepted was that the linkage of component launch to the Start Center
needs to be severerd--so that each LO component (Writer, Calc, Draw, Impress,
Math, Base) will open independently of size recorded for the backing Window of
the StartCenter and ass recorded into the user profile once each component has
been configured to user preferences.

Rejection of the per-document size handling, and implementation of a per-module
size recorded to profile is the gist of this enhancement.

For clarity, requests for per-document will be duped' here--it won't be done;
as will requests for per-component size and fixed position.

Resetting UX-advice to take it back through evaluation...

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

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

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

BogdanB  changed:

   What|Removed |Added

 Depends on||96850


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=96850
[Bug 96850] FORMATTING: send-to-back does not work for embedded images over
text
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 96850] FORMATTING: send-to-back does not work for embedded images over text

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

BogdanB  changed:

   What|Removed |Added

 Blocks||107810
 CC||buzea.bog...@libreoffice.or
   ||g


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107810
[Bug 107810] [META] OLE/Embedded object bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 103353] Inform user, if an operation cannot work on linked image, before the image is embedded

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

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g
 Blocks||107810


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107810
[Bug 107810] [META] OLE/Embedded object bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

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

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

BogdanB  changed:

   What|Removed |Added

 Depends on||103353


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103353
[Bug 103353] Inform user, if an operation cannot work on linked image, before
the image is embedded
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 92744] Update document content when image is modified

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

BogdanB  changed:

   What|Removed |Added

 Blocks||103152
 CC||buzea.bog...@libreoffice.or
   ||g


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103152
[Bug 103152] [META] Writer image bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

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

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

BogdanB  changed:

   What|Removed |Added

 Depends on||92744


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=92744
[Bug 92744] Update document content when image is modified
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 102847] [META] Quick Find, Search and Replace

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

BogdanB  changed:

   What|Removed |Added

 Depends on||92564


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=92564
[Bug 92564] Search for italic regexp adjacent to non-italic
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 92564] Search for italic regexp adjacent to non-italic

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

BogdanB  changed:

   What|Removed |Added

 Blocks||102847
 CC||buzea.bog...@libreoffice.or
   ||g


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102847
[Bug 102847] [META] Quick Find, Search and Replace
-- 
You are receiving this mail because:
You are the assignee for the bug.

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

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

BogdanB  changed:

   What|Removed |Added

 Depends on||141780


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=141780
[Bug 141780] Calc - error of displaying zero values in the graph (Skia)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 141780] Calc - error of displaying zero values in the graph (Skia)

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

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g
 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] [Bug 142707] PDF: Export to PDF of relative hyperlinks created by function HYPERLINK() not plausible

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Libreoffice-bugs] [Bug 144070] Abnormal increase in the size of a word document

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

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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

[Libreoffice-bugs] [Bug 142569] Drag &drop dangerously broken under linux/wayland: unpredictable errors occur

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard| QA:needsComment|

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

[Libreoffice-bugs] [Bug 143794] UI: Dark theme: some elements in toolbar not easy to read on Linux

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

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 144070] Abnormal increase in the size of a word document

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

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

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

[Libreoffice-bugs] [Bug 135421] text lose resolution when i use some animations

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

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 135421] text lose resolution when i use some animations

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

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

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 140673] program crash when trying to cut&paste table cell

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

--- Comment #2 from QA Administrators  ---
Dear Ulrich Windl,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 70339] Word boundary definition problem

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

--- Comment #15 from QA Administrators  ---
Dear Michael Bauer,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 125323] aligning data series to secondary Y-axis distorts column/bar width

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

--- Comment #8 from QA Administrators  ---
Dear Cathy Crumbley,

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 123278] Color of Asian phonetic guide is not from the base text but from the text before that.

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

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

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

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

If you have time, please do the following:

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

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

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

Please DO NOT

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


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

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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

[Libreoffice-bugs] [Bug 144070] Abnormal increase in the size of a word document

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

--- Comment #2 from Nathalí  ---
Created attachment 174543
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174543&action=edit
Comprimido con documento sin modificar y modificado

Attached unmodified document (646.5 kB) and another modified (3.6 mB).
When I opened the original document I only made the comment that says TEST
SIZE. I saved and closed the document. What used to weigh 646 kb is now 3.6 mb.
View attachments.

Among the many tests I did, I think the problem may be with the compression of
the images since when I went one by one reducing the dpi, the document reduced
its size.

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

[Libreoffice-bugs] [Bug 75644] Better options to control LibO window resize of the Start Screen and last used window size of each document module (summary in comment 10)

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

--- Comment #49 from Chuck Spalding  ---
@Colin, thank you for commenting on this issue.

Unfortunately, the powers-that-be seem to be unable or unwilling to separate
the *two* issues in this bug report, and they seem to be more interested in the
Start Center issue than the window-attributes issue that you commented on.

I tried twice last year to "help" with the window-attributes issue (see comment
44 and comment 46), but got nowhere.

I just noticed that comment 42 (entered 20 months ago!) changed the priority to
"high", but that seems to have had no effect.

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

[Libreoffice-bugs] [Bug 53027] EDITING: dBase-Import-Wizard fails when trying to append DECIMAL(NUMERIC) and BOOLEAN data types

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

kora star  changed:

   What|Removed |Added

URL||https://www.kora--star.com/

--- Comment #50 from kora star  ---
https://www.yalla-kora-online.com/
https://www.kora--star.com/
https://www.yalla--live.com/

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

[Libreoffice-bugs] [Bug 144072] LibreofficeBase crashed when 2 fields selected in report builder and width is adjusted 2nd time

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

--- Comment #3 from shodgman  ---
Created attachment 174542
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174542&action=edit
Example LibreOffice Base object with report that crashes

Attached LibreOffice Base file created to demonstrate the bug.

Open Report RptTasks in Edit mode.
Select any field in the Detail part of report
Shift-Click the header label in the Header above this.
Select the handle to reduce in horizontal size
Attempt to reduce size.
For me Libreoffice Base then crashes.

I have only been developing in Base recently. Running 7.1.5.2 on Windows 10.
Sorry that I did not explain that the double selection needs to be across
Header and Detail Sections of the report.  My testing shows that double
selection works if all fields are in one report section.  If they are in
different sections then it crashes very regularly, if not always.

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

[Libreoffice-bugs] [Bug 144092] FILEOPEN PPTX: Empty table rows appear with lower height

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

--- Comment #1 from Gerald Pfeifer  ---
Created attachment 174541
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174541&action=edit
Visual comparison LibreOffice 7.3 vs Office 365

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

[Libreoffice-bugs] [Bug 144092] New: FILEOPEN PPTX: Empty table rows appear with lower height

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

Bug ID: 144092
   Summary: FILEOPEN PPTX: Empty table rows appear with lower
height
   Product: LibreOffice
   Version: 7.3.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: bibisectRequest, regression
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ger...@pfeifer.com

Created attachment 174540
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174540&action=edit
Sample PPTX slide

Looking at this document the two rows without text (so empty) appear with
lower height than the other rows.

If I just insert a space character in those two lines, they extend to full
height in line with the others.


Version: 7.3.0.0.alpha0+ / LibreOffice Community
Build ID: 4e86347d7ad76e16d8b0eaae5f12d1dfb763b531
CPU threads: 8; OS: Linux 5.13; UI render: default; VCL: gtk3
Locale: en-US (en_US.UTF-8); UI: en-US
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2021-08-24_19:41:14

Version: 7.0.7.0.0+
Build ID: 54e9dd41dc9dd45af12c9346199f601ea4a5994d
CPU threads: 8; OS: Linux 5.13; UI render: default; VCL: gtk3
Locale: en-US (en_US.UTF-8); UI: en-US
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:libreoffice-7-0, Time:
2021-05-07_08:22:18
Calc: threaded

NOT seen with version 6.4, so a regressions apparently:

Version: 6.4.8.0.0+
Build ID: 99b065ec31d032fc08ab14f66430dac4fef904a5
CPU threads: 8; OS: Linux 5.13; UI render: default; VCL: gtk3; 
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:libreoffice-6-4, Time:
2020-10-08_08:57:08
Locale: en-US (en_US.UTF-8); UI-Language: en-US

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

[Libreoffice-bugs] [Bug 143585] "Calling Calc Functions" help examples should use names following respective functions' help topics

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

Rafael Lima  changed:

   What|Removed |Added

 Status|UNCONFIRMED |ASSIGNED
   Assignee|libreoffice-b...@lists.free |rafael.palma.l...@gmail.com
   |desktop.org |
 Ever confirmed|0   |1

--- Comment #2 from Rafael Lima  ---
I agree that the help page [1] will benefit from clearer argument names, as in
the VLOOKUP page.

I also have some ideas on how to improve the example. I'll work on this.

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

[Libreoffice-bugs] [Bug 144091] New: FILEOPEN PPTX: shadow effect for tables partly incorrect

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

Bug ID: 144091
   Summary: FILEOPEN PPTX: shadow effect for tables partly
incorrect
   Product: LibreOffice
   Version: 7.3.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ger...@pfeifer.com
CC: gti...@gmail.com

Per https://bugs.documentfoundation.org/show_bug.cgi?id=129961#c32 the
implementation of shadows for tables is incomplete/partly incorrect.

Timur has created a new test document that tries to cover that, cf.
https://bugs.documentfoundation.org/attachment.cgi?id=171332 .

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

[Libreoffice-bugs] [Bug 137737] REPLACE not working if there is a footnote or endnote anchor at end of paragraph

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

--- Comment #13 from Commit Notification 
 ---
Xisco Fauli committed a patch related to this issue.
It has been pushed to "master":

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

tdf#144089: Revert "tdf#137737 i18n search: don't expand start/end with regex ^
or $"

It will be available in 7.3.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] [Bug 144089] Find and Replace works incorrectly with regex "^." and selection only

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

--- Comment #1 from Commit Notification 
 ---
Xisco Fauli committed a patch related to this issue.
It has been pushed to "master":

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

tdf#144089: Revert "tdf#137737 i18n search: don't expand start/end with regex ^
or $"

It will be available in 7.3.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] [Bug 144089] Find and Replace works incorrectly with regex "^." and selection only

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.3.0

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

[Libreoffice-bugs] [Bug 144075] Fonts in interface and preferences are too small.

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

MarjaE  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #3 from MarjaE  ---
It's hard to see anything on that pop-up.

Version: 7.1.4.2 / LibreOffice Community
Build ID: a529a4fab45b75fefc5b6226684193eb000654f6
CPU threads: 4; OS: Mac OS X 10.14.6; UI render: default; VCL: osx
Locale: en-US (en_US.UTF-8); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 126183] Different results of "Test Connection" if table connected to ODS File dependent on VCL engine

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

--- Comment #6 from Eugen  ---
The bug seemed to be resolved.

My used versions:
Version: 7.1.5.2 / LibreOffice Community
Build ID: 10(Build:2)
CPU threads: 12; OS: Linux 5.11; UI render: default; VCL: kf5
Locale: de-DE (de_DE.UTF-8); UI: de-DE
Ubuntu package version: 1:7.1.5-0ubuntu0.21.04.1
Calc: threaded

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

[Libreoffice-bugs] [Bug 144033] Libreoffice (Calc) rendering very slow on GTK3

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

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

   What|Removed |Added

 CC||xiscofa...@libreoffice.org
 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #6 from Roman Kuznetsov <79045_79...@mail.ru> ---
>Interestingly, I've tried a packaged LO (from 
>https://libreoffice.soluzioniopen.com), and, while the Xorg process occupation 
>goes relatively high (~35% while typing), there is no noticeable slowdown.

So it can be Ubuntu's LibreOffice build problem only

I would close it as NOTOURBUG

Xisco, what do you think?

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

[Libreoffice-bugs] [Bug 144030] "Use OpenGL" under 3D View option in readme

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

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

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |79045_79...@mail.ru
   |desktop.org |
 Status|NEW |ASSIGNED

--- Comment #4 from Roman Kuznetsov <79045_79...@mail.ru> ---
(In reply to sophie from comment #3)
> (In reply to Adolfo Jayme from comment #2)
> > @Roman: You can simply remove the string with no need for any replacement.
> 
> Agreed with Adolfo. And I only pointed this string, but I think the readme
> may need a full review.

Sophie, we have there:

1. Hardcoded URLs like https://www.libreoffice.org/ and some other but there is
%PRODUCTNAME in all places there. Should we change it?
2. Many LibreOffice words near links to TDF's or LibreOffice sites. Should we
change it all to ${PRODUCTNAME}?

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

[Libreoffice-bugs] [Bug 142707] PDF: Export to PDF of relative hyperlinks created by function HYPERLINK() not plausible

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

Eleonora Govallo  changed:

   What|Removed |Added

 CC||elya.gova...@gmail.com

--- Comment #2 from Eleonora Govallo  ---
No repro in Version: 7.3.0.0.alpha0+ / LibreOffice Community
Build ID: 008f28c9e01114e731f785e9e238236a1ed069d2
CPU threads: 8; OS: Linux 5.4; UI render: default; VCL: gtk3
Locale: ru-RU (ru_RU.UTF-8); UI: en-US
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2021-08-22_15:17:36
Calc: threaded

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

[Libreoffice-bugs] [Bug 144090] New: Impress does not change slides until skia is disabled

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

Bug ID: 144090
   Summary: Impress does not change slides until skia is disabled
   Product: LibreOffice
   Version: 7.1.5.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: g...@wasdraad.be

Description:
Windows 10 on Lenovo Intel Laptop Ideapad 3 14IL05
Updated LibreOffice install to 7.1.5.2 (X64)
Reset user profile.

Open presentation in Impress, start presentation with F5 and the slides don't
transition on keyboard, mouse nor touchpad interaction.
Found on a forum that skia needed to be disabled.
https://ask.libreoffice.org/t/impress-slideshow-doesnt-display-next-slide/65488

Manual intervention required:
Goto extra-options-libreoffice-image and turned of "use skia for all
rendering".
After a restart of Libreoffice the presentation worked normally.

As a Libreoffice fan this was a very disappointing experience.


Steps to Reproduce:
1.fresh install
2.open presentation
3.press F5, that try other keys/mouse etc

Actual Results:
No slide transitions (until skia is disabled).

Expected Results:
Slides should transition by default for all hardware and all installs. Make
optimizations optional.


Reproducible: Always


User Profile Reset: Yes


OpenGL enabled: Yes

Additional Info:
Very disappointing experience. 
Created bugzilla account for this because this kind of issues is important.

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

[Libreoffice-bugs] [Bug 144084] FilePicker service does not display Open and Cancel button (gtk3 only)

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

Julien Nabet  changed:

   What|Removed |Added

 CC||caol...@redhat.com
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #4 from Julien Nabet  ---
Caolán: since it's specific to gtk3 (gtk4?), thought you might be interested in
this one.
(see my previous comment for some details).

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

[Libreoffice-bugs] [Bug 144084] FilePicker service does not display Open and Cancel button (gtk3 only)

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

Julien Nabet  changed:

   What|Removed |Added

Summary|FilePicker service does not |FilePicker service does not
   |display Open and Cancel |display Open and Cancel
   |button  |button (gtk3 only)

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

[Libreoffice-bugs] [Bug 144084] FilePicker service does not display Open and Cancel button

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

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #3 from Julien Nabet  ---
Created attachment 174539
  --> https://bugs.documentfoundation.org/attachment.cgi?id=174539&action=edit
bt with debug symbols

On pc Debian x86-64 with master sources updated today + gtk3 rendering, I could
reproduce this.
I noticed 2 things:
warn:rtl.string:4196:4196:sal/rtl/strtmpl.hxx:1294: rtl_uString_newFromLiteral
- Found embedded \0 character
warn:rtl.string:4196:4196:sal/rtl/strtmpl.hxx:1294: rtl_uString_newFromLiteral
- Found embedded \0 character
warn:rtl.string:4196:4196:sal/rtl/strtmpl.hxx:1294: rtl_uString_newFromLiteral
- Found embedded \0 character
warn:rtl.string:4196:4196:sal/rtl/strtmpl.hxx:1294: rtl_uString_newFromLiteral
- Found embedded \0 character

+
warn:vcl.gtk:4196:4196:vcl/unx/gtk3/fpicker/SalGtkFilePicker.cxx:943: no parent
widget set

For the last one, I retrieved a stacktrace.

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

[Libreoffice-bugs] [Bug 142362] FILESAVE DOCX polygon with contour wrap is missing wrap polygon

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

Regina Henschel  changed:

   What|Removed |Added

   Assignee|rb.hensc...@t-online.de |libreoffice-b...@lists.free
   ||desktop.org

--- Comment #4 from Regina Henschel  ---
Exporting to DML would convert the shape to a custom-shape on reopening. If it
is only exported to VML, then it will become a polypolygon-shape on reopening.
The user can edit the points in a polypolygon-shape. That is not possible for a
custom-shape. After discussing the problem on the dev-mailinglist [1], I agree
with Miklos, that users might see it as regression, if point editing is no
longer possible.
[1] https://lists.freedesktop.org/archives/libreoffice/2021-August/087781.html

So the wrong wrap has to be solved in VML export. But that is currently out of
scope for me. Therefore 'Assignee' back to default.

The request to implement point editing for custom-shapes is in bug 144041.

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

[Libreoffice-bugs] [Bug 126961] Cannot link to macOS address book - crashes and restarts

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

--- Comment #56 from Julien Nabet  ---
(In reply to Stephan Bergmann from comment #55)
>>...
> 
> so apparently the call of
> 
> > allRecords = ABCopyArrayOfAllPeople(addressBook);
> 
> in MacabRecords::initialize
> (connectivity/source/drivers/macab/MacabRecords.cxx) returned null, which
> the code apparently does not expect.
I had seen this but what I don't understand when reading
https://developer.apple.com/documentation/addressbook/1430121-abcopyarrayofallpeople,
is even if it doesn't find any address book, ABCopyArrayOfAllPeople is expected
to return an empty array, so CFArrayGetCount could return 0.

> 
> I have no idea about the code in question or the relevant macOS APIs, but I
> notice that
>  states
> "Important:  Do not use the AddressBook framework in macOS 10.11 and later. 
> Use the APIs defined in the Contacts framework instead."
Argh, it's the main problem since it's not a 20 lines max patch which will fix
this but a big chunk of code. Considering it's on Base part and more
specifically on MacOs, unless you feel like working on it, there's slight
chance it'll be implemented.
So after last versions of Thunderbird which need Sqlite implementation (that we
don't have) to use addressbook instead of Mork, now we've got this, bad days
for those who want to use address book with LO, hope there are not too much and
find some workaround :-(

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

[Libreoffice-bugs] [Bug 103479] [META] Word and character count bugs and enhancements

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

BogdanB  changed:

   What|Removed |Added

 Depends on||142494


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=142494
[Bug 142494] Word Count not 0 when no words are selected
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 142494] Word Count not 0 when no words are selected

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

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g
 Blocks||103479


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103479
[Bug 103479] [META] Word and character count bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 137496] Embedded audios & videos are not accessible for the screen reader NVDA in LibreOffice

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

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g
 Blocks||107322


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107322
[Bug 107322] [META] Media (audio / video) bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 107322] [META] Media (audio / video) bugs and enhancements

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

BogdanB  changed:

   What|Removed |Added

 Depends on||137496


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=137496
[Bug 137496] Embedded audios & videos are not accessible for the screen reader
NVDA in LibreOffice
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 107322] [META] Media (audio / video) bugs and enhancements

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

BogdanB  changed:

   What|Removed |Added

 Depends on||137962


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=137962
[Bug 137962] UI elements flicker when slide has a video file
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 137962] UI elements flicker when slide has a video file

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

BogdanB  changed:

   What|Removed |Added

 Blocks||107322
 CC||buzea.bog...@libreoffice.or
   ||g


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107322
[Bug 107322] [META] Media (audio / video) bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 107322] [META] Media (audio / video) bugs and enhancements

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

BogdanB  changed:

   What|Removed |Added

 Depends on||142240


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=142240
[Bug 142240] Impress : video doesn't work in appimage (7.1)
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 142240] Impress : video doesn't work in appimage (7.1)

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

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g
 Blocks||107322


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107322
[Bug 107322] [META] Media (audio / video) bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 142043] Correct spelling wrongly flagged

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

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g
 Blocks||96000


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=96000
[Bug 96000] [META] Spelling and grammar checking bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 96000] [META] Spelling and grammar checking bugs and enhancements

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

BogdanB  changed:

   What|Removed |Added

 Depends on||142043


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=142043
[Bug 142043] Correct spelling wrongly flagged
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 96000] [META] Spelling and grammar checking bugs and enhancements

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

BogdanB  changed:

   What|Removed |Added

 Depends on||118793


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=118793
[Bug 118793] Marks of wrong spellings do not appear in a document that is
edited from write protected
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 118793] Marks of wrong spellings do not appear in a document that is edited from write protected

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

BogdanB  changed:

   What|Removed |Added

 Blocks||96000
 CC||buzea.bog...@libreoffice.or
   ||g


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=96000
[Bug 96000] [META] Spelling and grammar checking bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 96000] [META] Spelling and grammar checking bugs and enhancements

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

BogdanB  changed:

   What|Removed |Added

 Depends on||98627


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=98627
[Bug 98627] Spell check options on right click shows junk characters
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 98627] Spell check options on right click shows junk characters

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

BogdanB  changed:

   What|Removed |Added

 CC||buzea.bog...@libreoffice.or
   ||g
 Blocks||96000


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=96000
[Bug 96000] [META] Spelling and grammar checking bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 109527] [META] Spell check dialog bugs and enhancements

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

BogdanB  changed:

   What|Removed |Added

 Depends on||131978


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=131978
[Bug 131978] With dark color theme spell checking dialog is unreadable
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 131978] With dark color theme spell checking dialog is unreadable

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

BogdanB  changed:

   What|Removed |Added

 Blocks||109527
 CC||buzea.bog...@libreoffice.or
   ||g


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=109527
[Bug 109527] [META] Spell check dialog bugs and enhancements
-- 
You are receiving this mail because:
You are the assignee for the bug.

  1   2   3   >