[Libreoffice-bugs] [Bug 90540] Character codes 128 to 159 (U+0080 to U+009F) should not appear in HTML/XHTML export

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90540

--- Comment #8 from David Tardon  ---
(In reply to Luke Kendall from comment #6)
> BTW, is the Export to XHTML the same code that provides Save As HTML, or are
> they different?

They are very much different.

> 
> I'm intrigued, too, as to why the generation of X/HTML should be "a horrible
> XSLT mess"

The XHTML export filter is written in XSLT, which is absolutely inappropriate
for conversing a complex format to another one.

-- 
You are receiving this mail because:
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 98854] Flipped image (two or more) does not display in print preview

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98854

Buovjaga  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
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 98853] Flip image does not display in print preview

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98853

Buovjaga  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=98
   ||854
 OS|All |Windows (All)

--- Comment #5 from Buovjaga  ---
Changing OS field as this is Win-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 99093] New: Wrong Data Validation in Calc

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99093

Bug ID: 99093
   Summary: Wrong Data Validation in Calc
   Product: LibreOffice
   Version: 5.0.5.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: yani...@mail.ru

Created attachment 124079
  --> https://bugs.documentfoundation.org/attachment.cgi?id=124079=edit
Example workbook

1. Create new workbook in MS Excel 2010.

2. Set C5 cell value = "55" (for example)

3. In C6 cell set data validation: Whole number, less than C5.

4. Save file as Excel 97-2003 Workbook.

Then, if open this file in Calc, see Data Validation cell address Sheet1.C65541
(65541 = 65536 + 5)

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


[Libreoffice-bugs] [Bug 99092] New: LibreOffice 5.0.4: Filter of XLSX format is failing

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99092

Bug ID: 99092
   Summary: LibreOffice 5.0.4: Filter of XLSX format is failing
   Product: LibreOffice
   Version: 5.0.4.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: jvchb...@gmail.com

I have installed LibreOffice_5.0.4_Win_x86 and converting xls to xlsx files
through java.

The Filters I tried are :

1) Microsoft Excel 2007-2013 XML [https://ask.libreoffice.org/en/questi...]

2)MS Excel 2007 XML [https://ask.libreoffice.org/en/questi...]

None of the above filters works for XLSX but able to generate xls files. I use
the below java code to save xlsx files;

XStorable xstorable = (XStorable) UnoRuntime.queryInterface(XStorable.class,
doc);

 PropertyValue[] propertyvalue = new PropertyValue[2];
propertyvalue[0] = new PropertyValue();
propertyvalue[0].Name = "Overwrite";
propertyvalue[0].Value = new Boolean(true);
propertyvalue[1] = new PropertyValue();
propertyvalue[1].Name = "FilterName";
propertyvalue[1].Value =MS Excel 2007 XML;
  xstorable.storeAsURL(targetDocName, propertyvalue);

The error I got is below 2016-02-17 21:27:48,886 ERROR [ajp-bio-8009-exec-1]
ExcelProcess [ExcelProcess.java:131] Error occured while saving spreadsheet to
a new url name com.sun.star.task.ErrorCodeIOException: SfxBaseModel::impl_store
 failed: 0x81a at
com.sun.star.lib.uno.environments.remote.Job.remoteUnoRequestRaisedException(Job.java:160)
~[jurt-5.0.4.jar:na] at
com.sun.star.lib.uno.environments.remote.Job.execute(Job.java:124)
~[jurt-5.0.4.jar:na] at
com.sun.star.lib.uno.environments.remote.JobQueue.enter(JobQueue.java:319)
~[jurt-5.0.4.jar:na] at
com.sun.star.lib.uno.environments.remote.JobQueue.enter(JobQueue.java:288)
~[jurt-5.0.4.jar:na] at
com.sun.star.lib.uno.environments.remote.JavaThreadPool.enter(JavaThreadPool.java:80)
~[jurt-5.0.4.jar:na] at
com.sun.star.lib.uno.bridges.java_remote.java_remote_bridge.sendRequest(java_remote_bridge.java:617)
~[jurt-5.0.4.jar:na] at
com.sun.star.lib.uno.bridges.java_remote.ProxyFactory$Handler.request(ProxyFactory.java:144)
~[jurt-5.0.4.jar:na] at
com.sun.star.lib.uno.bridges.java_remote.ProxyFactory$Handler.invoke(ProxyFactory.java:128)
~[jurt-5.0.4.jar:na] at com.sun.proxy.$Proxy81.storeAsURL(Unknown Source)
~[na:na]

Please help us to resolve this issue and let me know if you need more
information.

-- 
You are receiving this mail because:
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 99073] UI: double clicking on a form folder does not unfold it anymore

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99073

raal  changed:

   What|Removed |Added

   Keywords||bibisected, bisected
 Status|NEEDINFO|NEW
 CC||noelgran...@gmail.com

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

3dc6251beb6e88c371ca1432a42397a503db8899 is the first bad commit
commit 3dc6251beb6e88c371ca1432a42397a503db8899
Author: Norbert Thiebaud 
Date:   Sat Sep 12 23:10:40 2015 -0700

source sha:cf0c04a428754dfd5aa477cebc5441bc74e27005

source sha:cf0c04a428754dfd5aa477cebc5441bc74e27005

authorNoel Grandin 2015-09-10 12:39:17 (GMT)
committerNoel Grandin 2015-09-11 06:48:54 (GMT)
commitcf0c04a428754dfd5aa477cebc5441bc74e27005 (patch)
tree6d4657ec370a3378887745b34d217a91bdab2eef
parente8ee8473361f09034fdcd4f30a2325a53a512a7a (diff)
convert Link<> to typed

-- 
You are receiving this mail because:
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 38760] Multiple data series cannot support multiple labels in X-Y plot

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=38760

--- Comment #22 from Joel Madero  ---
Hi Alex,

Quick point.
> 
> If the bug cannot be rectified soon then the ui needs updating as a stopgap
> so people do not experience this shortfall without realising the output from
> calc is incorrect. E.g. only allowing label input for 1 series. This is not
> a solution however and I would argue that the bug needs fixing.


This isn't how an open source project works. There is no "needs fixing" - every
bug needs fixing, the thing is that a volunteer must take an interest in fixing
it. The options are always the same:

1) Fix it yourself (open source means that you can do just that);
2) Find someone to fix it;
3) Pay for a fix - almost always too expensive for an individual person
4) Wait

Even if the UI "needs updating" it'll take a volunteer to tackle that.

-- 
You are receiving this mail because:
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 99076] login module is nt working properly

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99076

Jean-Baptiste Faure  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||jbfa...@libreoffice.org
 Resolution|--- |INVALID

--- Comment #1 from Jean-Baptiste Faure  ---
Please, do not set your own bug report to NEW, each one must be independently
confirmed.

No description, no scenario to reproduce a non described problem -> invalid.

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 99077] interface libre office illisible (police caractères speciaux)

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99077

Jean-Baptiste Faure  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||jbfa...@libreoffice.org
 Resolution|--- |INVALID

--- Comment #1 from Jean-Baptiste Faure  ---
This bugtracker is not an helpdesk.
Please ask for help on an users mailing list.
In English: us...@global.libreoffice.org
In French: us...@fr.libreoffice.org. You could use our help form here:
https://fr.libreoffice.org/get-help/poser-une-question
You could ask for help on the dedicated forum of your Linux distribution.

Closing as invalid. Thank you for your understanding.

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 99091] New: wmf in odg can not break and Past GDI to writer become bigger, and include some white space

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99091

Bug ID: 99091
   Summary: wmf in odg can not break and Past GDI to writer become
bigger,and include some white space
   Product: LibreOffice
   Version: 5.1.2.2 rc
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: graphics stack
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: odinat...@gmail.com

Created attachment 124078
  --> https://bugs.documentfoundation.org/attachment.cgi?id=124078=edit
wmf in odg can not break and Past GDI to writer become bigger,and include some
white space

wmf in odg can not break,
and Past GDI to writer well in LO 4.4 but 5.1.2.2,
It will become bigger,and include some white space.

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


[Libreoffice-bugs] [Bug 99091] wmf in odg can not break and Past GDI to writer become bigger, and include some white space

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99091

odinatlas  changed:

   What|Removed |Added

   Hardware|All |x86-64 (AMD64)
 OS|All |Windows (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 98696] Create Easier DDE Linking Between Calc and Writer

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98696

Joel Madero  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||jmadero@gmail.com
 Resolution|--- |WONTFIX

-- 
You are receiving this mail because:
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 99050] Images embedded in Writer document disappear

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99050

--- Comment #3 from Bob S  ---
Created attachment 124077
  --> https://bugs.documentfoundation.org/attachment.cgi?id=124077=edit
As requested, an .ODT file with the error

As requested, a .ODT file with the read 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 99090] Exported DOCX cannot be opened by Word 2013

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99090

Dave Levitt  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
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 95546] This .docx file created by LO cannot be opened in MS Word

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=95546

Dave Levitt  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
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 99090] New: Exported DOCX cannot be opened by Word 2013

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99090

Bug ID: 99090
   Summary: Exported DOCX cannot be opened by Word 2013
   Product: LibreOffice
   Version: 5.1.1.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: dlev...@mac.com

File created with LO cannot be opened with either Word 2013 [Windows 7] or
Apple Pages [OSX 10.11.4]

LibreOffice as no trouble opening either the original ODT or the exported DOCX

As a work-around, I was able to export the document to .DOC format, and that
export opened without complaint.

This issue may duplicate Bug 95546

I'm going to attempt to generate a short example document - it may be tied to
an 'ole' style included object. [Visio document, the LO draw did not open with
fidelity to the original]

-- 
You are receiving this mail because:
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 OS X 10.10+ (Helvetica Neue in Yosemite, San Francisco in El Capitán)

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91400

--- Comment #3 from Xavier Valarino  ---
Created attachment 124076
  --> https://bugs.documentfoundation.org/attachment.cgi?id=124076=edit
Screenshot of LibreOffice calc not using system font

I have also been experiencing this issue on OSX 10.11.4

It looks like LibreOffice is using Gill Sans Ultra Bold Regular for the active
row and column, as well as the active sheet in the GUI.

-- 
You are receiving this mail because:
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 90953] Brochure printing adds blank pages in ODT with manual breaks

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90953

--- Comment #6 from Shem Pasamba  ---
Here's a video of how I created it: https://youtu.be/MEb5mJB9_74  I think you
need to add up to 7 pages to make the bug show up.

-- 
You are receiving this mail because:
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 98853] Flip image does not display in print preview

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98853

--- Comment #4 from HD  ---
(In reply to Buovjaga from comment #2)
> You mean print preview Ctrl-Shift-O?
> I do not see the problem.
> 
> 64-bit, KDE Plasma 5
> Build ID: 5.1.1.3 Arch Linux build-2
> CPU Threads: 8; OS Version: Linux 4.4; UI Render: default; 
> Locale: fi-FI (fi_FI.UTF-8)

Yes.
[File] - [Print preview] or [Ctrl]+[Shift]+[O].

-- 
You are receiving this mail because:
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 99089] libreoffice crashes when I select a different job number on the spreadsheet

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99089

--- Comment #1 from tim  ---
Created attachment 124075
  --> https://bugs.documentfoundation.org/attachment.cgi?id=124075=edit
a jobsheet spreadsheet, which causes the crashing

this file is the test file that demonstrates the issue.

-- 
You are receiving this mail because:
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 99089] New: libreoffice crashes when I select a different job number on the spreadsheet

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99089

Bug ID: 99089
   Summary: libreoffice crashes when I select a different job
number on the spreadsheet
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: t...@tree-of-life.co.uk

User-Agent:   Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101
Firefox/45.0
Build Identifier: LibreOffice 5.1.0.3

The crash appears to be related to the macros I have written in the
spreadsheet, such that libreoffice closes itself after having loaded for about
5 seconds, (without pressing anything) I get an "Inadmissible data type.
Overflow" error and then if I pick a different job number from the dropdown I
get an "unknown SEH error" and libreoffice closes.

Reproducible: Always

Steps to Reproduce:
1.open spreadsheet and wait about 5 seconds
2.first error appears
3. on the edit form select a different job number.
Actual Results:  
 libreoffice crashes.

Expected Results:  
the other job number information should be displayed.

[Information automatically included from LibreOffice]
Locale: en-US
Module: SpreadsheetDocument
[Information guessed from browser]
OS: Windows (All)
OS is 64bit: yes


Reset User Profile?No

-- 
You are receiving this mail because:
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 99087] Closing Fullscreen leaves you a black screen

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99087

--- Comment #3 from Oliver  ---
I'm using OS X 10.11.4 on Intel
And got the described problems.

-- 
You are receiving this mail because:
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 98696] Create Easier DDE Linking Between Calc and Writer

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98696

Katarina Behrens (CIB)  changed:

   What|Removed |Added

 CC||katarina.behr...@cib.de

--- Comment #1 from Katarina Behrens (CIB)  ---
Please leave DDE out of the equation, it is a security nightmare:
http://www.contextis.com/resources/blog/comma-separated-vulnerabilities/ and it
is an obsolete technology, deprecated by Microsoft itself since at least Win
XP. That's why quite the contrary should happen, the users should be
discouraged from using it. 

But this is really nothing UX team should decide.

-- 
You are receiving this mail because:
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 98846] Please add a Tools, Copy MathML to Clipboard option in the Formula Editor

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98846

--- Comment #3 from Ben van der Merwe  ---
I guess to be consistent the new option should be called "Export MathML to
Clipboard". Thanks.

-- 
You are receiving this mail because:
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 89095] Start Center: bigger thumbnails for templates

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89095

Akshay Deep  changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |akshaydeepi...@gmail.com
   |desktop.org |
 QA Contact|akshaydeepi...@gmail.com|

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


[Libreoffice-bugs] [Bug 99087] Closing Fullscreen leaves you a black screen

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99087

--- Comment #2 from Douglas Mencken  ---
On my side ( 10.5.8 PowerPC ) closing fullscreen window leaves me without menu
bar and without dock until quit and relaunch

-- 
You are receiving this mail because:
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 99068] Missing icon

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99068

--- Comment #3 from Brian  ---
Created attachment 124074
  --> https://bugs.documentfoundation.org/attachment.cgi?id=124074=edit
No push button icon

Shows a form in edit mode, with all available form controls showing

-- 
You are receiving this mail because:
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 98961] German Spelling Mistake in 'About' screen

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98961

Adolfo Jayme  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||f...@libreoffice.org,
   ||ku...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #1 from Adolfo Jayme  ---
@Kü: this one is for you! =)

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


[Libreoffice-bugs] [Bug 99068] Missing icon

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99068

Adolfo Jayme  changed:

   What|Removed |Added

 CC||f...@libreoffice.org

--- Comment #2 from Adolfo Jayme  ---
Can you attach a screenshot, please?

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


[Libreoffice-bugs] [Bug 99024] [FORMATTING, FILESAVE] Missing colors on some title numbers when saved as .doc

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99024

raal  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||r...@post.cz
Version|5.1.1.3 release |3.5.0 release
 Ever confirmed|0   |1

--- Comment #1 from raal  ---
I can confirm with Version: 5.2.0.0.alpha0+
Build ID: ef34535ceb60d7d63b8d8671e4c6e9e43ffbd17d
CPU Threads: 4; OS Version: Linux 4.2; UI Render: default; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2016-03-27_09:53:05
and LibreOffice 3.5.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 99023] [FORMATTING, FILESAVE] Missing text background when saved as .doc

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99023

raal  changed:

   What|Removed |Added

   Keywords||filter:doc, regression
 Status|UNCONFIRMED |NEW
 CC||r...@post.cz
 Ever confirmed|0   |1

--- Comment #1 from raal  ---
I can confirm with Version: 5.2.0.0.alpha0+
Build ID: ef34535ceb60d7d63b8d8671e4c6e9e43ffbd17d
CPU Threads: 4; OS Version: Linux 4.2; UI Render: default; 
TinderBox: Linux-rpm_deb-x86_64@70-TDF, Branch:master, Time:
2016-03-27_09:53:05

works in LibreOffice 3.5.0, regression

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


[Libreoffice-bugs] [Bug 99088] Editing single fill color in SVG distorts image

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99088

--- Comment #2 from S.  ---
Created attachment 124073
  --> https://bugs.documentfoundation.org/attachment.cgi?id=124073=edit
SVG after editing with LibreOffice draw and only changing the fill color

-- 
You are receiving this mail because:
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 99088] Editing single fill color in SVG distorts image

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99088

--- Comment #1 from S.  ---
Created attachment 124072
  --> https://bugs.documentfoundation.org/attachment.cgi?id=124072=edit
original SVG 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 99088] New: Editing single fill color in SVG distorts image

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99088

Bug ID: 99088
   Summary: Editing single fill color in SVG distorts image
   Product: LibreOffice
   Version: 5.1.1.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sb56...@gmail.com

Hello, I edited the color of the attached "orig.svg" file with LibreOffice
Draw, and the result can be seen in "edited.svg". It creates a sort of halo
effect around what should be a simple filled rectange.

-- 
You are receiving this mail because:
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 99086] NamedRanges.getByName().ReferencePosition.Column Err

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99086

--- Comment #2 from DM  ---
Thanks - I see that now!
.ReferredCells.RangeAddress.StartColumn seems to work better.
Thanks for your pointer. I did have an issue where
ThisComponent.NamedRanges.getByName(NameString).Name<>NameString
ie where the wrong (but existing) ranges were being returned by name lookup so
I assumed the fault had been here too. (For that other error, I recreated all
the ranges and that went away.)
Cheers,
d

-- 
You are receiving this mail because:
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 99086] NamedRanges.getByName().ReferencePosition.Column Err

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99086

Eike Rathke  changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED

-- 
You are receiving this mail because:
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 99087] Closing Fullscreen leaves you a black screen

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99087

--- Comment #1 from Oliver  ---
Created attachment 124071
  --> https://bugs.documentfoundation.org/attachment.cgi?id=124071=edit
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


[Libreoffice-bugs] [Bug 99086] NamedRanges.getByName().ReferencePosition.Column Err

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99086

Eike Rathke  changed:

   What|Removed |Added

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

--- Comment #1 from Eike Rathke  ---
There is no error.
DataW1C was defined on 'BALANCED SL'.$I$8 to point to $'BALANCED SL'.$J$8
Tst2 was defined on 'BALANCED SL'.$J$4 to point to $'BALANCED SL'.$J$4
Which is the difference you get with ReferencePosition.Column
Don't confuse the reference position (the base cell address where the range is
defined on) with a reference the expression is pointing to.

-- 
You are receiving this mail because:
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 99087] New: Closing Fullscreen leaves you a black screen

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99087

Bug ID: 99087
   Summary: Closing Fullscreen leaves you a black screen
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: m...@oliver-steffe.de

User-Agent:   Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_4)
AppleWebKit/601.5.17 (KHTML, like Gecko) Version/9.1 Safari/601.5.17
Build Identifier: LibreOffice 5.1.1.3

When you close a document window in OS X FullScreen, LibreOffice gives you a
full black Screen. Opening different Documents in FullScreen and closing them
gives you multiple BlackScreens.
If you open / create a document in fullscreen, a next fullScreen is created.

Reproducible: Always

Steps to Reproduce:
1. Open a document
2. change to fullscreen 
3. type cmd + w

Actual Results:  
you get a black screen

Expected Results:  
closing window and leaving the document fullscreen 

[Information automatically included from LibreOffice]
Locale: de
Module: TextDocument
[Information guessed from browser]
OS: Mac OS X (All)
OS is 64bit: no


Reset User Profile?No

-- 
You are receiving this mail because:
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 98914] Crash when inserting trend line

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98914

Maxim Monastirsky  changed:

   What|Removed |Added

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

--- Comment #3 from Maxim Monastirsky  ---


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

-- 
You are receiving this mail because:
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 98533] Clarify Insert->Document menu entry usage

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98533

Stéphane Aulery  changed:

   What|Removed |Added

   See Also||http://bugs.debian.org/8145
   ||98

-- 
You are receiving this mail because:
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 99081] SIDEBAR: Layout and Paragraph content panels should be visible in Outline view

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99081

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu

--- Comment #1 from V Stuart Foote  ---
@Jay, I agree that having access to Paragraph and the Layout panels would be
helpful when in Outline mode.

Folks should be aware that this is about which controls (content panels) are
exposed in the the Properties deck of the Sidebar. Where now it displays only
the Character content panel when in Outline mode.

To encourage use of styles over direct formatting, might this rework be better
handled implemented from (or at least including) the Style & Formatting Sidebar
deck?

-- 
You are receiving this mail because:
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 98902] Right click on selected text unselect it if the cursor is on a misspelled word

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98902

Buovjaga  changed:

   What|Removed |Added

   Keywords||needsDevEval
   Priority|medium  |low
 Status|UNCONFIRMED |NEW
 CC||todven...@suomi24.fi
 Ever confirmed|0   |1
   Severity|normal  |minor

--- Comment #1 from Buovjaga  ---
Repro.

64-bit, KDE Plasma 5
Build ID: 5.1.1.3 Arch Linux build-2
CPU Threads: 8; OS Version: Linux 4.4; UI Render: default; 
Locale: fi-FI (fi_FI.UTF-8)

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


[Libreoffice-bugs] [Bug 98881] Installer shoud register protocols vnd.sun.star.webdav and vnd.sun.star.webdavs

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98881

Buovjaga  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||todven...@suomi24.fi
 Ever confirmed|0   |1

--- Comment #1 from Buovjaga  ---
Ok, I guess I'll set to 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 99086] New: NamedRanges.getByName().ReferencePosition.Column Err

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99086

Bug ID: 99086
   Summary: NamedRanges.getByName().ReferencePosition.Column Err
   Product: LibreOffice
   Version: 5.1.1.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: miscellane...@paintdrawer.co.uk

Created attachment 124070
  --> https://bugs.documentfoundation.org/attachment.cgi?id=124070=edit
Minimal spreadsheet exhibiting error

Windows 10
I have two named ranges in the same column, but their ReferencePosition.Column
values are different, when I would anticipate them to be the same.

The attached spreadsheet (cut down from the one I was working on to bare
essentials) illustrates this, with the okay range (Tst2) highlighted green and
the bad one (DataW1C) red. You can see if you choose the named ranges from the
gui droplist that they jump to these locations.
They have the same column, but if you open spreadsheet (enable macros) and run
the Main() code, which is below, the code reports different columns.
Cheers,
David

SPREADHEET CODE:

Option Explicit
Sub Main()
Msgbox ThisComponent.NamedRanges.getByName("DataW1C").ReferencePosition.Column
' Fail (Red)
Msgbox ThisComponent.NamedRanges.getByName("Tst2").ReferencePosition.Column '
Good (Green)
End Sub

-- 
You are receiving this mail because:
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 99069] assertion "SolarMutex not locked" from Data Ranges dialog

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99069

Markus Mohrhard  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |markus.mohrhard@googlemail.
   |desktop.org |com

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


[Libreoffice-bugs] [Bug 99084] Meta: Outline related bugs and enhancements for Impress

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99084

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Depends on||99083

-- 
You are receiving this mail because:
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 99083] Outline bullet behaviour incorrect in Outline view

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99083

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Blocks||99084

-- 
You are receiving this mail because:
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 99083] Outline bullet behaviour incorrect in Outline view

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99083

--- Comment #1 from Yousuf (Jay) Philips  ---
(In reply to Yousuf (Jay) Philips from comment #0)
> and its below and above paragraph spacing wont be similar to the previous 
> bullets

This can be ignored as this happens in normal mode as well (bug 99085).

-- 
You are receiving this mail because:
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 83659] EDITING: Bullet list management toolbar buttons not active in text frame with manually started bulleted list

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=83659

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Blocks||99084
Summary|EDITING: Icons for handling |EDITING: Bullet list
   |a bullet list not active in |management toolbar buttons
   |text frame with manually|not active in text frame
   |started bulleted list   |with manually started
   ||bulleted list

-- 
You are receiving this mail because:
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 99084] Meta: Outline related bugs and enhancements for Impress

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99084

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Depends on||83659

-- 
You are receiving this mail because:
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 99084] Meta: Outline related bugs and enhancements for Impress

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99084

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 99085] New: Promoting and demoting outline bullets doesnt preserve paragraph spacing

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99085

Bug ID: 99085
   Summary: Promoting and demoting outline bullets doesnt preserve
paragraph spacing
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
Blocks: 99084

Steps:
1) Open
http://www.thefrugalcomputerguy.com/libreoffice-impress/downloads/odp07_ASimpleDoc.odp
2) Go to slide 2
3) Add a new bullet and notice that above paragraph spacing is 0.20" and below
paragraph spacing is 0.00" in the sidebar
4) Demote the bullet point with Tab
5) Promote the bullet point with Shift+Tab and notice that above paragraph
spacing is now 0.00" and below paragraph spacing is now 0.15"

Version: 5.2.0.0.alpha0+
Build ID: 02fb3fd0533222dfea5b6b9232425a5e28cd340f
CPU Threads: 2; OS Version: Linux 4.2; UI Render: default; 
TinderBox: Linux-rpm_deb-x86@71-TDF, Branch:master, Time: 2016-03-29_06:02:35
Locale: en-US (en_US.UTF-8)

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


[Libreoffice-bugs] [Bug 99084] New: Meta: Outline related bugs and enhancements for Impress

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99084

Bug ID: 99084
   Summary: Meta: Outline related bugs and enhancements for
Impress
   Product: LibreOffice
   Version: 5.2.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
Depends on: 99079, 99080, 99081, 99082

Outline management has quite a number of bugs and enhancements that would be
useful to be fixed in both normal and outline view in Impress.

-- 
You are receiving this mail because:
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 99082] Should Outline view allow modification of more than a single content textbox in Impress

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99082

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Blocks||99084

-- 
You are receiving this mail because:
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 99084] Meta: Outline related bugs and enhancements for Impress

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99084

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Depends on||99085

-- 
You are receiving this mail because:
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 99081] SIDEBAR: Layout and Paragraph content panels should be visible in Outline view

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99081

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Blocks||99084

-- 
You are receiving this mail because:
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 99079] Cursor location in Outline view should affect selection in Slide pane

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99079

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Blocks||99084

-- 
You are receiving this mail because:
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 99080] Presentation toolbar shouldnt be hidden in Outline view

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99080

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Blocks||99084

-- 
You are receiving this mail because:
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 89668] SLIDE PANE: Move slide manipulation buttons to the bottom of the pane

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89668

V Stuart Foote  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
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 87672] Moving Impress view tabs to slide pane

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87672

V Stuart Foote  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
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 99080] Presentation toolbar shouldnt be hidden in Outline view

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99080

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=89
   ||668,
   ||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=87
   ||672

--- Comment #1 from V Stuart Foote  ---
@Jay, not opposed to the idea of having the "Presentation" toolbar present
while in outline mode, it makes sense and for now would be a simple toggle.

But, aren't we still working toward suppression of the toolbars, in favor of
implementing .ui based button widgets in the "Slides" preview/sorter panel?

This could be achieved if we implement something for bug 89668 - "SLIDE PANE:
Move slide manipulation buttons to the bottom of the pane"? 

With additional UI work on the "Slides" panel to place the mode tabs, or
combobox 
of bug 87672 - "Moving Impress view tabs to slide pane".

-- 
You are receiving this mail because:
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 90953] Brochure printing adds blank pages in ODT with manual breaks

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90953

Timur  changed:

   What|Removed |Added

Version|4.4.2.2 release |3.5.0 release
Summary|Brochure printing adds  |Brochure printing adds
   |blank pages |blank pages in ODT with
   ||manual breaks

-- 
You are receiving this mail because:
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 89095] Start Center: bigger thumbnails for templates

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=89095

Akshay Deep  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 QA Contact||akshaydeepi...@gmail.com

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


[Libreoffice-bugs] [Bug 90953] Brochure printing adds blank pages

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90953

--- Comment #5 from Timur  ---
There' sth. strange with this file, it has manual breaks. How was it created? 
When you report a bug, it should be clear whether a problem can be recreated
from scratch or it's related to some particular file. 
Brochure works if document is created with simple page breaks, just using First
Page for the 1st page and Default Style that's switched on automatically.

-- 
You are receiving this mail because:
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 99083] Outline bullet behaviour incorrect in Outline view

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99083

Yousuf (Jay) Philips  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
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 99079] Cursor location in Outline view should affect selection in Slide pane

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99079

Yousuf (Jay) Philips  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
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 99083] New: Outline bullet behaviour incorrect in Outline view

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99083

Bug ID: 99083
   Summary: Outline bullet behaviour incorrect in Outline view
   Product: LibreOffice
   Version: Inherited From OOo
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com

I saw this bug here https://www.youtube.com/watch?v=P-V49QCVZhs=1m38s

Steps:
1) Open
http://www.thefrugalcomputerguy.com/libreoffice-impress/downloads/odp07_ASimpleDoc.odp
2) Switch to outline view
3) Add a new bullet to slide 2
4) Move cursor to beginning of new bullet and press Shift+Tab to make it a new
slide
5) Press Tab to return it back to a bullet
6) The bullet wont be aligned with the other bullets and its below and above
paragraph spacing wont be similar to the previous bullets

Version: 5.2.0.0.alpha0+
Build ID: 02fb3fd0533222dfea5b6b9232425a5e28cd340f
CPU Threads: 2; OS Version: Linux 4.2; UI Render: default; 
TinderBox: Linux-rpm_deb-x86@71-TDF, Branch:master, Time: 2016-03-29_06:02:35
Locale: en-US (en_US.UTF-8)

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


[Libreoffice-bugs] [Bug 99082] Should Outline view allow modification of more than a single content textbox in Impress

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99082

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=99
   ||079
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 99082] New: Should Outline view allow modification of more than a single content textbox in Impress

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99082

Bug ID: 99082
   Summary: Should Outline view allow modification of more than a
single content textbox in Impress
   Product: LibreOffice
   Version: 5.2.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
CC: c...@nouenoff.nl,
libreoffice-ux-adv...@lists.freedesktop.org,
tietze.he...@gmail.com, vstuart.fo...@utsa.edu

Presently Outline view only works correctly with the 'Title, Content' layout,
so if the 'Title and 2 Content' layout is selected, it only permits
modification of the bullets in the first content textbox. Should outline allow
a user to modify all the available content textboxes in a slide?

-- 
You are receiving this mail because:
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 99079] Cursor location in Outline view should affect selection in Slide pane

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99079

Yousuf (Jay) Philips  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
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 99081] New: SIDEBAR: Layout and Paragraph content panels should be visible in Outline view

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99081

Bug ID: 99081
   Summary: SIDEBAR: Layout and Paragraph content panels should be
visible in Outline view
   Product: LibreOffice
   Version: 5.2.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
CC: libreoffice-ux-adv...@lists.freedesktop.org,
susobhan...@gmail.com
Blocks: 65138

The Paragraph content panel has functions to manage outlines, and the Layout
content panel give easy access to change the slide 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 99079] Cursor location in Outline view should affect selection in Slide pane

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99079

Yousuf (Jay) Philips  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
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 99081] SIDEBAR: Layout and Paragraph content panels should be visible in Outline view

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99081

Yousuf (Jay) Philips  changed:

   What|Removed |Added

   Keywords||needsDevEval, topicUI
 Status|UNCONFIRMED |NEW
 CC|libreoffice-ux-advise@lists |momonas...@gmail.com
   |.freedesktop.org|
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=99
   ||079
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 65138] [META] Sidebar feature related issues

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65138

Yousuf (Jay) Philips  changed:

   What|Removed |Added

 Depends on||99081

-- 
You are receiving this mail because:
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 98360] Meta: CMIS bugs and enhancements

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98360
Bug 98360 depends on bug 98416, which changed state.

Bug 98416 Summary: REMOTE FILE: "The specified device is invalid." error dialog 
when attempting to add a service
https://bugs.documentfoundation.org/show_bug.cgi?id=98416

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 99061] Flip image does not display

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99061

--- Comment #5 from raal  ---
(In reply to m.a.riosv from comment #4)
> 
> I guess is enable.
> 
> Menu/Tools/Options/LibreOffice calc/View - Objects - Objects and images.

 Menu/Tools/Options/LibreOffice calc/View - Objects - Objects and images ->
Show

-- 
You are receiving this mail because:
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 99079] Cursor location in Outline view should affect selection in Slide pane

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99079

V Stuart Foote  changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu

--- Comment #1 from V Stuart Foote  ---
Agree, there is a UI breakage, see no reason the navigation should not be
linked in both elements.

-- 
You are receiving this mail because:
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 99079] New: Cursor location in Outline view should affect selection in Slide pane

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99079

Bug ID: 99079
   Summary: Cursor location in Outline view should affect
selection in Slide pane
   Product: LibreOffice
   Version: 5.2.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
CC: libreoffice-ux-adv...@lists.freedesktop.org

When in outline view, you can click on a slide in the Slide pane and it will
move the cursor in the outline view area to the related slide, but when you
click a title or bullet in the outline view area, it doesnt move the highlight
in the Slide pane to the corresponding slide.

-- 
You are receiving this mail because:
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 99080] Presentation toolbar shouldnt be hidden in Outline view

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99080

Yousuf (Jay) Philips  changed:

   What|Removed |Added

   Keywords||needsDevEval, topicUI
 Status|UNCONFIRMED |NEW
 CC|libreoffice-ux-advise@lists |
   |.freedesktop.org|
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=99
   ||079
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 99079] Cursor location in Outline view should affect selection in Slide pane

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99079

Yousuf (Jay) Philips  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
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 99080] New: Presentation toolbar shouldnt be hidden in Outline view

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99080

Bug ID: 99080
   Summary: Presentation toolbar shouldnt be hidden in Outline
view
   Product: LibreOffice
   Version: 5.2.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
CC: libreoffice-ux-adv...@lists.freedesktop.org

The presentation toolbar has buttons to insert a add, duplicate and delete a 
slide, as well as to change the slide layout, so this toolbar shouldnt be
hidden when a user goes into Outline view.

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


[Libreoffice-bugs] [Bug 99079] Cursor location in Outline view should affect selection in Slide pane

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99079

Yousuf (Jay) Philips  changed:

   What|Removed |Added

   Keywords||needsDevEval, topicUI
 Status|UNCONFIRMED |NEW
 CC|libreoffice-ux-advise@lists |
   |.freedesktop.org|
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 90953] Brochure printing adds blank pages

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90953

--- Comment #4 from Shem Pasamba  ---
Created attachment 124068
  --> https://bugs.documentfoundation.org/attachment.cgi?id=124068=edit
Sample output with 1.5 extra pages.

-- 
You are receiving this mail because:
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 90953] Brochure printing adds blank pages

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90953

--- Comment #3 from Shem Pasamba  ---
(In reply to Timur from comment #2)

Yes, it really produced 6 pages, were it should have been 5 pages in the
output.  The "3" extra pages that I mentioned translates to 1.5 extra pages in
the output.

-- 
You are receiving this mail because:
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 99026] [FORMATTING, FILESAVE] Page footer corrupted when saved as .doc

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99026

--- Comment #2 from Nicolas Mailhot  ---
In the case of a problem with exporting to .doc in word97 the test is 'it must
look the same in word97 once exported"

-- 
You are receiving this mail because:
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 99060] Table copied from one document does not replace table in another

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99060

--- Comment #10 from Kruno  ---
Second table pastes correctly if first document stays opened, it pastes wrongly
only if first document closed and then opened second.

Is it LO bug at all?

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


[Libreoffice-bugs] [Bug 98845] Scripting.Dictionary.Item(New Collection)

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=98845

DM  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #4 from DM  ---
To explain the top post a bit better - you
1. create a new spreadsheet
2. create a new module
3. ensure the code as below
4. with the insertion point in Main() use F5 to run it. It will fail on Set
oColB (but not on Set oCol).
Same problem if instead of a New Collection you'd used various other complex
items, including arrays. If oCol/oColB are kept as variants and Set omitted the
same occurs, but usage of an simple literals (eg a number or string) is fine
(eg using o.Add "T",5 is fine).
hope that helps!
d

- FAILS --

Sub Main

Dim o As Object, oCol As Object,oColB As Object
Set o=New Scripting.Dictionary
o.Add "T", New Collection
Set oCol = o.Item("T")
Set oColB = o.Item("T")

End Sub

- ALSO FAILS --

Sub Main

Dim o As Object, oCol,oColB
Set o=New Scripting.Dictionary
o.Add "T", New Collection
oCol = o.Item("T")
oColB = o.Item("T")

End Sub

-- 
You are receiving this mail because:
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 61558] Big complex document : high CPU load and ever increasing memory usage

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61558

--- Comment #28 from Ash  ---

This has been a problem since staroffice and possible. solved by minimizing the
number of graphic elements loaded at startup of a document. For pages that are
not plus minus 10 pages from the image on the screen.

This is a problem on all platforms including Windows 7, 8, 10.

-- 
You are receiving this mail because:
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 61558] Big complex document : high CPU load and ever increasing memory usage

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61558

--- Comment #27 from Ash  ---

This has been a problem since staroffice and possible. solved by minimizing the
number of graphic elements loaded at startup of a document. For pages that are
not plus minus 10 pages from the image on the screen.

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


[Libreoffice-bugs] [Bug 86349] Meta: Context menu bugs and enhancements

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86349
Bug 86349 depends on bug 93837, which changed state.

Bug 93837 Summary: Allow customization of the Context Menus
https://bugs.documentfoundation.org/show_bug.cgi?id=93837

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 99008] FILEOPEN: Writer freezes after scrolling down ODT document

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99008

Timur  changed:

   What|Removed |Added

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

--- Comment #8 from Timur  ---
That's not how LO works. Please don't reopen unless tested with master.

-- 
You are receiving this mail because:
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 99078] bump expat to 2.1.1

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99078

David Tardon  changed:

   What|Removed |Added

 Status|UNCONFIRMED |ASSIGNED
 CC||dtar...@redhat.com
   Assignee|libreoffice-b...@lists.free |dtar...@redhat.com
   |desktop.org |
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 52316] WRITER Page count in Status bar does not respect setting "Print automatically inserted blank pages"; Incorrect value for page count field

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=52316

Timur  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
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 90953] Brochure printing adds blank pages

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=90953

Timur  changed:

   What|Removed |Added

 CC||gti...@gmail.com
   Hardware|x86-64 (AMD64)  |All
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=52
   ||316

--- Comment #2 from Timur  ---
I didn't reproduced it like described. I got 6 pages, 1 blank after 1st page. 
Please attach the PDF you get from Print to PDF.

-- 
You are receiving this mail because:
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 99022] [FORMATTING, FILESAVE] Misplaced first page footer when saved as .doc

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99022

Timur  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
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 99026] [FORMATTING, FILESAVE] Page footer corrupted when saved as .doc

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99026

Timur  changed:

   What|Removed |Added

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

--- Comment #1 from Timur  ---
It's good you reported bugs separately. But: 
- please describe file settings, so that you immediately point a reader, for
example footer here has "same content left/right" on, while header doesn't
- can you prepare a minimal test case where problem is reproduced for each bug,
so that problem singles out? 
- by doing previous, it should be clear whether a problem can be recreated from
scratch or it's related to this particular file. 
- did you search before for already reported bugs? 
- please put similar bugs or bugs with the same file to See Also.

-- 
You are receiving this mail because:
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 99008] FILEOPEN: Writer freezes after scrolling down ODT document

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99008

Stanislav  changed:

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|WORKSFORME  |---
 Ever confirmed|0   |1

--- Comment #7 from Stanislav  ---
(In reply to Timur from comment #6)
> Whether bug will be backported to 5.1 is another issue. Original bug where
> this was fixed should be found and checked.

This issue was reported for the current 5.1.2 release candidate version of
LibreOffice in the hope that it will be fixed in release, didn't it?

I guess it doesn't make sense to close the bug until it is fixed in 5.1.2. So
it's status DOESNOTWORKSFORYOUYET :-) Otherwise there was no sense to report a
bug to the release candidate and certainly makes no sense to fix this bug in
5.1.2 release.

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


[Libreoffice-bugs] [Bug 93403] LO Base grid – change DataField name form reload on button pressed event doesn't refresh data

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93403

--- Comment #18 from Alberto  ---
Hello,

I've noticed that form.reload (inside a macro which must change a query
definition in a base file. The result of the query is displayed in a table in a
form an the macro launches form.reload) doesn't work also in libreoffice
5.1.1.3 64bit on win7 machine.
I've noticed that also reload button (form toolbar) doesn't work, but if I
reoderd the datas the table is regulary updated.

I'm sorry for my terrible english.
Thanks for your help

Alberto

-- 
You are receiving this mail because:
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 99008] FILEOPEN: Writer freezes after scrolling down ODT document

2016-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99008

--- Comment #6 from Timur  ---
Whether bug will be backported to 5.1 is another issue. Original bug where this
was fixed should be found and checked.

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