[Libreoffice-bugs] [Bug 114817] New bitmap presets for Area Fill

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114817

--- Comment #6 from andreas_k  ---
Created attachment 139287
  --> https://bugs.documentfoundation.org/attachment.cgi?id=139287=edit
source files

attached the source files I optimize them and we talk about 1,7 mb for 43
bitmaps. In master we have 20 bitmaps so we have to remove nearly 50%.
suggestions are welcome.

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


[Libreoffice-bugs] [Bug 106780] FILESAVE, ODF: attribute text:style-name is invalid in table: table-template

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106780

abstatic  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |x.abhishek.flyh...@gmail.co
   |desktop.org |m

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


[Libreoffice-bugs] [Bug 106780] FILESAVE, ODF: attribute text:style-name is invalid in table: table-template

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106780

--- Comment #5 from abstatic  ---
Hi,

I have submitted a patch for this at https://gerrit.libreoffice.org/#/c/48373/

Now the name for attribute in table-template is table:name.

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


[Libreoffice-bugs] [Bug 114988] Hang on startup of every component due to OpenCL

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114988

--- Comment #8 from Simon  ---
(In reply to Michael Meeks from comment #7)
>Sounds like the black-list is doing its job then =) Thanks for attaching
> the log - can you report your version of Windows too ?

Sorry for not replying earlier, I run Windows 8.1 pro, 64 bit, build 9600. 

Thanks for your support and an awesome product in general! I really appreciate
it.

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


[Libreoffice-bugs] [Bug 115101] Form Editing, Table Control, Add Field, adds wrong items

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115101

--- Comment #6 from Howard Johnson  ---
I have noticed that in some LO user interfaces elements, hover (over, as in CSS
mouse hover) produces a highlighting as elements come under the mouse pointer. 
Also there is an observed temporary change of focus behavior when this occurs.  

In other elements this does not occur with a hover.  

I suspect that the wrong behavior is involved in this control at the moment it
is dragged, in other words it's still using hover over & change focus mode, but
after being down clicked it should turn that off so the drag does not cause
focus motion.


Create any database.  Open the Tables.  Move the mouse around and observe that
most things light up when the mouse is over them.  But notice that the pull
down box to select a component at the top left does not have this behavior.

Another example is the Form Navigator when editing a form.  The elements do not
light up when hovered over.


@Alex, 

>> this might be a GTK2 UI-specific bug, as the version you tested was built 
>> with the GTK2 UI framework. 

Interesting idea.  I confirmed that 6.0.0.0.beta2 and 6.0.0.2 downloaded from
LO web site both use GTK2.  Someday perhaps I might have the ability to dry
what you suggest, but have too many fires to fight right now to get into that. 
But given that we ALL are using GTK2 (at least anyone who is installing from LO
download page), then we all should be seeing roughly the same thing.  But you
know all that lare

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


[Libreoffice-bugs] [Bug 115163] New: Hardcoded Listen Address

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115163

Bug ID: 115163
   Summary: Hardcoded Listen Address
   Product: LibreOffice Online
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: n...@kousu.ca

loolwsd is hardcoded to bind to 0.0.0.0. If you run it by default it opens two
ports

# netstat -p -t tcp -l -n
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address   Foreign Address State  
PID/Program name
...
tcp0  0 0.0.0.0:99800.0.0.0:*   LISTEN 
1739/loolwsd
tcp0  0 127.0.0.1:9981  0.0.0.0:*   LISTEN 
1739/loolwsd

Why is this? Most web daemons let  me pick a listen address, so that I can, if
I want, put it behind nginx/apache/whatever. Is this just an oversight because
your default supported config assumes everyone will wrap loolwsd inside docker
and use `docker port 127.0.0.1:9980:9980` to wrap it.

The code that causes this is because the 9980 websocket port is hardcoded to
"Type::Public", and that causes:

https://cgit.freedesktop.org/libreoffice/online/tree/wsd/LOOLWSD.cpp#n2605
```
std::shared_ptr socket = getServerSocket(
ServerSocket::Type::Public, port, WebServerPoll, factory);
```

https://cgit.freedesktop.org/libreoffice/online/tree/wsd/LOOLWSD.cpp#n2555

```
if (!serverSocket->bind(type, port))
return nullptr;
```


https://cgit.freedesktop.org/libreoffice/online/tree/net/Socket.cpp#n210

```
if (type == Type::Public)
addrv4.sin_addr.s_addr = type == htonl(INADDR_ANY);
else
addrv4.sin_addr.s_addr = type == htonl(INADDR_LOOPBACK);
```


Instead of this trying to be helpful, can there please be a  config
option? I just want to be able to tell loolwsd "listen here, I promise I know
what I'm doing"

In practice this doesn't seem to hurt me; I have nginx fronting loolwsd so no
one actually speaks unencrypted to loolwsd, but there's the potential that
someone might misconfigure a client somewhere and that worries me.

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


[Libreoffice-bugs] [Bug 106022] MailMerge: when running e-mail using a macro the MailMergeEventListener is monitoring wrong events

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106022

Aron Budea  changed:

   What|Removed |Added

 Resolution|FIXED   |WORKSFORME

--- Comment #5 from Aron Budea  ---
Thanks for the update! Let's change status to WORKSFORME, as the fixing commit
is unknown.

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


[Libreoffice-bugs] [Bug 111837] Navigator: Lag in navigator selection update when clicking on next slide

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111837

Omer Zak  changed:

   What|Removed |Added

   Assignee|w...@zak.co.il|libreoffice-b...@lists.free
   ||desktop.org

--- Comment #6 from Omer Zak  ---
Sorry, I found that I do not have free time for this. I am removing myself from
assignment to the bug.

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


[Libreoffice-bugs] [Bug 100967] libreoffice opens .doc file slow specially protected document is extremely opened slow.

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100967

--- Comment #7 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://downloadarchive.documentfoundation.org/libreoffice/old/

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 105449] Data Explorer: Standardfilter view strange Input-Field?

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105449

--- Comment #3 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://downloadarchive.documentfoundation.org/libreoffice/old/

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 104294] Truncation of the image position within a table

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=104294

--- Comment #8 from QA Administrators  ---
** Please read this message in its entirety before responding **

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
http://downloadarchive.documentfoundation.org/libreoffice/old/

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


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

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

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 61037] VIEWING: Selection is not visible while scrolling

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61037

--- Comment #3 from Plavozont  ---
I have a faster PC now with intel i5 proc and windows 10 (tested in LO 6.0.0.2
and LO 5.4.4). The selection is blinking while scrolling but frequently enough
to not get lost at all. On slower PCs it would be the same as before.


Another bug I noticed:

Start LO calc, make window size half screen(not maximized). Select all.
Maximize window.

Selection will stay same size as it was when window was not maximized. However
column's letters and row's numbers are highlighted correctly(Same both in LO
6.0.0.2 and LO 5.4.4).

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


[Libreoffice-bugs] [Bug 115158] "Title, 6 Content" Layout lost with roundtrip

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115158

Kevin Suo  changed:

   What|Removed |Added

 CC||suokunl...@126.com
Summary|Lost 6 content layout   |"Title, 6 Content" Layout
   ||lost with roundtrip

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


[Libreoffice-bugs] [Bug 98171] Impress Remote in Tamil on Android OS

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98171

அருண் குமார் - Arun Kumar  changed:

   What|Removed |Added

 Status|NEEDINFO|REOPENED

--- Comment #6 from அருண் குமார் - Arun Kumar  ---
Hi,

When I filed this bug, my phone was not running Tamil version of Android OS. at
the same time I could open VLC, Firefox apps in Tamil in such a way that you
can add your language in App's settings. 

My Question, why do not you allow user to add  Language in preference as per
their wish, if it is translated then, it should be supported in UI regardless
of Android OS UI support.

But currently my phone is having support in Tamil and I could see Impress
Remote in Tamil.

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


[Libreoffice-bugs] [Bug 115162] FILESAVE XLSX SUMIFS, AVERAGEIFS, COUNTIFS functions give Error:504, with reference to external xlsx files cells

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115162

--- Comment #5 from MM  ---
It looks like a dup from bug 114820, only with different functions.

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


[Libreoffice-bugs] [Bug 115162] FILESAVE XLSX SUMIFS, AVERAGEIFS, COUNTIFS functions give Error:504, with reference to external xlsx files cells

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115162

--- Comment #4 from Gabor Kelemen  ---
Created attachment 139286
  --> https://bugs.documentfoundation.org/attachment.cgi?id=139286=edit
Example file with function references to the external data source file - saved
by LO 5.3.3

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


[Libreoffice-bugs] [Bug 115162] FILESAVE XLSX SUMIFS, AVERAGEIFS, COUNTIFS functions give Error:504, with reference to external xlsx files cells

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115162

--- Comment #3 from Gabor Kelemen  ---
Created attachment 139285
  --> https://bugs.documentfoundation.org/attachment.cgi?id=139285=edit
The example xlsx file to use as external data source - saved by LO 5.3.3

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


[Libreoffice-bugs] [Bug 115162] FILESAVE XLSX SUMIFS, AVERAGEIFS, COUNTIFS functions give Error:504, with reference to external xlsx files cells

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115162

--- Comment #2 from Gabor Kelemen  ---
Created attachment 139284
  --> https://bugs.documentfoundation.org/attachment.cgi?id=139284=edit
The two files side by side. Referring to the data source gives error.

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


[Libreoffice-bugs] [Bug 115162] FILESAVE XLSX SUMIFS, AVERAGEIFS, COUNTIFS functions give Error:504, with reference to external xlsx files cells

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115162

--- Comment #1 from Gabor Kelemen  ---
Created attachment 139283
  --> https://bugs.documentfoundation.org/attachment.cgi?id=139283=edit
Example file with function references to the external data source file

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


[Libreoffice-bugs] [Bug 115162] New: FILESAVE XLSX SUMIFS, AVERAGEIFS, COUNTIFS functions give Error:504, with reference to external xlsx files cells

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115162

Bug ID: 115162
   Summary: FILESAVE XLSX SUMIFS, AVERAGEIFS, COUNTIFS functions
give Error:504, with reference to external xlsx files
cells
   Product: LibreOffice
   Version: 6.0.0.2 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: filter:xlsx
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kelem...@ubuntu.com

Created attachment 139282
  --> https://bugs.documentfoundation.org/attachment.cgi?id=139282=edit
Example xlsx file to use as external data source

Attached spreadsheets were created with LibreOffice 6.0.0.2 and LibreOffice
5.3.3. The main problem here is that functions with complex conditions do not
work correctly if we refer to an external file, and we get an Error (504)
message in the cell. If we use the ‘SUMIFS’ or ‘AVERAGEIFS’ or ‘COUNTIFS’
function in the local (source.xlsx) file, they work perfectly.

Steps to reproduce:
1. Create a new spreadsheet with LibreOffice Calc
2. Click on Tools then choose Options.
3. In the Options set the LibreOffice Calc Formula options just like as you can
see at the attached Formula_syntax_setting.PNG file.
4. Fill at least three columns with some simple data. If you want, you could
try these functions in the local file, just to make sure they work correctly.
5. Save the file as “Source.xlsx”. This will be the source file which contains
the queried data.
6. Create a new spreadsheet with LibreOffice Calc and save as
“Function-Error-504.xlsx”. (This will be the reference file)
7. In the “Function-Error-504.xlsx” file create a correct SUMIFS or AVAREGEIFS
or COUNTIFS function which refers to the “Source file” data.
Here is an example code for a SUMIFS function: 
=SUMIFS('file:///E:/Functions-Error-504/Function-Error-504-Source.xlsx'#$Munkalap1.C1:C5;'file:///E:/Functions-Error-504/Function-Error-504-Source.xlsx'#$Munkalap1.B1:B5;'file:///E:/Functions-Error-504/Function-Error-504-Source.xlsx'#$Munkalap1.B1;'file:///E:/Functions-Error-504/Function-Error-504-Source.xlsx'#$Munkalap1.A1:A5;'file:///E:/Functions-Error-504/Function-Error-504-Source.xlsx'#$Munkalap1.A1)

8. Click Ok in the Function Wizard.
9. Save and reload the file.

Actual results:
We get an Error (504) message in the cell for these functions. Even if we set
only one condition in the “more conditional” functions, we got the same error.
Other similar functions (SUMIF, AVERAGEIF or COUNTIF) work well if we use these
steps.
These problems may (or may not) be the same as the VLOOKUP/HLOOKUP function bug
#114820.

Expected results:
We shouldn't receive an error code in the cell, because the function is correct
and works perfectly in the local files.

Verzió: 5.3.3.2
Build az.: 3d9a8b4b4e538a85e0782bd6c2d430bafe583448
CPU szálak: 4; Rendszer verziója: Windows 6.2; Felületmegjelenítés: GL;
Elrendezésmotor:új; 
Területi beállítások: hu-HU (hu_HU); Calc: group

Verzió: 6.0.0.2
Build az.: 06b618bb6f431d27fd2def25aa19c833e29b61cd
CPU szálak: 4; OS: Windows 6.1; Felületmegjelenítés: alapértelmezett; 
Területi beállítások: hu-HU (hu_HU); Calc: group

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


[Libreoffice-bugs] [Bug 114820] FILESAVE XLSX Vlookup/Hlookup gives Error:504, with a reference to an external xlsx file cells

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114820

Gabor Kelemen  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 105116] VIEWING: zoom in garbles display with particular .odt

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=105116

Terrence Enger  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #9 from Terrence Enger  ---
Thank you for the reminder, Xisco.

I see that the bug is gone in daily Linux dbgutil bibisect repository
version 2018-01-22 running on debian-buster.  I am setting status
RESOLVED WORKSFORME.

Reverse bibisect in that repository shows that the fix happened in
version 2017-11-30.  Among the 96 or so source commits since version
2017-11-29, I notice:

commit ba4a124b0c0c66fd275f5147d55eeec27ce78da9
Author: Caolán McNamara 
Date:   Wed Nov 29 15:32:39 2017 +

Resolves: tdf#114117 draw page shadow mangled

when cairo had to stretch the 1 pixel dimension to fit the area.

When its this 1 pixel case set the same settings we use for the stipple
effect
to get the expected interpolation

Change-Id: I42d87d6d01ebdb44083351a9632860f5f0a3bf63
Reviewed-on: https://gerrit.libreoffice.org/45511
Reviewed-by: Michael Meeks 
Reviewed-by: Caolán McNamara 
Tested-by: Caolán McNamara 

Caolán, do you think this bug deserves to be RESOLVED FIXED?

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


[Libreoffice-bugs] [Bug 109240] FILESAVE XLSX: Use of Data > AutoFilter provoke auto-creation of multiple defined Name ranges over multiple consecutive save in XLSX format of the same file causing com

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109240

Aron Budea  changed:

   What|Removed |Added

 Whiteboard|target:6.1.0 target:6.0.0.1 |target:6.1.0 target:6.0.0.1
   |target:5.4.5 target:5.4.4   |target:5.4.4

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


[Libreoffice-bugs] [Bug 115161] FILESAVE DOCX Overlapping Shape and Field disappear

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115161

--- Comment #3 from Gabor Kelemen  ---
Created attachment 139281
  --> https://bugs.documentfoundation.org/attachment.cgi?id=139281=edit
The example file in Word

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


[Libreoffice-bugs] [Bug 115161] FILESAVE DOCX Overlapping Shape and Field disappear

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115161

--- Comment #1 from Gabor Kelemen  ---
Created attachment 139279
  --> https://bugs.documentfoundation.org/attachment.cgi?id=139279=edit
The example file saved as docx

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


[Libreoffice-bugs] [Bug 115161] FILESAVE DOCX Overlapping Shape and Field disappear

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115161

--- Comment #2 from Gabor Kelemen  ---
Created attachment 139280
  --> https://bugs.documentfoundation.org/attachment.cgi?id=139280=edit
The example file in LO

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


[Libreoffice-bugs] [Bug 115161] New: FILESAVE DOCX Overlapping Shape and Field disappear

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115161

Bug ID: 115161
   Summary: FILESAVE DOCX Overlapping Shape and Field disappear
   Product: LibreOffice
   Version: 5.4.4.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: filter:docx
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kelem...@ubuntu.com

Created attachment 139278
  --> https://bugs.documentfoundation.org/attachment.cgi?id=139278=edit
Example file saved by LO

Both the shape on top of the field and the field together disappear in
Microsoft Word

Steps to reproduce:
1. Create a new document with LibreOffice.
2. Insert a predefined field (for instance page number).
3. Insert a shape on the top of the field.
4. Remove the area of the shape or send the shape into the background.
5. Save the file as .docx.
6. Compare the document in Word and Writer.

Actual results:
Both shape and field do not appear in Microsoft Word.

Expected results:
Both shape and field appear even in Microsoft Word.

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


[Libreoffice-bugs] [Bug 114251] Hang loading spreadsheet

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114251

--- Comment #34 from Commit Notification 
 ---
Eike Rathke committed a patch related to this issue.
It has been pushed to "libreoffice-5-4":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=811b40327c15e197b0967393e4071f48a60af42a=libreoffice-5-4

Related: tdf#114251 disable vectorization of svDoubleRef

It will be available in 5.4.5.

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

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

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


[Libreoffice-bugs] [Bug 114251] Hang loading spreadsheet

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114251

--- Comment #33 from Commit Notification 
 ---
Eike Rathke committed a patch related to this issue.
It has been pushed to "libreoffice-5-4":

http://cgit.freedesktop.org/libreoffice/core/commit/?id=0443eb8bf5ed79d13ec1aa49ac83ed2b2e8eea54=libreoffice-5-4

Type svIndex does not necessarily mean range name, tdf#114251 related

It will be available in 5.4.5.

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

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

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


[Libreoffice-bugs] [Bug 115093] FORMATTING: Copying date formats in cells changes date for all cells in column

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115093

Laurent BP  changed:

   What|Removed |Added

   Keywords||regression
 OS|Mac OS X (All)  |All

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


[Libreoffice-bugs] [Bug 115093] FORMATTING: Copying date formats in cells changes date for all cells in column

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115093

Laurent BP  changed:

   What|Removed |Added

 CC||jumbo4...@yahoo.fr

--- Comment #4 from Laurent BP  ---
There is no need to use any specific format. It does not seem to be a format
problem.
I reproduce with 100 and more values in column A. I do not reproduce 99 values.
My procedure:
1. Enter a value in A1
2. In B1: =A1
3. Extend values in column A with sequential dates to line 'n'
4. Double click on the handle of B1

If n=99, values are the same in column A and B as expected.
If n>99, all displayed values in column B are equal to the nth value of column
A.

Shift+Ctrl+F9 has no effect of displayed value.
If in C1: =B1, then C1 contains the displayed value of B1, not A1 as expected.
Changing format of B1:B100 displays same value.
Changing value in Ai (i != n) has no effect (even with Shift+Ctrl+F9).
Changing value in An requires Shift+Ctrl+F9 to update all values in column B.

If formula in column B is extended with more values than in column A, then
contents in this extra cells are as expected: 0 or 30th December 1899

Changing start cell to H7 instead of A1 has no modification of the bug.

Cells A1 and B1 do not need to be contiguous.



Version: 6.0.0.2
Build ID: 06b618bb6f431d27fd2def25aa19c833e29b61cd
Threads CPU : 8; OS : Linux 4.13; UI Render : par défaut; VCL: gtk2; 
Locale : fr-FR (fr_FR.UTF-8); Calc: group

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


[Libreoffice-bugs] [Bug 115137] The cell border list from the main tool palette is NOT displayed properly on UHD resolution

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115137

--- Comment #6 from Pedro I. Hernandez  ---
(In reply to Pedro I. Hernandez from comment #5)
> (In reply to m.a.riosv from comment #4)
> > Please test with Menu/Help/Restart in Safe Mode
> 
> The same issue...
> https://i.imgur.com/Iyl6fY1.png

Same problem goes with Writer... :-(
https://i.imgur.com/Mnz9TGb.png

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


[Libreoffice-bugs] [Bug 35538] Handling of fonts with more that 4 styles (R/B/I/BI) is suboptimal

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=35538

--- Comment #46 from Thomas Linard  ---
But the documents are already "breaking horribly" because of platform-specific
handling…

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


[Libreoffice-bugs] [Bug 115160] New: Improve the download/install experience, default OS is not working correctly, and other issues.

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115160

Bug ID: 115160
   Summary: Improve the download/install experience, default OS is
not working correctly, and other issues.
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bridgeportcontrac...@gmail.com

Created attachment 139277
  --> https://bugs.documentfoundation.org/attachment.cgi?id=139277=edit
screenshot

Preamble: When a new visitor arrives to download LO from
https://www.libreoffice.org/download/download/  I think the big question on
their mind concerns how to quickly get the right download.  While the LO
download page has gotten better over time, considering how much of a first
impression it makes I think it's still lacking.  Yes, it's functional.

Consider this:  If a new user gets messed up on this page (as I did when I was
first starting out with LO) it leaves a bad taste in their mouth about the
whole LO thing.  [Remember, at this point in time, a person knows nothing about
LO, except what they see at this page.]


There are two important questions to quickly and accurately (i.e. without any
assumptions) get answers to from the newbie:

  1) What OS or platform are you using?
  2) What LO version do you desire?


SPECIFIC DOWNLOAD PAGE ISSUES AND ==> SUGGESTIONS

A) I think having a default OS is misleading.  (Currently it's RPM.)  

Did the this page look at my OS (my HTTP browser information) and somehow
determine that that RPM was what was required for me?  

That would be my first guess, as that's how many web pages work today.  But no,
I have Debian, and it came up with RPM!  So that's misleading and problematic
if the button is clicked.  

  (When I was new at this I had no idea what RPM was.  I only knew that I had
Debian, I had too many things to learn that day, and quickly needed a  download
that would work with my system.  So I clicked the download button only to end
up in much more frustration.)


==> If you can't correctly determine the OS needed, then don't start out with
any default.  Force the user to select OS, like this:


Select from the following supported architectures and operating systems:

   Apple:
   Mac OS X x86_64 (10.8 or newer required)

   Linux:
 For Intel and AMD 64 bit wide CPUs and operating systems:
   Linux x64 (deb)   - for Debian derived installers (apt, synaptic, etc.)
   Linux x64 (rpm)   - for Red Hat derived installers (rpm)

 For Intel and AMD 32 bit wide CPUs and operating systems:
   Linux x86 (deb)   - for Debian derived installers (apt, synaptic, etc.)
   Linux x86 (rpm)   - for Red Hat derived installers (rpm)

   Windows:
   Windows x86_64 - use with 64 bit OS and Vista or newer
   Windows- other (i.e. 32 bit and older windows)


Notice that I revised this list so that it consistently has the newer 64 before
the older 32.  Also it's alphabetical.  (If we support all of these, then we
should not be giving deferential preference to any of these here.  In other
words, I prefer Linux, but I'm not going to try and push that on a user who has
a different OS.)

Get rid of the line that says, "Selected: ...".  Replace it with selectors and
buttons that say what you download when you press them.


==> So at the very top of the page put a clearly marked LO version selector and
an OS selector.  

(The "change?" link is unclear.  Change what?  At a minimum say "change
selected OS", but please read on...)

!! ALSO, it is not clear as it is now, that the downloads listed further down
this page are also modified by the (below) selected version.  

The whole page is upside down, with the selectors at the bottom but being used
at the top.

Put the selectors at the top, and then use the below.  If you went to a car
parts site and they showed you a muffler to buy, would that make any sense.  No
first you want to select the car you drive.


==> Make each clickable download thingy on this page look the same.  In other
words when you see a green button you know that it's something to download. 
(It's ok to have the main download bigger, but all downloads should look like
buttons, because they are actions rather than links.  As it is, it looks like
they might be links to where you might download those other things.)


==> In this OS selector, provide some tool tips for new users who might be
confused by the x32 vs x64, and Deb vs RPM versions.  For Windows say what the
plain version of Windows is for.  In other words: HELP the visitor make these
selections.  Assume they are new to all of this!  (If we are to grow the LO
user base, we must start with new users who know virtually nothing about any of
this.)


B) Furthermore I haven't been given the choice of 

[Libreoffice-bugs] [Bug 107575] [META] Number format bugs and enhancements

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107575

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||115093


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=115093
[Bug 115093] FORMATTING: Copying date formats in cells changes date for all
cells in column
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 115093] FORMATTING: Copying date formats in cells changes date for all cells in column

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115093

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||107575


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 100023] [META] Enhance Draw's user experience

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100023

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||115070


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=115070
[Bug 115070] UI: wrong syncing of measurement units in Options and the ones set
in an existing document
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 115070] UI: wrong syncing of measurement units in Options and the ones set in an existing document

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115070

Thomas Lendo  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Blocks||100023
 Ever confirmed|0   |1

--- Comment #3 from Thomas Lendo  ---
Sorry, I CAN reproduce the issue.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=100023
[Bug 100023] [META] Enhance Draw's user experience
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 115070] UI: wrong syncing of measurement units in Options and the ones set in an existing document

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115070

Thomas Lendo  changed:

   What|Removed |Added

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

--- Comment #2 from Thomas Lendo  ---
Can't reproduce with

Version: 6.1.0.0.alpha0+
Build ID: acb43c0b8efbfb841e7b40603d75a8432eb21f21
CPU threads: 4; OS: Linux 4.13; UI render: default; VCL: gtk2; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2018-01-09_01:20:44
Locale: de-DE (de_DE.UTF-8); Calc: group threaded

and with

Version: 6.1.0.0.alpha0+
Build-ID: ff8826d438a9fd080e8e61f8e66b3d3b2c8d752b
CPU-Threads: 4; Betriebssystem:Linux 4.13; UI-Render: Standard; VCL: gtk3; 
Gebietsschema: de-DE (de_DE.UTF-8); Calc: group threaded
with moggi's updater build from today

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


[Libreoffice-bugs] [Bug 35538] Handling of fonts with more that 4 styles (R/B/I/BI) is suboptimal

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=35538

--- Comment #45 from Tor Lillqvist  ---
The font enumeration and UI aspect is just one part of the issue. What
apparently hasn't been taken into consideration at all in the comments above is
how to handle the "extra" styles in the document formats, in a
backward-compatible way, so that the document wouldn't break horribly if opened
in another application reading the same format, or in an older version of
LibreOffice. Far from trivial.

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


[Libreoffice-bugs] [Bug 115123] Copying text from PDF gives corrupt text in new file depending on font

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115123

Jean-Baptiste Faure  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #10 from Jean-Baptiste Faure  ---
Confirmed under Ubuntu 16.04 with LO 5.4.4, LO 6.0.1.0.0+ and the current
master.
No problem if the font used is Caladea but same problem with Ubuntu font.
The problem is also seen when importing the pdf with LibreOffice Draw.

Best regards. JBF

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


[Libreoffice-bugs] [Bug 115158] Lost 6 content layout

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115158

--- Comment #2 from Christophe Combelles  ---
I can reproduce not only with centering the title, but also by changing
anything else, such as the font, vertical centering, etc.

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


[Libreoffice-bugs] [Bug 115159] FILESAVE XLSX Print Titles are duplicated every time we export an XLSX file

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115159

--- Comment #6 from Gabor Kelemen  ---
Created attachment 139276
  --> https://bugs.documentfoundation.org/attachment.cgi?id=139276=edit
The example file saved again by LO 6 RC

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


[Libreoffice-bugs] [Bug 115159] FILESAVE XLSX Print Titles are duplicated every time we export an XLSX file

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115159

--- Comment #5 from Gabor Kelemen  ---
Created attachment 139275
  --> https://bugs.documentfoundation.org/attachment.cgi?id=139275=edit
The example file saved by LO 6 RC

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


[Libreoffice-bugs] [Bug 115159] FILESAVE XLSX Print Titles are duplicated every time we export an XLSX file

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115159

--- Comment #3 from Gabor Kelemen  ---
Created attachment 139273
  --> https://bugs.documentfoundation.org/attachment.cgi?id=139273=edit
Print titles after first save

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


[Libreoffice-bugs] [Bug 115159] FILESAVE XLSX Print Titles are duplicated every time we export an XLSX file

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115159

--- Comment #4 from Gabor Kelemen  ---
Created attachment 139274
  --> https://bugs.documentfoundation.org/attachment.cgi?id=139274=edit
Print titles after second save

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


[Libreoffice-bugs] [Bug 115159] FILESAVE XLSX Print Titles are duplicated every time we export an XLSX file

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115159

--- Comment #2 from Gabor Kelemen  ---
Created attachment 139272
  --> https://bugs.documentfoundation.org/attachment.cgi?id=139272=edit
The example file saved again by LO 5.4

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


[Libreoffice-bugs] [Bug 115159] FILESAVE XLSX Print Titles are duplicated every time we export an XLSX file

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115159

--- Comment #1 from Gabor Kelemen  ---
Created attachment 139271
  --> https://bugs.documentfoundation.org/attachment.cgi?id=139271=edit
The example file saved by LO 5.4

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


[Libreoffice-bugs] [Bug 115159] New: FILESAVE XLSX Print Titles are duplicated every time we export an XLSX file

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115159

Bug ID: 115159
   Summary: FILESAVE XLSX Print Titles are duplicated every time
we export an XLSX file
   Product: LibreOffice
   Version: 5.4.4.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: filter:xlsx
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: kelem...@ubuntu.com

Created attachment 139270
  --> https://bugs.documentfoundation.org/attachment.cgi?id=139270=edit
Example file made with Excel 2013

If we create simple Print Titles with Microsoft Excel 2010/2013/2016 and export
the file with LibreOffice Calc, the Print Titles are duplicated.

Steps to reproduce:
1. Create a new spreadsheet with Microsoft Excel 2010/2013/2016.
2. Fill the first row with some data.
3. Select the worksheet range that you want to include titles when print.
4. Go to Page Layout tab, click Print Titles. 
5. Click on the select button in Rows to repeat at top area and select a title
row (the first row you fill with data.)
6. Press OK to finish setting.
7. Check the new Print titles which you have set, at the Formulas, Name Manager
tab.
8. Save the file as *.xlsx.
9. Open the file with LibreOffice Calc 5.4.4 and save as Print_Title_LO-54.xlsx
and reload it.
10. Check the Print Titles at the Sheet-→Named Ranges and Expressions-→Manager
tab. (There will be a duplicated Print Titles)


Actual results:
After we reload the file there will be a duplicated Print Titles
(_xlnm.Print_Tiles_0). If we open the exported file with Microsoft Excel and
check the Name Manager, there will be only the original Print Titles, but the
duplicated will not be there.
If we export the Print_Title_LO-54.xlsx file with LibreOffice Calc again (this
is the second time), at the Sheet-→Named Ranges and Expressions-→Manager will
be two duplicated Print Titles (_xlnm.Print_Tiles_0 and _xlnm.Print_Tiles_0_0).
If we open this file with Microsoft Excel and check the Name Manager, we will
see one duplicated Print Titles (Print_Tiles_0). And so it goes on.
Comment: This bug can be produced only with these settings and steps. In the
same way you can set column(s) to repeat at the left of each page, but in this
case the Print Titles will not be duplicated. The Print Areas not duplicated at
LibreOffice 5.4.4.


Expected results:
The Print Titles should not be duplicated after we export the *.xlsx file with
LibreOffice Calc.


Version: 5.4.4.2
Build az.: 2524958677847fb3bb44820e40380acbe820f960
CPU szálak: 4; OS: Windows 6.1; Felületmegjelenítés: alapértelmezett; 
Területi beállítások: hu-HU (hu_HU); Calc: group

Version: 6.0.0.1.0+
Build ID: c678dc5309741097d9b0265f03dd279a8794d256
CPU threads: 4; OS: Windows 6.1; UI render: default; 
TinderBox: Win-x86@42, Branch:libreoffice-6-0, Time: 2017-12-28_04:21:33
Locale: hu-HU (hu_HU); Calc: group

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


[Libreoffice-bugs] [Bug 115158] Lost 6 content layout

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115158

--- Comment #1 from Christophe Combelles  ---
I could not reproduce with the other layouts, only with the "6 Content" layout.

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


[Libreoffice-bugs] [Bug 115158] New: Lost 6 content layout

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115158

Bug ID: 115158
   Summary: Lost 6 content layout
   Product: LibreOffice
   Version: 6.0.0.2 rc
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: cc...@free.fr

Description:
When using a 6 Content Layout, I lose the layout on file reopen or on resizing
container on Master View

Steps to Reproduce:
1. create a new empty impress presentation
2. in the Properties, click on the "Title, 6 Content" Layout
3. in the Properties, click on the Master View button
4. In the Object Area, click on the first line (outline 1)
5. Hit Ctrl-E to center the text of the object Area
6. Click on the "Close Master View" button
7. Save the file as an .odp document
8. Close the file with Ctrl-W
9. Reopen the file

Actual Results:  
The layout with 6 content boxes is lost : the first two boxes have the size of
the content area.

Expected Results:
The layout should be the same after reopening the file.


Reproducible: Always


User Profile Reset: No



Additional Info:
I could reproduce on 5.4.4 and 6.0.0 rc2 on Debian

Version: 6.0.0.2
Build ID: 06b618bb6f431d27fd2def25aa19c833e29b61cd
CPU threads: 4; OS: Linux 4.14; UI render: GL; VCL: gtk2; 
Locale: en-US (C); Calc: group


User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:57.0) Gecko/20100101
Firefox/57.0

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


[Libreoffice-bugs] [Bug 46520] [FILEOPEN] "Incorrect file version" when opening a PPT v 4.0 file--pre 97-2003 binary format-- ( error message need to be improved)

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=46520

--- Comment #17 from Antonio Vinicius Menezes Medeiros  
---
I can reproduce that bug using

- LibreOffice 4.1.5.3 on Windows 7 64-bit with SP1
- LibreOffice 5.3.5.2 on openSUSE 42.3 x64

But I was able to open sdsi20-maryland.ppt using LibreOffice 5.4.4 Portable
MultilingualStandard I downloaded from:

https://www.libreoffice.org/download/portable-versions/

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


[Libreoffice-bugs] [Bug 115157] New: Typo in this bug submission form: Under Component: Installation; change '..installed of if ' to '..installed or if '

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115157

Bug ID: 115157
   Summary: Typo in this bug submission form: Under Component:
Installation; change '..installed of if ' to
'..installed or if '
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Installation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bridgeportcontrac...@gmail.com

Created attachment 139269
  --> https://bugs.documentfoundation.org/attachment.cgi?id=139269=edit
snapshot of issue

When submitting a bug here in
https://bugs.documentfoundation.org/enter_bug.cgi?product=LibreOffice

There is a minor typo when selecting "Component: Installation".  

The green tool tip reads:

  "... Use it if LibreOffice can't be installed of if Your office suite ..."

"of", should be replaced with "or", as follows:

  "... Use it if LibreOffice can't be installed or if Your office suite ..."


See attachment screen shot.

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


[Libreoffice-bugs] [Bug 115156] Downloaded the new version on 1/21/ 2018 and cannot retrieve any of my files.

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115156

MM  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from MM  ---
Could you supply some more info about the bug ?
What exactly doesn't work ? Is the program not starting (which version did work
before) or is it not loading anything ?!
If it is the latter, could you supply a document which doesn't contain private
data.

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


[Libreoffice-bugs] [Bug 115139] after copy/paste of text from webpage, then font change, all menus are blank

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115139

MM  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from MM  ---
Could you try a newer version? The 5.1 branch is quite old and outdated and
won't be supported any more. https://www.libreoffice.org/download/download/

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


[Libreoffice-bugs] [Bug 115001] TOC: Recreating ToC produces unwanted page-breaks in text flow

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115001

--- Comment #2 from edwin.gersb...@email.ch ---
Many thanks for your reply.

I didn't realize that there are still leftovers from MS-Word which is some 20
years ago. In between the document was even processed with OpenOffice.

Well then, I created a new document from scratch and start defining all the
styles of the Pages, Paragraphs, Titles and the like.

What I would like to know is what I can copy/paste from the existing document
without possibly taking unwanted MS-Word stuff with it.

Mainly

> recreating all the tables from scratch would would be extremely time consuming
  - can I copy them at least one by one?

> recreating the item list with all the cross references would be even worse
  - do I have to copy the plain text and reformat everything?

> also, what I did not manage so far is to create a 2 column page with a
  chapter title on the top spanning over both columns
  I keep trying to find a solution for this but would greatly appreciate a
hint.

regards Edwin

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


[Libreoffice-bugs] [Bug 115142] When an image is bigger than the slide impress shrinks it to the size of the slide

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115142

--- Comment #3 from Chavdar  ---
Confirmed

Version: 5.4.4.2 (x64)
Build ID: 2524958677847fb3bb44820e40380acbe820f960
CPU threads: 4; OS: Windows 6.19; UI render: default; 
Locale: bg-BG (bg_BG); Calc: group

Version: 6.1.0.0.alpha0+
Build ID: d28e10b095b4ee0986fbe86170928bf077da04b9
CPU threads: 4; OS: Windows 10.0; UI render: default; 
TinderBox: Win-x86@62-TDF, Branch:MASTER, Time: 2018-01-13_22:59:50
Locale: bg-BG (bg_BG); Calc: group threaded

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


[Libreoffice-bugs] [Bug 115156] New: Downloaded the new version on 1/21/ 2018 and cannot retrieve any of my files.

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115156

Bug ID: 115156
   Summary: Downloaded the new version on 1/21/2018 and cannot
retrieve any of my files.
   Product: LibreOffice
   Version: 5.3.0.3 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: fladerj...@gmail.com

Description:
I can't retrieve any of my existing documents not can I start to compose
anything else. I guess it has crashed!

Actual Results:  
I can't do anything.

Expected Results:
I would like to be able to use the program as intended.


Reproducible: Always


User Profile Reset: No



Additional Info:
WORK!!


User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36

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


[Libreoffice-bugs] [Bug 38994] EDITING: improve single cell selection for Drag and Drop ( by click on cell border?)

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=38994

Thomas Lendo  changed:

   What|Removed |Added

 CC||m...@michaelbmast.com

--- Comment #12 from Thomas Lendo  ---
*** Bug 115114 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 115114] Calc: Dragging a selected cell, or range of cells, is too difficult.

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115114

Thomas Lendo  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||thomas.le...@gmail.com
 Resolution|--- |DUPLICATE

--- Comment #1 from Thomas Lendo  ---
Thanks for your report, Michael.
Your bug seems to be a duplicate of bug 38994 from 2011. This is a very old
issue back to the early days of OpenOffice.org.

Jeffrey in bug 38994 comment 1 cites an old workaround:
1) Click on the cell to give them a black border.
2) Drag the blue background to another cell.
3) Hold the click and drag back to the single cell.

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

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


[Libreoffice-bugs] [Bug 108440] [META] Database form bugs and enhancements

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108440

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||115096


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=115096
[Bug 115096] For a Pattern Field please reverse the order of the mask related
properties
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 115096] For a Pattern Field please reverse the order of the mask related properties

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115096

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||108440, 102019


Referenced Bugs:

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


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

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102019

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||115096


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=115096
[Bug 115096] For a Pattern Field please reverse the order of the mask related
properties
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108440] [META] Database form bugs and enhancements

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108440

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||115099


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=115099
[Bug 115099] Pattern Field: Improve property names related to the masking
operation.
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 115099] Pattern Field: Improve property names related to the masking operation.

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115099

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||108440, 102019


Referenced Bugs:

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


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

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102019

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||115099


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=115099
[Bug 115099] Pattern Field: Improve property names related to the masking
operation.
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 115155] FILEOPEN: RTF: left indent is lost in second list

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115155

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||filter:rtf

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


[Libreoffice-bugs] [Bug 115155] FILEOPEN: RTF: left indent is lost in second list

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115155

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||bibisected, bisected,
   ||regression
 Status|UNCONFIRMED |NEW
 CC||vmik...@collabora.co.uk,
   ||xiscofa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #1 from Xisco Faulí  ---
Regression introduced by:

author  Miklos Vajna   2017-12-05 09:17:43 +0100
committer   Miklos Vajna   2017-12-05 13:51:22
+0100
commit  c9dee880d88305312094b311abdae155e452bf14 (patch)
treeffb696d6400bc451095cd9db40f607dd10154f70
parent  75e828cad5e652f111278b103b72b9a9a344b689 (diff)
tdf#104016 RTF import: deduplicate before text indent from numbering
We already deduplicated first line indentation since commit
3915bf2dc877d5f1140798e24933db0f21386a4a (tdf#95376 DOCX import: fix
incorrectly indented tab stops, 2016-01-26), the same is necessary for
before text indent.

Bisected with: bibisect-linux64-6.1

Adding Cc: to Miklos Vajna

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


[Libreoffice-bugs] [Bug 115155] New: FILEOPEN: RTF: left indent is lost in second list

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115155

Bug ID: 115155
   Summary: FILEOPEN: RTF: left indent is lost in second list
   Product: LibreOffice
   Version: 6.1.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: xiscofa...@libreoffice.org

Created attachment 139268
  --> https://bugs.documentfoundation.org/attachment.cgi?id=139268=edit
comparison MSO 2010 and LibreOffice 6.1

Steps to reproduce:
1. Open attachment 103959 from bug 82107
2. Check the second list at the end of the first page-> Left indent is 0. See
attached image

The document can be created from scratch in MSO Word as well:
1. Create a list with 2 items
2. On the third item restart at 1
3. Move the second list to the right
4. Save it as .RTF
5. Open it with master


Reproduced in

Version: 6.1.0.0.alpha0+
Build ID: de1bb0878fc7d7eb6071ec94d770712648013075
CPU threads: 4; OS: Linux 4.10; UI render: default; VCL: gtk2; 
Locale: ca-ES (ca_ES.UTF-8); Calc: group threaded

[Bug found by office-interoperability-tools]

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


[Libreoffice-bugs] [Bug 108582] using nvda screen reader activating screen review in libreoffice 5.3 nvda reads dialog boxes and messages of libreoffice like one combine word!

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108582

Thomas Lendo  changed:

   What|Removed |Added

 Blocks||101912


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 101912] [META] Accessibility (a11y) bugs and enhancements

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101912

Thomas Lendo  changed:

   What|Removed |Added

 Depends on||108582


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108582
[Bug 108582] using nvda screen reader activating screen review in libreoffice
5.3 nvda reads dialog boxes and messages of libreoffice like one combine word!
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 115053] PRINTs landscape despite configured as portrait still in Calc after fix for Writer (Mac OS)

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115053

--- Comment #5 from bunkem  ---
Created attachment 139267
  --> https://bugs.documentfoundation.org/attachment.cgi?id=139267=edit
Screen capture of switching between open windows

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


[Libreoffice-bugs] [Bug 115053] PRINTs landscape despite configured as portrait still in Calc after fix for Writer (Mac OS)

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115053

--- Comment #4 from bunkem  ---
I have to figure out how to create a sample document because I can't send you
the any of the existing sheets due to privacy issues.  

This is what I have found today.  It should help you recreate the issue.

If you have multiple sheets in the spreadsheet and one of those sheets is to
print in landscape, then when you open the print dialog the page that is
portrait will be oriented landscape also.  This happens in the default print
dialog box with "Selected Sheet(s) Only".  (For example I have a 68 sheet
spreadsheet with every third sheet is to print landscape.  The second and third
sheets are set up as portrait.)

It looks like you can fix it by selecting the tick box "Print Selection" on and
off.  It reorients the page.

It also looks like it will be fixed by switching between Print Contect "All
Sheets" and "Selected Sheets".

See attached screen capture

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


[Libreoffice-bugs] [Bug 35538] Handling of fonts with more that 4 styles (R/B/I/BI) is suboptimal

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=35538

--- Comment #44 from Tor Lillqvist  ---
Even if this problem apparently is present on all platforms, the actual font
enumeration code is still platform-specific, so separate fixes might well be
needed for macOS, Windows, and Linux.

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


[Libreoffice-bugs] [Bug 115154] New: Exported html contains unvalid links

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115154

Bug ID: 115154
   Summary: Exported html contains unvalid links
   Product: LibreOffice
   Version: 5.4.4.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: board.bugs.documentfoundat...@electricsoul.org

Description:
https://streamable.com/p468b

1:15 minutes

Steps to Reproduce:
Please see video. Time at work is precious :)
https://streamable.com/p468b

Actual Results:  
-

Expected Results:
-


Reproducible: Always


User Profile Reset: No



Additional Info:


User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko/20100101
Firefox/57.0

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


[Libreoffice-bugs] [Bug 115118] FILESAVE: Hang saving/ closing database after Test Connection to spreadsheet

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115118

--- Comment #4 from Jim Avera  ---
Yes, it seems to be in the 5.x series only

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


[Libreoffice-bugs] [Bug 115133] Images disappear when document is printed but are present in exported PDF

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115133

Jörg Skottke  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #3 from Jörg Skottke  ---
No, the item "Images and other graphics objects" is checked. 
Most of the images are printed but not those that have been removed and
restored on filesystem level.

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


[Libreoffice-bugs] [Bug 113952] Java 8u151 not recognised by LibreOffice 5.4.3 64 bit version

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113952

--- Comment #4 from Buovjaga  ---
Maybe try one more time with a fresh master build to see, if there is some
recent fix:
https://dev-builds.libreoffice.org/daily/master/Win-x86_64@42/current/

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


[Libreoffice-bugs] [Bug 115068] FILESAVE EXPORT as HTML : bad positioned images in HTML export

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115068

--- Comment #15 from Marian  ---
Well, it seems that  Xavier Van Wijmeersch reproduced my problem, except that
his solution is unacceptable for somebody who tries to perform batch
conversions with Libre Office...

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


[Libreoffice-bugs] [Bug 101224] VIEWING Cell view not updated with split screen and macros

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101224

raal  changed:

   What|Removed |Added

   Keywords|bibisectRequest |bibisected, bisected
 CC||qui...@gmail.com,
   ||r...@post.cz

--- Comment #6 from raal  ---
This seems to have begun at the below commit.
Adding Cc: to Tomaž Vajngerl ; Could you possibly take a look at this one?
Thanks

db76ebae674812c4c3dffafc2d02201a67dd15a7 is the first bad commit
commit db76ebae674812c4c3dffafc2d02201a67dd15a7
Author: Norbert Thiebaud 
Date:   Wed Jun 3 14:29:56 2015 -0500

source sha:dca01def7885ad69cf66edd75cf8207a5adb64f9

source sha:dca01def7885ad69cf66edd75cf8207a5adb64f9
authorTomaž Vajngerl 2015-05-07
14:18:37 +0900
committerJan Holesovsky 2015-05-07 09:57:50 +0200
commitdca01def7885ad69cf66edd75cf8207a5adb64f9 (patch)
treef3b43717ab058b677c68614bcb2953beb7c7d1a0
parent7a11ec1992bf877f42edce8d1d930c5b00bd3d48 (diff)
refactor ListBox/ComboBox to use RenderContext
Change-Id: I367d6e4f54375bd61e46f0c1437444306b127c68

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


[Libreoffice-bugs] [Bug 91400] LibreOffice doesn’t use system font in =?UTF-8?Q?OS=20X=2010=2E10=2B=20?=(Helvetica Neue in Yosemite 10.10, San Francisco in El Capitan 10.11 and Sierra 10.12)

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91400

--- Comment #6 from Jano  ---
Created attachment 139266
  --> https://bugs.documentfoundation.org/attachment.cgi?id=139266=edit
screenshot

This is still a huge problem for me. For some reason libreoffice is not just
using some other font but a font that does not really exist, my UI just
consists of rectangles... iMac late 2012, 10.13.2, Libreoffice 5.4.1.2

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


[Libreoffice-bugs] [Bug 115150] Conditional formatting not working properly with the "max" function.

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115150

--- Comment #3 from Angelos Skembris  ---
I see, it works now. 

Your explanation is pretty clear and also helped me understand why the initial
approach would not work. 

Thank you for your help!

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


[Libreoffice-bugs] [Bug 115052] Allow other keys than from US keyboard as shortcut keys

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115052

--- Comment #5 from Thomas Lendo  ---
(In reply to Yousuf Philips (jay) from comment #4)
> (In reply to Thomas Lendo from comment #2)
> > The locale shortcut fix is one step but isn't perfectly usable now because
> > of the very limited range of available (US English) keys. Many keys of
> > non-US English keyboard layouts cannot be used today
> Then likely an enhancement report should be filed to include non-US
> characters into the list
This can be answered in this enhancement request and that's what this bug is
for. Pre-defined enhanced shortcut key list or auto-detected by locale or
auto-detected by the plugged keyboard or whatever is possible or realistic.

> > a shortcut like Ctrl+# is possible with a German keyboard layout but not
> > with an US English keyboard layout
> Ctrl+# is available on the english locale with Ctrl+Shift+3.
Modifier1+Key (my request) is a completely different shortcut combination than
Modifier1+Modifier2+Key (your suggestion). [And of course I know that and where
# is available on an US keyboard layout ...]

> > The same is valid vice versa: Ctrl+; isn't
> > possible with a German keyboard layout (as US English ';' key is 'ö' in
> > German) so this can be hidden there, but must be shown for US English
> > keyboard layout.
> I can see ';' in the same ',' key in the german keyboard image you linked to.
As said before: English Ctrl+; (Modifier1+Key) would be available via
Ctrl+Shift+, (Modifier1+Modifier2+Key) on an German keyboard but that's no
solution for the request of this enhancement request. Ctrl+Shift operations
should only be used for seldom used functions--and to expect that non-US users
should use complicate shortcuts for things for that US users have a good/easier
shortcut is not user friendly.

(In reply to Heiko Tietze from comment #3)
> Created attachment 139139 [details]
> Keyboard assignment on LXQt
> 
> Would drop the whole concept of predefined keys and just allow anything what
> comes from the keyboard. That also means the keyboard tab needs a complete
> revamp. Something like KDE has or in the attached example from LXQt (after
> clicking the shortcut button you have 10s to press any key combination).
Maybe what you show from LXQt can be done as a first step. Sounds like an ugly
hack (from UX perspective) but to add an extra possibility to add a key
combination--that also allows non-US keyboard keys--would prevent to revamp the
whole Customize dialog and hard coded key assignments in the LO code.

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


[Libreoffice-bugs] [Bug 115123] Copying text from PDF gives corrupt text in new file depending on font

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115123

--- Comment #9 from Chavdar  ---
Confirmed

Copying the text from file "PDF file with FreeSerif that looks good" makes the
pasted text corrupted.
Times New Roman one pastes as expexted.

Version: 5.4.4.2 (x64)
Build ID: 2524958677847fb3bb44820e40380acbe820f960
CPU threads: 4; OS: Windows 6.19; UI render: default; 
Locale: bg-BG (bg_BG); Calc: group

Version: 6.1.0.0.alpha0+
Build ID: d28e10b095b4ee0986fbe86170928bf077da04b9
CPU threads: 4; OS: Windows 10.0; UI render: default; 
TinderBox: Win-x86@62-TDF, Branch:MASTER, Time: 2018-01-13_22:59:50
Locale: bg-BG (bg_BG); Calc: group threaded

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


[Libreoffice-bugs] [Bug 115153] FILEOPEN: RTF: Incorrect vertical position of lines ( follow-up)

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115153

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||bibisected, bisected,
   ||filter:rtf, regression
 Status|UNCONFIRMED |NEW
 CC||mst...@redhat.com
 Ever confirmed|0   |1

--- Comment #4 from Xisco Faulí  ---
Regression introduced by:

author  Michael Stahl    2017-11-02 22:13:32 +0100
committer   Michael Stahl    2017-11-02 22:35:31
+0100
commit  c79467ba954987f1d239c594c1e1b3af3f5515f6 (patch)
tree5138f2c58869a486619bdac51814c0093a5c655f
parent  9a236714e539c772cad7b56caf21dc12b79e77df (diff)
sw: ODF import: default as-char shapes to vertical-pos="top"

Bisected with: bibisect-linux64-6.0

Adding Cc: to Michael Stahl

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


[Libreoffice-bugs] [Bug 115153] FILEOPEN: RTF: Incorrect vertical position of lines ( follow-up)

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115153

--- Comment #3 from Xisco Faulí  ---
Created attachment 139265
  --> https://bugs.documentfoundation.org/attachment.cgi?id=139265=edit
sample 2

another document affected v2

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


[Libreoffice-bugs] [Bug 115153] FILEOPEN: RTF: Incorrect vertical position of lines ( follow-up)

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115153

--- Comment #2 from Xisco Faulí  ---
Created attachment 139264
  --> https://bugs.documentfoundation.org/attachment.cgi?id=139264=edit
sample1

another document affected

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


[Libreoffice-bugs] [Bug 115153] FILEOPEN: RTF: Incorrect vertical position of lines ( follow-up)

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115153

--- Comment #1 from Xisco Faulí  ---
attachment 52928 from bug 42407 and attachment 54612 from bug 54612 are also
affected

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


[Libreoffice-bugs] [Bug 115153] FILEOPEN: RTF: Incorrect vertical position of lines ( follow-up)

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115153

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=11
   ||4303

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


[Libreoffice-bugs] [Bug 115153] New: FILEOPEN: RTF: Incorrect vertical position of lines ( follow-up)

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115153

Bug ID: 115153
   Summary: FILEOPEN: RTF: Incorrect vertical position of lines
(follow-up)
   Product: LibreOffice
   Version: 6.1.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: xiscofa...@libreoffice.org

Created attachment 139263
  --> https://bugs.documentfoundation.org/attachment.cgi?id=139263=edit
comparison MSO 2010 and LibreOffice 6.1

This is a follow-up of bug 114303
After another run of office-interoperability-tools, I found there're still some
files with incorrect vertical position of lines.

Steps to reproduce:
1. Open attachment 66321 from bug 54257

-> Some lines are displayed on top of the document. See attached image

Reproduced in

Version: 6.1.0.0.alpha0+
Build ID: de1bb0878fc7d7eb6071ec94d770712648013075
CPU threads: 4; OS: Linux 4.10; UI render: default; VCL: gtk2; 
Locale: ca-ES (ca_ES.UTF-8); Calc: group threaded

[Bug found by office-interoperability-tools]

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


[Libreoffice-bugs] [Bug 115150] Conditional formatting not working properly with the "max" function.

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115150

Eike Rathke  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTABUG

--- Comment #2 from Eike Rathke  ---
You need to use absolute references, otherwise the corresponding reference
(here rows) runs with the cell where the condition is applied. For example the
MAX(B1:B4) in cell B1 is MAX(B1:B4), but in cell B2 it is MAX(B2:B5), and so
on. So use MAX($B$1:$B$4) instead. Actually MAX(B$1:B$4) would be sufficient
which then could be copied to other columns using Copy (with
Formats only) or pasting entire cells, but may also be even more confusing.

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


[Libreoffice-bugs] [Bug 108751] Show currently selected color in color button tooltip

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108751

--- Comment #6 from Heiko Tietze  ---
(In reply to abstatic from comment #5)
> I can't get glade to work on my machine. Unassigning myself.

That's a pity. But do you need Glade at all? I mean to dynamically modify a
tooltip is rather a question of C++, right?

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


[Libreoffice-bugs] [Bug 115150] Conditional formatting not working properly with the "max" function.

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115150

Eike Rathke  changed:

   What|Removed |Added

 Attachment #139259|application/octet-stream|application/vnd.oasis.opend
  mime type||ocument.spreadsheet

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


[Libreoffice-bugs] [Bug 115151] MacBook Pro Screen truncation

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115151

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #3 from Xisco Faulí  ---
This is because the tab is displayed. Dupe of bug 114985
It will be fixed soon. Thanks for reporting it!

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

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


[Libreoffice-bugs] [Bug 114985] LO60rc2 macOS: Help window, Settings and other windows open as tabs even when not desired

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114985

Xisco Faulí  changed:

   What|Removed |Added

 CC||timbob...@icloud.com

--- Comment #22 from Xisco Faulí  ---
*** Bug 115151 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 111307] Numbers cut in numeric input fields (with OpenGL enabled only )

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111307

Xisco Faulí  changed:

   What|Removed |Added

 CC||cont...@ligh.de

--- Comment #8 from Xisco Faulí  ---
*** Bug 115144 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 115144] (Readability) Padding in combobox lists covers a part of the text

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115144

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||xiscofa...@libreoffice.org
 Resolution|--- |DUPLICATE

--- Comment #4 from Xisco Faulí  ---
Thanks for reporting the issue.
This is a dupe of bug 111307

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

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


[Libreoffice-bugs] [Bug 114725] provide an option to export to PDF without a solid background

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=114725

tommy27  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||ba...@quipo.it
Summary|Enhancement request:|provide an option to export
   |provide an option to export |to PDF without a solid
   |to PDF without a solid  |background
   |background  |
 Ever confirmed|0   |1

--- Comment #2 from tommy27  ---
enhancement request. status NEW.

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


[Libreoffice-bugs] [Bug 115151] MacBook Pro Screen truncation

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115151

--- Comment #2 from Tim Burns  ---
Created attachment 139262
  --> https://bugs.documentfoundation.org/attachment.cgi?id=139262=edit
Help screen truncation (also seen in other dialogs)

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


[Libreoffice-bugs] [Bug 115151] MacBook Pro Screen truncation

2018-01-22 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=115151

Xisco Faulí  changed:

   What|Removed |Added

 CC||xiscofa...@libreoffice.org

--- Comment #1 from Xisco Faulí  ---
Could you please attach a screenshot ?

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


  1   2   3   >