[Libreoffice-bugs] [Bug 126074] Icon styles should not modify official application icons in start center (and other relevant places)

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126074

--- Comment #15 from Heiko Tietze  ---
Let's try to draft a guideline:

MIME type and application icons 
1) should pick up LibreOffice brand colors for the individual modules
(https://wiki.documentfoundation.org/Marketing/Branding#Colors)
  + using green for Writer is not allowed
  + using a Aqua blue for Writer is not allowed
2) should convey the brand symbol with a rectangular form and a donkey ear on
top right
  + donkey ear on top-left is not allowed
  + circular or complex shapes are not allowed
3) should be designed to blend into the intended OS/DE
  + monochrome colors are not allowed on macOS
  + non-symmetrical icons are not allowed on Android
4) have to be consistent in color and form for the various sizes
  + in case of Writer, using primary blue for 128px but secondary blue for
smaller sizes is not allowed
  + using a folded donkey ear at 128px but a flat on smaller sizes is not
allowed
5) can use symbols to support identification of modules 
  + using a detailed symbol for large icons but a minimalistic equivalent on
smaller sizes is recommended
(https://wiki.documentfoundation.org/Gallery_Icons)

Note: This idea picks up the general hesitation to have only one type of app
icons and considers what ideas have been submitted at
https://wiki.documentfoundation.org/Design/Mimetype_Icons/Proposals

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

[Libreoffice-bugs] [Bug 147105] New: Document the various PDF export options

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147105

Bug ID: 147105
   Summary: Document the various PDF export options
   Product: LibreOffice
   Version: 7.1.0.0.alpha1+
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Documentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: vmik...@collabora.com
CC: olivier.hal...@libreoffice.org

Since https://gerrit.libreoffice.org/c/core/+/128849, the PDF export options on
master can be also set from the cmdline. We have a rich set of PDF export
options, which were only available to extensions/macros previously. The commit
message contains some examples, but the full set of options is available in
filter/source/pdf/pdfexport.cxx.

It would be nice to document these, similar to how the CSV export options are
documented in

https://help.libreoffice.org/7.4/en-US/text/shared/guide/start_parameters.html

and

https://help.libreoffice.org/7.4/en-US/text/shared/guide/csv_params.html

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

[Libreoffice-bugs] [Bug 147010] Pasting data into Writer results in application hang for several seconds

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147010

Ezinne  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1
 CC||nnamani.ezi...@collabora.co
   ||m

--- Comment #1 from Ezinne  ---
Please, can you give more exact reproduction details?

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

[Libreoffice-bugs] [Bug 146984] Image in frame jump to second page on DOCX export (fine with DOC)

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146984

--- Comment #3 from Ezinne  ---
I got these error lines on the terminal when the file got reloaded:

warn:sw.core:382049:382049:sw/source/core/doc/textboxhelper.cxx:1411:
SwTextBoxHelper::syncProperty: Repositioning failed!
warn:sw.core:382049:382049:sw/source/core/doc/textboxhelper.cxx:1179:
SwTextBoxHelper::syncFlyFrameAttr: The anchor of the shape different from the
textframe!
warn:sw.core:382049:382049:sw/source/core/doc/textboxhelper.cxx:1411:
SwTextBoxHelper::syncProperty: Repositioning failed!
warn:sw.core:382049:382049:sw/source/core/doc/textboxhelper.cxx:1411:
SwTextBoxHelper::syncProperty: Repositioning failed!
warn:sw.core:382049:382049:sw/source/core/doc/textboxhelper.cxx:1411:
SwTextBoxHelper::syncProperty: Repositioning failed!
warn:sw.core:382049:382049:sw/source/core/doc/textboxhelper.cxx:1411:
SwTextBoxHelper::syncProperty: Repositioning failed!

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

[Libreoffice-bugs] [Bug 146984] Image in frame jump to second page on DOCX export (fine with DOC)

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146984

Ezinne  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
 CC||nnamani.ezi...@collabora.co
   ||m

--- Comment #2 from Ezinne  ---
Reproducible in:

Version: 7.4.0.0.alpha0+ / LibreOffice Community
Build ID: 34412339f863b35508842a3bf20fcc7341a006e7
CPU threads: 8; OS: Linux 5.11; UI render: default; VCL: gtk3
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 147104] New: Idea: use OUStringBuffer instead of OUString in SbxValues

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147104

Bug ID: 147104
   Summary: Idea: use OUStringBuffer instead of OUString in
SbxValues
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mikekagan...@hotmail.com
CC: andreas.heini...@yahoo.de

LibreOffice's base string classes (OString / OUString) are designed to be
wrappers around immutable ref-counted rtl_uString buffers. That allows to (aim
to) minimize memory usage, but requires reallocation at every modifying
operation on the strings.

E.g.:

  OUString s;
  for (int i = 0; i < 10; ++i)
s += OUString::number(i) + ";"

This would re-allocate the string 10 times (so it will use ten different
buffers, copy already created part ten times, etc.), instead of using the same
buffer as much as possible, with a doubling the buffer when necessary strategy.

This becomes a problem in Basic, which is a general-purpose programming
language. It uses OUString as internal implementation of its string type; and
hence, code like

  s=""
  For i=1 To 10
s=s & CStr(i)
  next i

would take very long.

There's a OUStringBuffer class in LO, which is a wrapper around the same
rtl_uString buffer, but designed to be mutable, with normal buffer growth
strategy. The idea is to try to replace use of OUString with OUStringBuffer in
SbxValues, and this way, make Basic more generic, without this
LibreOffice-specific way of handling strings.

Since SbxBase is ref-counted itself, assigning string variables in Basic would
still not create excessive memory use; only modifying operations would trigger
normal copy-on-write behavior.

This might be not doable (needs investigation), or difficult in the end.

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

[Libreoffice-bugs] [Bug 146983] Spacing between text and heading changes after DOCX export (fine with DOC)

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146983

Ezinne  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW
 CC||nnamani.ezi...@collabora.co
   ||m

--- Comment #2 from Ezinne  ---
Reproducible in:

Version: 7.4.0.0.alpha0+ / LibreOffice Community
Build ID: 34412339f863b35508842a3bf20fcc7341a006e7
CPU threads: 8; OS: Linux 5.11; UI render: default; VCL: gtk3
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 139898] [META] PPTX Master slides / notes / handouts related issues

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=139898
Bug 139898 depends on bug 130165, which changed state.

Bug 130165 Summary: FILESAVE PPTX Parent master slide is set instead of child 
at save
https://bugs.documentfoundation.org/show_bug.cgi?id=130165

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 90486] [META] Chart bugs and enhancements

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90486
Bug 90486 depends on bug 146066, which changed state.

Bug 146066 Summary: Vertical axis automatic scaling is wrong for some label 
column values
https://bugs.documentfoundation.org/show_bug.cgi?id=146066

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 145878] [META] Enhancements that could be realized per extension

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145878

Heiko Tietze  changed:

   What|Removed |Added

 Depends on||121945


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=121945
[Bug 121945] Include useful citation Styles /references (comment #12) in Writer
by default and make them available with a drop-down button.
-- 
You are receiving this mail because:
You are the assignee for the bug.

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

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107326

Heiko Tietze  changed:

   What|Removed |Added

 Depends on|121945  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=121945
[Bug 121945] Include useful citation Styles /references (comment #12) in Writer
by default and make them available with a drop-down button.
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 121945] Include useful citation Styles /references (comment #12) in Writer by default and make them available with a drop-down button.

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121945

Heiko Tietze  changed:

   What|Removed |Added

   Keywords|needsDevEval, needsUXEval   |
 Blocks|107326  |145878
 CC|libreoffice-ux-advise@lists |heiko.tietze@documentfounda
   |.freedesktop.org|tion.org

--- Comment #16 from Heiko Tietze  ---
Using the right citation style is crucial for scientific work. Some journals
use in-text references with brackets and numbers like "[1]" while other require
more information, like "(Doe, 1901)". The index also varies to large a large
extend.

Never heard about mixing two styles in one document, so we may allow to define
a style per document and have inserted references and the actual bibliography
formatted in this way.

Ultimately this is a huge effort and LibreOffice only has rudimentary support
implemented yet. The idea to drop the bibliography completely in favor of 3rd
party extensions was rejected (would still be my preference though).

I could imagine a macro solution.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=107326
[Bug 107326] [META] Writer style bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=145878
[Bug 145878] [META] Enhancements that could be realized per extension
-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 146914] When insert a comment in Writer and add some text. Then scroll down without leaving the comment, and click somewhere, the cursor jumps back to the comment

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146914

--- Comment #4 from kees...@gmail.com ---
I tested it in 7.4 and I can still reproduce it.

Version: 7.4.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 628fedabdd27ad08e9a42f47106864751e493c2c
CPU threads: 8; OS: Windows 10.0 Build 22000; UI render: Skia/Vulkan; VCL: win
Locale: nl-NL (nl_NL); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 147028] Writer: strange behaviour when using acute accent

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147028

--- Comment #4 from cjdg  ---
Well finally found the problem
It seems that Zoom installs ibus as a dependency, and was ibus who was messing
everything, after uninstalling ibus, everything works as charm...

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

[Libreoffice-bugs] [Bug 146906] Keyboard shortcut conflict: Ctrl+F5

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146906

Heiko Tietze  changed:

   What|Removed |Added

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

--- Comment #2 from Heiko Tietze  ---
Ctrl+F5 shows/hides the sidebar. We collected the (admittedly clumsy) keyboard
interactions at https://wiki.documentfoundation.org/Design/Guidelines/Sidebar.
What exactly is missing / not working?

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

[Libreoffice-bugs] [Bug 137427] UI Picker is not showing by default on first launch of each module

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137427

--- Comment #6 from Heiko Tietze  ---
(In reply to John Mills from comment #5)
> I disagree as I think it is not in the users benefit...

Thank you for accepting other opinions. If we find more users voting to have
this start-up wizard thing I'll not block it. It's always possible to reopen a
ticket.

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

[Libreoffice-bugs] [Bug 103683] PDF export mediabox trimbox cropbox bleedbox artbox

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103683

Heiko Tietze  changed:

   What|Removed |Added

URL|https://istartsetup.com/htt |
   |ps-ij-start-cannon/ |

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

[Libreoffice-bugs] [Bug 146829] svt linking failure

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146829

Robert Großkopf  changed:

   What|Removed |Added

  Component|Base|LibreOffice

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

[Libreoffice-bugs] [Bug 112629] [META] Character content panel of the Properties deck/tab of the sidebar

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112629
Bug 112629 depends on bug 111733, which changed state.

Bug 111733 Summary: Sidebar character spacing popup has wrong selection
https://bugs.documentfoundation.org/show_bug.cgi?id=111733

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 111733] Sidebar character spacing popup has wrong selection

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111733

Justin L  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |jl...@mail.com
   |desktop.org |

--- Comment #16 from Justin L  ---
(In reply to Heiko Tietze from comment #10)
> Off-topic: try to select text from with different spacing (don't think it's
> true kerning). Shows me ~850 in the spin edit.

I was expecting this to be in SfxItemState
/** specifies that the property is currently in a don't care state.
This is normally used if a selection provides more than one state
for a property at the same time.
*/
const short DONT_CARE  = 16;

However, eState returns DEFAULT (32) instead, which also indicates valid
results. When there are multiple kerning settings, it seems to be returning a
random memory value because it differs every time, even on successive views.
This has been true since at least LO 5.3.

I tried to bibisect it, but it is almost impossible, because you can't trust
any negative number. It looks consistent at -2 but that is deceptive since that
is the lowest acceptable number - and so pretty much half of the random numbers
will show up as -2.  (See comment 14)

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

[Libreoffice-bugs] [Bug 147102] CRASH Deleting bookmark from Navigator

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147102

--- Comment #2 from Jim Raykowski  ---
Found out why I wasn't seeing the bookmark:
https://gerrit.libreoffice.org/c/core/+/129269

I don't get crash using STR with patch installed.

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

[Libreoffice-bugs] [Bug 111733] Sidebar character spacing popup has wrong selection

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111733

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

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

tdf#111733 TextCharacterSpacingControl::GrabFocus kerning spinbutton

It will be available in 7.4.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 137770] [META] Tracked changes in margin

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137770
Bug 137770 depends on bug 34355, which changed state.

Bug 34355 Summary: Option to show track changes in margin is missing
https://bugs.documentfoundation.org/show_bug.cgi?id=34355

   What|Removed |Added

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

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

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

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83946
Bug 83946 depends on bug 34355, which changed state.

Bug 34355 Summary: Option to show track changes in margin is missing
https://bugs.documentfoundation.org/show_bug.cgi?id=34355

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 120896] Context menu does not appear over cell contents after the spell check context menu was active

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120896

Justin L  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
   Assignee|libreoffice-b...@lists.free |jl...@mail.com
   |desktop.org |
 Resolution|--- |FIXED

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

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

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86349
Bug 86349 depends on bug 120896, which changed state.

Bug 120896 Summary: Context menu does not appear over cell contents after the 
spell check context menu was active
https://bugs.documentfoundation.org/show_bug.cgi?id=120896

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 137770] [META] Tracked changes in margin

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137770
Bug 137770 depends on bug 34355, which changed state.

Bug 34355 Summary: Option to show track changes in margin is missing
https://bugs.documentfoundation.org/show_bug.cgi?id=34355

   What|Removed |Added

 Status|CLOSED  |REOPENED
 Resolution|FIXED   |---

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

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

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83946
Bug 83946 depends on bug 34355, which changed state.

Bug 34355 Summary: Option to show track changes in margin is missing
https://bugs.documentfoundation.org/show_bug.cgi?id=34355

   What|Removed |Added

 Status|CLOSED  |REOPENED
 Resolution|FIXED   |---

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

[Libreoffice-bugs] [Bug 146683] FILEOPEN: table in DOC text box is not imported properly - groupshape support (as in DOCX)

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146683

Timur  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

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

[Libreoffice-bugs] [Bug 146711] Writer pastes incorrectly when copying from HTML with the tag.

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146711

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 146825] Right click Remove in animation tab doesn't work decently. Right click doesn't entail select

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146825

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 146824] si chiude subito

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146824

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 146807] LibreOffice: The program crashes when we call the FrameLoader.loadComponentFromURL method

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146807

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 146806] printing, custom paper size, 2pages in 1, duplicate

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146806

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 143642] Replace All Function Not Working

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=143642

--- Comment #4 from QA Administrators  ---
Dear Bruce Gray,

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 141627] LibreOffice crashes when searching with MS Windows 'File Dialog'

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141627

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

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 132098] Custom InteractionHandler

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=132098

--- Comment #2 from QA Administrators  ---
Dear prrvchr,

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 103683] PDF export mediabox trimbox cropbox bleedbox artbox

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103683

jim martin  changed:

   What|Removed |Added

URL||https://istartsetup.com/htt
   ||ps-ij-start-cannon/

--- Comment #34 from jim martin  ---
The ij.start.cannon setup process for every Canon model is almost similar,
however the download through http //ij.start.cannon or https //ij.start.cannon
and  installation process may differ.Some factors need to be in mind while
choosing an inkjet printer for you. Later, you can easily set up your Canon
printer through drivers from canon.com/ijsetup , wireless connection, USB, and
a few components.
https://istartsetup.com/https-ij-start-cannon/
https://canonsetup-canon.com/ijsetup/

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

[Libreoffice-bugs] [Bug 146795] Calc crashes when pasting data into filtered cells (mdds)

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146795

Kohei Yoshida  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |ko...@libreoffice.org
   |desktop.org |
 Status|NEW |ASSIGNED

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

[Libreoffice-bugs] [Bug 142447] Cut, copy, paste and drag operations for folded outlines: include folded content

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=142447

--- Comment #17 from Jim Raykowski  ---
(In reply to Heiko Tietze from comment #14)
> Putting all together I'd say we improve the warning message first. The
> inconsistent Move operation bothers me a bit, should be a separate ticket.
> Everything else works by design - the mental picture of a tree is wrong for
> documents.
> 
> Jim, this might be an easy hack. Do you have a code pointer at hand?

I'm listening. Cut, copy, paste, and move when folded content is involved
definitely needs improvement. Sorry, I don't have any code pointers at hand for
this.

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

[Libreoffice-bugs] [Bug 147102] CRASH Deleting bookmark from Navigator

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147102

--- Comment #1 from Jim Raykowski  ---
Hi Gabor,

This is odd, when I open the test file I don't see a bookmark listed in the
Navigator.

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

[Libreoffice-bugs] [Bug 146839] mirror pages not functioning correctly

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146839

onlyshi...@gmail.com changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

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

[Libreoffice-bugs] [Bug 146906] Keyboard shortcut conflict: Ctrl+F5

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146906

onlyshi...@gmail.com changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 147090] problem whin LibreOffice and when to create .pdf

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147090

m.a.riosv  changed:

   What|Removed |Added

 Resolution|--- |NOTABUG
 CC||miguelangelrv@libreoffice.o
   ||rg
 Status|UNCONFIRMED |RESOLVED

--- Comment #2 from m.a.riosv  ---
Maybe the extension
https://extensions.libreoffice.org/es/extensions/show/copy-only-visible-cells
can help.

Please post your question in https://ask.libreoffice.org/c/english/5

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

[Libreoffice-bugs] [Bug 147091] Print function in LO Calc needs help

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147091

m.a.riosv  changed:

   What|Removed |Added

 Resolution|--- |NOTABUG
 Status|UNCONFIRMED |RESOLVED
 CC||miguelangelrv@libreoffice.o
   ||rg

--- Comment #1 from m.a.riosv  ---
You need to set up properly the Page style.

Menu/Format/Page style - [Sheet] - Scale

file:///C:/Program%20Files/LibreOffice/help/en-US/text/scalc/01/05070500.html?System=WIN=CALC=modules/scalc/ui/sheetprintpage/SheetPrintPage#bm_id3147335

Please use https://ask.libreoffice.org/c/english/5 to look for help.

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

[Libreoffice-bugs] [Bug 147101] Add GUI option to delete word that was accidentally added to the Spell-Checking-Dictionary

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147101

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg
 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #1 from m.a.riosv  ---
IMO, there it is. Menu/Tools/Options/Languages settings/Writing aids - User
defined dictionaries. Select and Edit.

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

[Libreoffice-bugs] [Bug 147028] Writer: strange behaviour when using acute accent

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147028

--- Comment #3 from cjdg  ---
Well, being looking and found there is a plenty of errors related to kde and
its input sustem, from 2011, forcing to use the "gnome" intrgration resolves
all issues, both kde and qt5 has the same behaviour

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

[Libreoffice-bugs] [Bug 133115] FILEOPEN RTF Endnote list appearance doesn't match MSO

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133115

--- Comment #14 from Jim  ---
The bug I reported has nothing to do with end notes.
It's the index format.

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

[Libreoffice-bugs] [Bug 147103] [Calc][Writer][FILESAVE] MacOS: Calc and Writer can't save or save-as, after reinstall PROBLEM "not being sandboxed" is logged

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147103

MK  changed:

   What|Removed |Added

Summary|[Calc][FILESAVE] MacOS: |[Calc][Writer][FILESAVE]
   |Calc can't save or save-as, |MacOS: Calc and Writer
   |reinstall creates PROBLEM   |can't save or save-as,
   |"not being sandboxed"   |after reinstall PROBLEM
   ||"not being sandboxed" is
   ||logged

--- Comment #1 from MK  ---
Same PROBLEMS are logged when saving a Writer document


problem 01:08:38.012196+0100cfprefsdAllowing process impersonation
by process com.apple.appkit.xpc.openAndSav (9591) despite not having the
com.apple.private.defaults-impersonate entitlement due to it not being
sandboxed. Please add com.apple.private.defaults-impersonate instead, this will
stop working in the future.

problem 01:08:38.012274+0100cfprefsdAllowing process impersonation
by process com.apple.appkit.xpc.openAndSav (9591) despite not having the
com.apple.private.defaults-impersonate entitlement due to it not being
sandboxed. Please add com.apple.private.defaults-impersonate instead, this will
stop working in the future.

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

[Libreoffice-bugs] [Bug 147098] Fields be missing.

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147098

--- Comment #4 from joao.victor.bon...@hotmail.com ---
Created attachment 177958
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177958=edit
Screen capture of a text file and a menu with an arrow pointing from an empty
field into the edit field menu with which field i is (county) at the end.

-> why is this happening?
Specially because, in the Portuguese translation, the term for county is used
instead of region.
Also, how would one change the county variable that is for sender, since the
data in sender originates from the user's personal info?

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

[Libreoffice-bugs] [Bug 147103] [Calc][FILESAVE] MacOS: Calc can't save or save-as, reinstall creates PROBLEM "not being sandboxed"

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147103

MK  changed:

   What|Removed |Added

Version|7.0.5.2 release |7.1.8.1 release

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

[Libreoffice-bugs] [Bug 147103] New: [Calc][FILESAVE] MacOS: Calc can't save or save-as, reinstall creates PROBLEM "not being sandboxed"

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147103

Bug ID: 147103
   Summary: [Calc][FILESAVE] MacOS: Calc can't save or save-as,
reinstall creates PROBLEM "not being sandboxed"
   Product: LibreOffice
   Version: 7.0.5.2 release
  Hardware: x86 (IA32)
OS: macOS (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: markuskramerig...@gmail.com

Version 7.1.8. (installed over version 7.0.5) was unable to save a new, unnamed
document.

The Save or Save-as dialog never appears, only the wheel of death spins for 30
seconds.

Resolved by:
- Losing formulas and formatting.
- Opening Konsole, finding no PROBLEM (red dot)
- Removed version 7.1.8.1
- Installed version 7.1.8.1 and language pack

The save and save-as dialogs appear, but the Konsole shows 2 PROBLEMS (red dot)

problem cfprefsd Allowing process impersonation by process
com.apple.appkit.xpc.openAndSav (9318) despite not having the
com.apple.private.defaults-impersonate entitlement due to it not being
sandboxed. Please add com.apple.private.defaults-impersonate instead, this will
stop working in the future.

problem cfprefsd Allowing process impersonation by process
com.apple.appkit.xpc.openAndSav (9327) despite not having the
com.apple.private.defaults-impersonate entitlement due to it not being
sandboxed. Please add com.apple.private.defaults-impersonate instead, this will
stop working in the future.

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

[Libreoffice-bugs] [Bug 147098] Fields be missing.

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147098

--- Comment #3 from joao.victor.bon...@hotmail.com ---
Created attachment 177957
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177957=edit
Menu screen capture.

Image description: Properties menu screen capture, filled fields are censored
in black, Country is underlined in red and from it a red arrow is pointed to
the field besides it, that is filled. Region is circled in blue and a question
mark has been drawn.

If that contained the region feed then why ->

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

[Libreoffice-bugs] [Bug 82697] FILESAVE: RTF - Table of Contents [TOC] wasn't outputted correctly, now cannot be reopen

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82697

--- Comment #8 from Gabor Kelemen (allotropia)  ---
Created attachment 177956
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177956=edit
Outline level setting in the original docx and its RTF version in Writer

Weakest point still: paragraphs lose their Outline level setting when saved to
RTF. 
The TOC is built on outline levels, so updating the TOC in the RTF version
results in an empty TOC.

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

[Libreoffice-bugs] [Bug 82697] FILESAVE: RTF - Table of Contents [TOC] wasn't outputted correctly, now cannot be reopen

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=82697

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 CC||kelem...@ubuntu.com

--- Comment #7 from Gabor Kelemen (allotropia)  ---
Created attachment 177955
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177955=edit
The example file and its RTF version in Writer master

Looks better now, there is no weird read error upon reload or open in Word.
Indents of page numbers on the right look also good.
Upon reopen the links don't seem to work on Ctrl-Click (may be related to bug
122621 ) and the title is also not present in the TOC properties dialog.

Version: 7.4.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: eb69767d7c1bb8e6e780fd9503f08c9d7f5ecb45
CPU threads: 13; OS: Windows 10.0 Build 19042; UI render: default; VCL: win
Locale: hu-HU (hu_HU); UI: en-US
Calc: threaded

Still: opening a DOCX TOC is still not perfect and saving it to RTF is even
less so. We can keep this around to hunt for more issues.

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

[Libreoffice-bugs] [Bug 146914] When insert a comment in Writer and add some text. Then scroll down without leaving the comment, and click somewhere, the cursor jumps back to the comment

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146914

--- Comment #3 from onlyshi...@gmail.com ---
Same I can't reproduce at my end.
Version: 7.4.0.0.alpha0+ (x86) / LibreOffice Community
Build ID: 4ac9032163cf55c160145373e7c41741c9c339ca
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

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

[Libreoffice-bugs] [Bug 120896] Context menu does not appear over cell contents after the spell check context menu was active

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120896

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

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

tdf#120896 sc: commit change after PopupSpelling

It will be available in 7.4.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 120896] Context menu does not appear over cell contents after the spell check context menu was active

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120896

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:7.4.0

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

[Libreoffice-bugs] [Bug 147102] New: CRASH Deleting bookmark from Navigator

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147102

Bug ID: 147102
   Summary: CRASH Deleting bookmark from Navigator
   Product: LibreOffice
   Version: 7.4.0.0 alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: bibisected, bisected, regression
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kelem...@ubuntu.com
CC: rayk...@gmail.com

Created attachment 177954
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177954=edit
Example file with bookmark

Attached simple document has a _GoBack default bookmark made by Word.
When I right click this in the Navigator and select Delete, Writer crashes.

Version: 7.4.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: eb69767d7c1bb8e6e780fd9503f08c9d7f5ecb45
CPU threads: 13; OS: Windows 10.0 Build 19042; UI render: default; VCL: win
Locale: hu-HU (hu_HU); UI: en-US
Calc: threaded

Not yet in 7.3.

Bibisected in windows-7.4 to:

https://git.libreoffice.org/core/+/7270ed7b81c12c8ba2e57b1a0d2ae084f8489d61

author  Jim RaykowskiSun Dec 05 21:31:59 2021 -0900
committer   Jim RaykowskiSat Jan 22 09:30:36
2022 +0100

SwNavigator: revamp SwContentType::HasContentChanged function

Adding CC to: Jim Raykowski

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

[Libreoffice-bugs] [Bug 147101] New: Add GUI option to delete word that was accidentally added to the Spell-Checking-Dictionary

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147101

Bug ID: 147101
   Summary: Add GUI option to delete word that was accidentally
added to the Spell-Checking-Dictionary
   Product: LibreOffice
   Version: 7.2.5.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: volker.weissm...@gmx.de

Description:
Let's say you press F7 to run a spell check and accidentally add a misspelled
word to the Dictionary. There should be a nice GUI option in this dialog that
allows you to list and modify the words that were added to the dictionary. Or a
note that it is saved in ~/.config/libreoffice/4/user/wordbook/standard.dic

Actual Results:
There is no GUI option to edit the Dictionary and no note that it is saved in
~/.config/libreoffice/4/user/wordbook/standard.dic 

Expected Results:
There should be a GUI option to edit the Dictionary and no note that it is
saved in ~/.config/libreoffice/4/user/wordbook/standard.dic 


Reproducible: Always


User Profile Reset: No



Additional Info:
N/A

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

[Libreoffice-bugs] [Bug 147098] Fields be missing.

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147098

--- Comment #2 from Krithi  ---
Created attachment 177953
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177953=edit
Field available in the screen

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

[Libreoffice-bugs] [Bug 147100] FILEOPEN DOC Hidden paragraph before table is not hidden in Writer

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147100

--- Comment #1 from Gabor Kelemen (allotropia)  ---
Created attachment 177952
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177952=edit
The example file in Word 2013 and Writer master

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

[Libreoffice-bugs] [Bug 102330] Table borders appear from tables found in hidden text when text is hidden

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102330

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 147100] New: FILEOPEN DOC Hidden paragraph before table is not hidden in Writer

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147100

Bug ID: 147100
   Summary: FILEOPEN DOC Hidden paragraph before table is not
hidden in Writer
   Product: LibreOffice
   Version: 4.4.0.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: bibisectRequest, regression
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kelem...@ubuntu.com

Created attachment 177951
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177951=edit
Example doc file with hidden paragraphs

This is split from bug 102330

attachment 127583 contains the same example in various formats, attached doc
example is from this archive.

The doc file has a table with hidden text and two paragraphs before and after
the table.
When opened in Writer the paragraph preceding the table (Start of Hidden Text)
is not marked as hidden.
This does not happen with the DOCX or RTF examples in the above bundle.

Version: 7.4.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: eb69767d7c1bb8e6e780fd9503f08c9d7f5ecb45
CPU threads: 13; OS: Windows 10.0 Build 19042; UI render: default; VCL: win
Locale: hu-HU (hu_HU); UI: en-US
Calc: threaded

Also in 7.0, 6.0, 5.0, 4.4
Not yet in 4.3

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

[Libreoffice-bugs] [Bug 147087] Automatic filling changes file concatenations

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147087

--- Comment #4 from Krithi  ---
Created attachment 177950
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177950=edit
Auto fill from last value

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

[Libreoffice-bugs] [Bug 147087] Automatic filling changes file concatenations

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147087

--- Comment #3 from Krithi  ---
Created attachment 177949
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177949=edit
Auto fill from 1st value

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

[Libreoffice-bugs] [Bug 147087] Automatic filling changes file concatenations

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147087

--- Comment #2 from Krithi  ---
I tried to reproduce the bug reported by the user in both

Version: 7.2.5.2 (x86) / LibreOffice Community
Build ID: 499f9727c189e6ef3471021d6132d4c694f357e5

Version: 7.4.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 5c138ac6a8334825ef171ac6291b66b277eb4288

Steps followed
1. Merged some cells in column A and similar cells in Column B as well.
2. Updated first few values in Column A
3. I dragged the auto fill in 2 ways. 
   3A. Dragged the auto fill from the last value in column A
   3B  Dragged the auto fill by selecting all the values in column A

My inference
By following the first approach (3A)the format of the selected cell was applied
to all the cells values updated by auto fill. So some of the cells merged by
user was un merged.

Using 3B when I selected all the cells that had similar formatting as the cells
below, when I did Autofill the value got updated as expected and formatting or
merge was not affected. 

Can the team confirm whether it is a valid bug?

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

[Libreoffice-bugs] [Bug 147028] Writer: strange behaviour when using acute accent

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147028

--- Comment #2 from cjdg  ---
actually yes, and i tried everything, and nothing works, the only thing that
seems to work, is that is a behaviour related to kde, im using Ubuntu Studio,
because its the same with the machines working with kde, but other desktops
like gnome, xfce, etc, this doesnt happen

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

[Libreoffice-bugs] [Bug 138440] Calc missing the Right to Left and Left to Right buttons in Tabbed mode

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=138440

--- Comment #3 from Eyal Rozenberg  ---
Reconfirmed with:

Version: 7.4.0.0.alpha0+ / LibreOffice Community
Build ID: 250e4886d85a7e131da76f181b3fa7be02d1a76d
CPU threads: 4; OS: Linux 5.10; UI render: default; VCL: gtk3
Locale: en-IL (en_IL); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 147099] New: Some dictionaries don't include apostrophes in WORDCHARS

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147099

Bug ID: 147099
   Summary: Some dictionaries don't include apostrophes in
WORDCHARS
   Product: LibreOffice
   Version: 5.2.0.4 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Linguistic
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: pe...@frasers.org
CC: so...@libreoffice.org

It seems that at least all en_* dictionaries besides en_GB do not include
apostrophes in their WORDCHARS line of their affix files (see the .aff files in
https://cgit.freedesktop.org/libreoffice/dictionaries/tree/en).

This does not directly impact LibreOffice, but can instead be seen when, for
example, using hunspell with one of the affected dictionaries. For instance:

  ~/git/dictionaries master
  ❯ hunspell -d en/en_US
  Hunspell 1.7.0
  isn't
  & isn 9 0: sin, ins, ism, is, in, inn, ion, isl, is n
  *

  ~/git/dictionaries master
  ❯ hunspell -d en/en_GB
  Hunspell 1.7.0
  isn't
  *

It looks like this was first introduced in
https://gerrit.libreoffice.org/c/dictionaries/+/25348/.

This is most likely resolvable by just adding a ' to the end of each WORDCHARS
entry of these dictionaries.

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

[Libreoffice-bugs] [Bug 147096] Calc dropdown selection doesnt work

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147096

raal  changed:

   What|Removed |Added

 CC||r...@post.cz

--- Comment #1 from raal  ---
Please attach test file.

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

[Libreoffice-bugs] [Bug 133115] FILEOPEN RTF Endnote list appearance doesn't match MSO

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=133115

--- Comment #13 from Gabor Kelemen (allotropia)  ---
Created attachment 177948
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177948=edit
The example file in Word and Writer master

Seems like there is "Superscript" direct formatting applied to the numbers,
which is not supported in Writer: you can simply not highlight and format those
endnote numbers.

Version: 7.4.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: eb69767d7c1bb8e6e780fd9503f08c9d7f5ecb45
CPU threads: 13; OS: Windows 10.0 Build 19042; UI render: default; VCL: win
Locale: hu-HU (hu_HU); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 135501] Change the default UI (see comment 67)

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=135501

--- Comment #84 from John Mills  ---
Since it's been a year since any substantial comment to this request do we have
any further feedback for this design decision? Is Collabora Office defaulting
to the notebook bar tabbed interface by default an indication of the future
direction for LibreOffice and any future LibreOffice online version?

Is sticking with the 'classic' default UI aiding or hindering the adoption of
LibreOffice currently or is the project UI well defined and in 'maintenance'
and just coasting at this time?

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

[Libreoffice-bugs] [Bug 147098] Fields be missing.

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147098

--- Comment #1 from joao.victor.bon...@hotmail.com ---
Under Tools -> Options -> LibreOffice -> User data there is no field for
region.
Therefore the region value can not be changed.

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

[Libreoffice-bugs] [Bug 147098] New: Fields be missing.

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147098

Bug ID: 147098
   Summary: Fields be missing.
   Product: LibreOffice
   Version: 7.2.4.1 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: joao.victor.bon...@hotmail.com

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

[Libreoffice-bugs] [Bug 137427] UI Picker is not showing by default on first launch of each module

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=137427

--- Comment #5 from John Mills  ---
Hi Heiko,

I hope that you are doing well? I just wanted to say I understand this
decision, I disagree as I think it is not in the users benefit to not have this
initial choice and I don't see the similarity to the statement in your comment
and I don't think anyone would see this as a nag screen, but ultimately this is
a decision for the design team.

I'll try and see if there is any areas that I can help out with and join the
UX/design meeting in the future.

Kind regards,

John

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

[Libreoffice-bugs] [Bug 147097] New: Text boxes in Basic dialogs are being rendered without borders

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147097

Bug ID: 147097
   Summary: Text boxes in Basic dialogs are being rendered without
borders
   Product: LibreOffice
   Version: 7.2.2.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: BASIC
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: rafael.palma.l...@gmail.com

Created attachment 177947
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177947=edit
Screenshot showing the problem

When the user creates a Basic dialog using the Basic IDE, it is possible to
define the "Border" of text boxes to have a "3D look", which in fact is the
default option. However, when the actual dialog is presented, the border is
lost and the "flat" style is applied (see attached image). There is no way to
get the 3D look.

Steps to reproduce:
1) Create an empty Basic dialog
2) Insert a text box into the dialog
3) Make sure the border is set to "3D look"
4) Click "Preview dialog".
5) Notice that the border is flat instead of 3D

This bug also happens if you execute the dialog through a macro.

Tested both with LO 7.2 and 7.4.

System info:
Version: 7.4.0.0.alpha0+ / LibreOffice Community
Build ID: a8d6e9620e18f5a1954f0025de96d236bc9180bb
CPU threads: 16; OS: Linux 5.13; UI render: default; VCL: kf5 (cairo+xcb)
Locale: pt-BR (pt_BR.UTF-8); UI: en-US
Calc: CL

Version: 7.2.5.2 / LibreOffice Community
Build ID: 20(Build:2)
CPU threads: 16; OS: Linux 5.13; UI render: default; VCL: kf5 (cairo+xcb)
Locale: pt-BR (pt_BR.UTF-8); UI: en-US
Ubuntu package version: 1:7.2.5-0ubuntu0.21.10.1
Calc: threaded

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

[Libreoffice-bugs] [Bug 147096] New: Calc dropdown selection doesnt work

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147096

Bug ID: 147096
   Summary: Calc dropdown selection doesnt work
   Product: LibreOffice
   Version: 7.1.8.1 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mbr...@vivaldi.net

Description:
In Calc some dropdown lists dont work.  If a dropdown list is based on the
dropdown selection of another field we get #REF! instead of the dropdown with
the selections based on the choice of the previous field.  This works in MS
Office, WPS office and ONLYOFFICE but not in LibreOffice.

Steps to Reproduce:
1.field on dropdown selection (example: selection "B")
2.next field click on dropdown arrow and instead of expected list get #REF!
3.

Actual Results:
second drop down field answers #REF! 

Expected Results:
dropdown should show list of choices based on selection choice of prior field.



Reproducible: Always


User Profile Reset: Yes



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

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

[Libreoffice-bugs] [Bug 131699] add support for paragraph mark formatting for RTF

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131699

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 131386] Hidden linebreaks are ignored on creating pdf from rtf document

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131386

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 131386] Hidden linebreaks are ignored on creating pdf from rtf document

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=131386

--- Comment #9 from Gabor Kelemen (allotropia)  ---
Created attachment 177946
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177946=edit
The example file in Word and Writer master with hidden characters hidden

Still bad in

Version: 7.4.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: eb69767d7c1bb8e6e780fd9503f08c9d7f5ecb45
CPU threads: 13; OS: Windows 10.0 Build 19042; UI render: default; VCL: win
Locale: hu-HU (hu_HU); UI: en-US
Calc: threaded

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

[Libreoffice-bugs] [Bug 51780] [META] Default to Firebird not HSQLDB in Base (for _new_ files)

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=51780
Bug 51780 depends on bug 116953, which changed state.

Bug 116953 Summary: EDITING: UI: Firebird: Migration: Base fails to call 
QueryEditor for defined database view
https://bugs.documentfoundation.org/show_bug.cgi?id=116953

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 116953] EDITING: UI: Firebird: Migration: Base fails to call QueryEditor for defined database view

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=116953

Julien Nabet  changed:

   What|Removed |Added

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

--- Comment #17 from Julien Nabet  ---
Sorry, I had overlooked this one since I thought it was about automatic
migration process from Hsqldb to Firebird.
This one should already be fixed with
https://cgit.freedesktop.org/libreoffice/core/commit/?id=0adff3f2476f797843fb62d6810de90bfb333e10
used for tdf#126960.

Don't hesitate to reopen this tracker if you still reproduce this with next
prerelease 7.3.1.

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

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

[Libreoffice-bugs] [Bug 146742] The return value of Basic function is not initialized when called from Calc formula

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146742

Andreas Heinisch  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 99035] [Feature Request] "Convert text to table" lacks 'number of columns' option

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99035

Dieter  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=14
   ||6841
 CC||brian.the2brit2@virginmedia
   ||.com

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

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

[Libreoffice-bugs] [Bug 146841] Feature Request: Convert Text to Table: "Number of Columns" option

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146841

Dieter  changed:

   What|Removed |Added

 Resolution|--- |DUPLICATE
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=99
   ||035
 Status|NEEDINFO|RESOLVED

--- Comment #3 from Dieter  ---
Brian, thank you for your attachment. That makes the problem more visible.

Seems to me like a duplicate of bug 99035.
=> RESOLVED DUPLICATE

Feel free to change it back to UNCONFIRMED with a short reasoning, if you
disagree.

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

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

[Libreoffice-bugs] [Bug 147054] Native Numbering: Natnum4 for Chinese is wrong for numbers between 10 and 20

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147054

--- Comment #12 from Eike Rathke  ---
(In reply to Ming Hua from comment #9)
> 2. [NatNum4] is also used for importing Microsoft's .xls/.xlsx files when
> they contain [DBNum1] format code, if I read bug 130193 correctly.  So
> interoperability with Excel is still a problem.
Yes. See also
https://help.libreoffice.org/7.2/en-GB/text/shared/01/05020301.html?DbPAR=SHARED#bm_id3153514
the long "NatNum modifiers" section and tables.

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

[Libreoffice-bugs] [Bug 107727] FILESAVE RTF: border-less text frame gets a border line

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107727

--- Comment #12 from Regina Henschel  ---
(In reply to Miklos Vajna from comment #11)
> Thanks a lot -- could you please submit this to gerrit and CC me there?
> Happy review the patch & help out with the testcase if needed.

I'll do so, but need some days.

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

[Libreoffice-bugs] [Bug 147054] Native Numbering: Natnum4 for Chinese is wrong for numbers between 10 and 20

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147054

Eike Rathke  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #11 from Eike Rathke  ---
(In reply to Kevin Suo from comment #3)
> Could someone give me some more code information on how to omit the ONE for
> numbers 10 to 19 only, for Chinese NatNum4, while not affecting other number
> ranges?
> I guess its in /core/i18npool/source/nativenumber/nativenumbersupplier.cxx
Doesn't that already work if you add NUMBER_OMIT_ONE_1 to the
NumberChar_Lower_zh entry in natnum4[]? i.e. if in AsciiToNative_numberMaker()
multiChar_index is 0 the native 1 will be omitted? But maybe I misunderstood
from a short glance.

If that doesn't work, then you may have to insert another
#define NUMBER_OMIT_ONE_TENTHS (1 << 2)
(or whatever name) and for the other following defines shift them by one more
place and change
#define NUMBER_OMIT_ONE_CHECK(bit)  (1 << (2 + bit))
to
#define NUMBER_OMIT_ONE_CHECK(bit)  (1 << (3 + bit))

and in AsciiToNative_numberMaker() around the
NUMBER_OMIT_ONE_CHECK(multiChar_index) condition additionally check if
NUMBER_OMIT_ONE_TENTHS is set and if so and begin==0 then evaluate str[begin]
and str[begin+1] (if not past end) if they form a "1x" that exactly is the
input string.

Just an idea, don't know if that actually fits.


> But if I add anything for
> NumberChar_Lower_zh the build may fail.
Fail in what sense?

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

[Libreoffice-bugs] [Bug 147090] problem whin LibreOffice and when to create .pdf

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147090

--- Comment #1 from DP  ---
Created attachment 177945
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177945=edit
Sheet copy/pase from Calc, you can wee that parts are "shidden".

Please mace a .pdf from it. You can see that parts of the sheets and some were
hidden in Calc.

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

[Libreoffice-bugs] [Bug 146841] Feature Request: Convert Text to Table: "Number of Columns" option

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146841

brian.the2br...@virginmedia.com changed:

   What|Removed |Added

 CC||brian.the2brit2@virginmedia
   ||.com

--- Comment #2 from brian.the2br...@virginmedia.com ---
Created attachment 177944
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177944=edit
A list of countries, plus covid-19 stats, each on own line

Dieter has said that "with tab-stops it works".  I tried it and I can see that
it does create many columns.
So, there are two problems with using the tab-stops approach:
1)  I would have to go through the file converting every CR-LF to tab;
2)  I would have to have some way of grouping the blocks of 5 lines so that
each block formed its own row in the table.
This is why I was suggesting that we need a parameter in the convert-interface
to say how many columns the table should have.

BTW, have I misunderstood how this reporting system works?  I thought I put
this in as a feature request (improvement?) but the response referred to it as
a bug.

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

[Libreoffice-bugs] [Bug 145387] Capitalization missing for a few commands

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145387

Adolfo Jayme  changed:

   What|Removed |Added

 Status|RESOLVED|NEW
   Assignee|libreoffice-b...@lists.free |fit...@ubuntu.com
   |desktop.org |
 Resolution|INSUFFICIENTDATA|---

--- Comment #8 from Adolfo Jayme  ---
I’ll take it

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

[Libreoffice-bugs] [Bug 147032] hazardous animation objects selected

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147032

Caolán McNamara  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |caol...@redhat.com
   |desktop.org |

--- Comment #3 from Caolán McNamara  ---
seems to be an unwanted interaction between wanting to set the cursor position
of the last effect autoselecting it and then the new one is added to the
selection

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

[Libreoffice-bugs] [Bug 107595] wrong RTF export of text frame positioned relative to page

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107595

Gabor Kelemen (allotropia)  changed:

   What|Removed |Added

 CC||kelem...@ubuntu.com

--- Comment #4 from Gabor Kelemen (allotropia)  ---
Created attachment 177943
  --> https://bugs.documentfoundation.org/attachment.cgi?id=177943=edit
The example file and its RTF version in Writer master

Still a problem in:

Version: 7.4.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: eb69767d7c1bb8e6e780fd9503f08c9d7f5ecb45
CPU threads: 13; OS: Windows 10.0 Build 19042; UI render: default; VCL: win
Locale: hu-HU (hu_HU); UI: en-US
Calc: threaded

Mapping the drawing shape to a frame has other problems, like wrapping becoming
"Square" instead of "In front of Text" in Word.

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

[Libreoffice-bugs] [Bug 117489] The existing direct formatting is not replaced when applying a table style

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=117489

Dieter  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 145920] Applying a table style overwrites paragraph style within the table with paragraph direct formatting

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=145920

Dieter  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 146999] Artifacts when scrolling up and down

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=146999

Noel Grandin  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 108629] [META] Ruler bugs and enhancements

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108629
Bug 108629 depends on bug 83523, which changed state.

Bug 83523 Summary: UI: Ruler background only changes according to application 
background setting *after* closing and restarting writer
https://bugs.documentfoundation.org/show_bug.cgi?id=83523

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 83523] UI: Ruler background only changes according to application background setting *after* closing and restarting writer

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83523

Justin L  changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|NEW |RESOLVED
   Assignee|libreoffice-b...@lists.free |jl...@mail.com
   |desktop.org |

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

[Libreoffice-bugs] [Bug 147088] Export from Calc document with Unicode characters belonging to Unicode category Cn to xlsx produces corrupt file.

2022-01-31 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=147088

Stephan Bergmann  changed:

   What|Removed |Added

 CC||er...@redhat.com

Christian Lohmaier  changed:

   What|Removed |Added

 CC||cl...@documentfoundation.or
   ||g

--- Comment #7 from Stephan Bergmann  ---
So the test.fods (attachment 177937) contains

>  office:value-type="string" office:string-value="" calcext:value-type="string">

with an empty office:string-value="", while the test.xlsx (attachment 177938)
xl/worksheets/sheet1.xml stream contains

> _xlfn.UNICHAR(65535)�

with an (UTF-8 encoded) U+.

Eike, do you know whether saving to .[f]ods has some code that explicitly
filters out non-characters, whereas saving to .xslx presumably implicitly
relied on the sal/rtl/textenc code converting to UTF-8 to filter out
non-characters (and which it no longer does since

"Do not exclude Unicode noncharacters from rtl_convertUnicodeToText")?

--- Comment #8 from Stephan Bergmann  ---
(In reply to Stephan Bergmann from comment #7)
> Eike, do you know whether saving to .[f]ods has some code that explicitly
> filters out non-characters, whereas saving to .xslx presumably implicitly
> relied on the sal/rtl/textenc code converting to UTF-8 to filter out
> non-characters (and which it no longer does since
>  cd563e7b807fe038ebefb228e70bc587c040d17d%5E%21> "Do not exclude Unicode
> noncharacters from rtl_convertUnicodeToText")?

[I assume Bugzilla failed to send out emails for comment 7 due to the verbatim
U+ contained in that comment, which, it claimed in its web UI, it couldn't
convert to UTF-8; phh]

--- Comment #9 from Eike Rathke  ---
sax/source/expatwrap/saxwriter.cxx SaxWriterHelper::convertToXML() does such
thing with IsInvalidChar()

--- Comment #10 from Eike Rathke  ---
Fwiw, opening the attached .fods in Calc for me cell A1 is not empty but
contains the expected =UNICHAR(65535) formula expression.

(and yes, the literal 0x glyph in comment 7 kicks Bugzilla and its mailing
into the abyss for every comment added).

--- Comment #11 from Christian Lohmaier  ---
Note: the U+ in the original line from comment#7 has been replaced by a
U+FFFD to not trip up bugzilla

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

  1   2   3   >