[Libreoffice-bugs] [Bug 129024] FORMATTING - Preset protected cell background color not displayed in spreadsheet (documentation per Comment 6)

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129024

Heiko Tietze  changed:

   What|Removed |Added

   Keywords||needsUXEval

--- Comment #8 from Heiko Tietze  ---
(In reply to ghaec...@gmail.com from comment #7)
> ...protecting the sheet (when Value highlighting is enabled) changes the 
>  background color of unprotected cells to white

I cannot follow. Please provide step by step like 

1. Insert a number in A1
2. Insert a formula in A2
3. Enable value highlighting (makes font color in a1 blue and a2 green)
4. Enable sheet protection (changes the background into gray but should...?)

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

[Libreoffice-ux-advise] [Bug 129024] FORMATTING - Preset protected cell background color not displayed in spreadsheet (documentation per Comment 6)

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129024

Heiko Tietze  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

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

[Libreoffice-bugs] [Bug 129024] FORMATTING - Preset protected cell background color not displayed in spreadsheet (documentation per Comment 6)

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129024

Heiko Tietze  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

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

[Libreoffice-ux-advise] [Bug 129024] FORMATTING - Preset protected cell background color not displayed in spreadsheet (documentation per Comment 6)

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129024

Heiko Tietze  changed:

   What|Removed |Added

   Keywords||needsUXEval

--- Comment #8 from Heiko Tietze  ---
(In reply to ghaec...@gmail.com from comment #7)
> ...protecting the sheet (when Value highlighting is enabled) changes the 
>  background color of unprotected cells to white

I cannot follow. Please provide step by step like 

1. Insert a number in A1
2. Insert a formula in A2
3. Enable value highlighting (makes font color in a1 blue and a2 green)
4. Enable sheet protection (changes the background into gray but should...?)

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

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

2019-12-02 Thread Stephan Bergmann (via logerrit)
 sd/qa/unit/SVGExportTests.cxx |   28 +---
 1 file changed, 13 insertions(+), 15 deletions(-)

New commits:
commit 6b0d5e7b4bb76be99e5589898e161a20079c68ea
Author: Stephan Bergmann 
AuthorDate: Tue Dec 3 07:15:03 2019 +0100
Commit: Stephan Bergmann 
CommitDate: Tue Dec 3 08:51:15 2019 +0100

Use SAL_STRINGIFY

Change-Id: Id4074390936ddf7051b5d45c76fd8668972e34f8
Reviewed-on: https://gerrit.libreoffice.org/84287
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann 

diff --git a/sd/qa/unit/SVGExportTests.cxx b/sd/qa/unit/SVGExportTests.cxx
index 63883f49c828..f94581cf21c7 100644
--- a/sd/qa/unit/SVGExportTests.cxx
+++ b/sd/qa/unit/SVGExportTests.cxx
@@ -9,6 +9,7 @@
 
 #include 
 
+#include 
 #include 
 #include 
 #include 
@@ -16,9 +17,6 @@
 #include 
 #include 
 
-#include 
-
-#define MAKE_PATH_STRING( path ) BOOST_PP_STRINGIZE( path )
 #define SVG_SVG  *[name()='svg']
 #define SVG_G *[name()='g']
 #define SVG_TEXT *[name()='text']
@@ -97,17 +95,17 @@ public:
 
 svgDoc->name = reinterpret_cast(xmlStrdup(reinterpret_cast(OUStringToOString(maTempFile.GetURL(), RTL_TEXTENCODING_UTF8).getStr(;
 
-assertXPath(svgDoc, MAKE_PATH_STRING( /SVG_SVG ), 1);
-assertXPath(svgDoc, MAKE_PATH_STRING( /SVG_SVG/SVG_G[2] ), "class", 
"SlideGroup");
-assertXPath(svgDoc, MAKE_PATH_STRING( 
/SVG_SVG/SVG_G[2]/SVG_G/SVG_G/SVG_G ), "class", "Slide");
-assertXPath(svgDoc, MAKE_PATH_STRING( 
/SVG_SVG/SVG_G[2]/SVG_G/SVG_G/SVG_G/SVG_G/SVG_G[1] ), "class", "TitleText");
-assertXPath(svgDoc, MAKE_PATH_STRING( 
/SVG_SVG/SVG_G[2]/SVG_G/SVG_G/SVG_G/SVG_G/SVG_G[1]/SVG_G/SVG_TEXT ), "class", 
"TextShape");
-assertXPath(svgDoc, MAKE_PATH_STRING( 
/SVG_SVG/SVG_G[2]/SVG_G/SVG_G/SVG_G/SVG_G/SVG_G[1]/SVG_G/SVG_TEXT/SVG_TSPAN ), 
"class", "TextParagraph");
-assertXPath(svgDoc, MAKE_PATH_STRING( 
/SVG_SVG/SVG_G[2]/SVG_G/SVG_G/SVG_G/SVG_G/SVG_G[1]/SVG_G/SVG_TEXT/SVG_TSPAN ), 
"text-decoration", "underline");
-
-assertXPath(svgDoc, MAKE_PATH_STRING( 
/SVG_SVG/SVG_G[2]/SVG_G/SVG_G/SVG_G/SVG_G/SVG_G[2]/SVG_G/SVG_TEXT ), "class", 
"TextShape");
-assertXPath(svgDoc, MAKE_PATH_STRING( 
/SVG_SVG/SVG_G[2]/SVG_G/SVG_G/SVG_G/SVG_G/SVG_G[2]/SVG_G/SVG_TEXT/SVG_TSPAN ), 
"class", "TextParagraph");
-assertXPath(svgDoc, MAKE_PATH_STRING( 
/SVG_SVG/SVG_G[2]/SVG_G/SVG_G/SVG_G/SVG_G/SVG_G[2]/SVG_G/SVG_TEXT/SVG_TSPAN ), 
"text-decoration", "line-through");
+assertXPath(svgDoc, SAL_STRINGIFY( /SVG_SVG ), 1);
+assertXPath(svgDoc, SAL_STRINGIFY( /SVG_SVG/SVG_G[2] ), "class", 
"SlideGroup");
+assertXPath(svgDoc, SAL_STRINGIFY( /SVG_SVG/SVG_G[2]/SVG_G/SVG_G/SVG_G 
), "class", "Slide");
+assertXPath(svgDoc, SAL_STRINGIFY( 
/SVG_SVG/SVG_G[2]/SVG_G/SVG_G/SVG_G/SVG_G/SVG_G[1] ), "class", "TitleText");
+assertXPath(svgDoc, SAL_STRINGIFY( 
/SVG_SVG/SVG_G[2]/SVG_G/SVG_G/SVG_G/SVG_G/SVG_G[1]/SVG_G/SVG_TEXT ), "class", 
"TextShape");
+assertXPath(svgDoc, SAL_STRINGIFY( 
/SVG_SVG/SVG_G[2]/SVG_G/SVG_G/SVG_G/SVG_G/SVG_G[1]/SVG_G/SVG_TEXT/SVG_TSPAN ), 
"class", "TextParagraph");
+assertXPath(svgDoc, SAL_STRINGIFY( 
/SVG_SVG/SVG_G[2]/SVG_G/SVG_G/SVG_G/SVG_G/SVG_G[1]/SVG_G/SVG_TEXT/SVG_TSPAN ), 
"text-decoration", "underline");
+
+assertXPath(svgDoc, SAL_STRINGIFY( 
/SVG_SVG/SVG_G[2]/SVG_G/SVG_G/SVG_G/SVG_G/SVG_G[2]/SVG_G/SVG_TEXT ), "class", 
"TextShape");
+assertXPath(svgDoc, SAL_STRINGIFY( 
/SVG_SVG/SVG_G[2]/SVG_G/SVG_G/SVG_G/SVG_G/SVG_G[2]/SVG_G/SVG_TEXT/SVG_TSPAN ), 
"class", "TextParagraph");
+assertXPath(svgDoc, SAL_STRINGIFY( 
/SVG_SVG/SVG_G[2]/SVG_G/SVG_G/SVG_G/SVG_G/SVG_G[2]/SVG_G/SVG_TEXT/SVG_TSPAN ), 
"text-decoration", "line-through");
 }
 
 void testSVGExportJavascriptURL()
@@ -119,7 +117,7 @@ public:
 
 // There should be only one child (no link to javascript url)
 assertXPathChildren(svgDoc,
-MAKE_PATH_STRING(/ SVG_SVG / SVG_G[2] / SVG_G / 
SVG_G / SVG_G / SVG_G
+SAL_STRINGIFY(/ SVG_SVG / SVG_G[2] / SVG_G / SVG_G 
/ SVG_G / SVG_G
  / SVG_G[4] / SVG_G),
 1);
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: Branch 'libreoffice-6-4' - sw/source

2019-12-02 Thread Michael Weghorn (via logerrit)
 sw/source/uibase/app/appopt.cxx |   11 +--
 1 file changed, 1 insertion(+), 10 deletions(-)

New commits:
commit 65611a4772b6537658dbbc9392cdac31aef6c7a7
Author: Michael Weghorn 
AuthorDate: Mon Dec 2 10:56:17 2019 +0100
Commit: Michael Weghorn 
CommitDate: Tue Dec 3 08:45:59 2019 +0100

tdf#47583 sw: Don't mix doc print settings into option dialog

Show and manage the default Writer print options in the "Tools" ->
"Options" -> "LibreOfficeDev Writer" -> "Print" dialog and don't
mix in the document-specific values of the currently opened
document, as this is rather confusing as described in tdf#47583.

There is a separate dialog to manage the settings for the currently
opened document available via "File" -> "Printer Settings" -> "Options".

At a quick glance, this also matches the behaviour for Calc, which
doesn't mix in the current doc's settings either.

This handles the case for the Writer-specific print options.
For a more general approach on whether and how document-specific
options should be handled in the "Tools" -> "Options" dialog at all,
there are already tdf#43786 ("Intransparent Use of Options")  and
tdf#105751 ("Separate document saved options from global options in
Options dialog").

Side note: The previous implementation also wasn't synchronizing the
settings both ways. Changes made in the "File" -> "Printer Settings" ->
"Options" dialog did show up in the "Tools" -> "Options" ->
"LibreOfficeDev Writer" -> "Print" dialog at once, but not the other
way around.

The reason is that Writer-specific print settings are currently managed
in two places in DocumentDeviceManager:

(1) its SwPrintData, accessible via
  'DocumentDeviceManager::{g,s}etPrintData'
(2) the print data set in its 'SfxPrinter*'
  ('DocumentDeviceManager::{g,s}etPrinter')

The "File" -> "Printer Settings" -> "Options" dialog uses the settings
from the SfxPrinter. So, to make synchronization work both ways with the
previous implementation, the changes made in the "Tools" -> "Options" dialog
would also have to be applied for (2), not just (1), e.g. this way:

diff --git a/sw/source/uibase/app/appopt.cxx 
b/sw/source/uibase/app/appopt.cxx
index 9c7e24592014..83bae7eb71b9 100644
--- a/sw/source/uibase/app/appopt.cxx
+++ b/sw/source/uibase/app/appopt.cxx
@@ -371,8 +371,15 @@ void SwModule::ApplyItemSet( sal_uInt16 nId, const 
SfxItemSet& rSet )
 const SwAddPrinterItem* pAddPrinterAttr = 
static_cast(pItem);
 *pOpt = *pAddPrinterAttr;

-if(pAppView)
+if(pAppView) {
 
pAppView->GetWrtShell().getIDocumentDeviceAccess().setPrintData( *pOpt );
+SfxPrinter* pDocPrinter = 
pAppView->GetWrtShell().getIDocumentDeviceAccess().getPrinter(false);
+if (pDocPrinter) {
+SfxItemSet aOptions(pDocPrinter->GetOptions());
+aOptions.Put(*pAddPrinterAttr);
+pDocPrinter->SetOptions(aOptions);
+}
+}
 }

 }

(Maybe that should be consolidated at some point in time...)

Change-Id: I74961f4d8947e200b415e6e32e128a0ce3d317f5
Reviewed-on: https://gerrit.libreoffice.org/84212
Tested-by: Jenkins
Reviewed-by: Michael Weghorn 
(cherry picked from commit d23c52cbf7e48130fec1e48bf726c563035a3497)
Reviewed-on: https://gerrit.libreoffice.org/84250

diff --git a/sw/source/uibase/app/appopt.cxx b/sw/source/uibase/app/appopt.cxx
index 9c7e24592014..f071b85997fe 100644
--- a/sw/source/uibase/app/appopt.cxx
+++ b/sw/source/uibase/app/appopt.cxx
@@ -209,13 +209,7 @@ std::unique_ptr SwModule::CreateItemSet( 
sal_uInt16 nId )
 pRet->Put(aGridItem);
 
 // Options for PrintTabPage
-const SwPrintData* pOpt = pAppView ?
-
>GetWrtShell().getIDocumentDeviceAccess().getPrintData() :
-nullptr;
-
-if(!pOpt)
-pOpt = GetPrtOptions(!bTextDialog);
-
+const SwPrintData* pOpt = GetPrtOptions(!bTextDialog);
 SwAddPrinterItem aAddPrinterItem(*pOpt );
 pRet->Put(aAddPrinterItem);
 
@@ -370,9 +364,6 @@ void SwModule::ApplyItemSet( sal_uInt16 nId, const 
SfxItemSet& rSet )
 {
 const SwAddPrinterItem* pAddPrinterAttr = static_cast(pItem);
 *pOpt = *pAddPrinterAttr;
-
-if(pAppView)
-
pAppView->GetWrtShell().getIDocumentDeviceAccess().setPrintData( *pOpt );
 }
 
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 124125] General

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124125

--- Comment #16 from Molly Watson  ---
To bring your printer back online, you can contact experts at Epson Printer
Support experts to help you fix “Epson Printer Offline”. For More Information:-
 https://printeroffline.co/epson-printer/

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

[Libreoffice-bugs] [Bug 128604] Base UI - Incomplete border line in table design panel

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128604

--- Comment #9 from Nukool Chompuparn  ---
Created attachment 156260
  --> https://bugs.documentfoundation.org/attachment.cgi?id=156260=edit
SAL_USE_VCLPLUGIN=gen

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

[Libreoffice-bugs] [Bug 128604] Base UI - Incomplete border line in table design panel

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128604

Nukool Chompuparn  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #8 from Nukool Chompuparn  ---
(In reply to Alex Thurgood from comment #7)
> In all likelihood then a KDE VCL issue.
> 
> If you start LO from a terminal with 
> 
> SAL_USE_VCLPLUGIN=gen
> 
> does the problem go away ?

There was nothing happened. Please see next attachment.

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

[Libreoffice-bugs] [Bug 128972] 'Recent used:' box in Database Wizard is narrow and not expandable

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128972

--- Comment #4 from Nukool Chompuparn  ---
Created attachment 156259
  --> https://bugs.documentfoundation.org/attachment.cgi?id=156259=edit
SAL_VCL_PLUGIN=gen

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

[Libreoffice-bugs] [Bug 128972] 'Recent used:' box in Database Wizard is narrow and not expandable

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128972

Nukool Chompuparn  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 128972] 'Recent used:' box in Database Wizard is narrow and not expandable

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128972

--- Comment #3 from Nukool Chompuparn  ---
(In reply to Alex Thurgood from comment #2)
> @Nukool : Is this with the vcl-kde plugin ?
> 
> What happens if you use the generic vcl backend instead ?
> 
> Start LO from terminal with SAL_VCL_PLUGIN=gen

There was nothing happened. Please see next attachment.

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

[Libreoffice-bugs] [Bug 129033] Navigator's vertical scroll-bar is no longer exhibited under a condition

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129033

aw0440...@gmail.com changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEW

--- Comment #4 from aw0440...@gmail.com ---
Very interesting and informative article.
I have an online Jacket store in the USA named "Top Celebrity Jackets"
We provide you a variety of Hollywood Stars jackets with the same and different
fabrics, colors, and designs.
We also provide attractive discounts to our valuable customers

https://www.topcelebsjackets.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 129035] LO Linux Crash when trying to save to usbmemory (fat).

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129035

--- Comment #5 from Markus Liukka  ---
(In reply to Buovjaga from comment #4)
> (In reply to Markus Liukka from comment #0)
> > Steps to Reproduce:
> > 1.sudo mv /lib/modules/`uname -r`/kernel/fs/fat  ~/.
> > 2.reboot
> > 3.Start LibreOffice.
> > 4.Insert usbstick with fat filesystem.
> > 3.Try to save something to usbstick from LibreOffice (Calc).
> 
> It seems a step is missing. How can I try to save something to a USB stick,
> when I can't even see it after kernel update? And why do you have "2.reboot"
> while saying "before reboot" in the description?

The description was the situation how it happened to  me.
I run pacman -Suy with sudo as usually, new kernel was installed, but not yet
running.

The Steps to reproduce simulates the situation i had, without updating the
kernel (i tried this twice).  The the step 2. maybe is unnecessary, but is
there to be sure the module can't be loaded (not cached).

I don't know why you can't see the device. 

I'm using Arch Linux with deepin-desktop, i can see the inserted usb device
with thunar, deepins filemanager  and appears in file-roller (and LibreOffice).

Hope this clarifies it better.

Do you see your usb memory with dmesg ?
dmesg | tail
[  518.368117] usb-storage 3-4.1.2:1.0: USB Mass Storage device detected
[  518.368349] scsi host12: usb-storage 3-4.1.2:1.0
[  519.392104] scsi 12:0:0:0: Direct-Access Generic  Flash Disk   8.07
PQ: 0 ANSI: 4
[  519.392476] sd 12:0:0:0: Attached scsi generic sg4 type 0
[  519.393110] sd 12:0:0:0: [sdd] 15728640 512-byte logical blocks: (8.05
GB/7.50 GiB)
[  519.393761] sd 12:0:0:0: [sdd] Write Protect is off
[  519.393765] sd 12:0:0:0: [sdd] Mode Sense: 23 00 00 00
[  519.394406] sd 12:0:0:0: [sdd] Write cache: disabled, read cache: enabled,
doesn't support DPO or FUA
[  519.397970]  sdd: sdd1
[  519.400053] sd 12:0:0:0: [sdd] Attached SCSI removable disk

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

[Libreoffice-bugs] [Bug 129145] Some statusbar indicator are not easily visible on Adwaita Dark theme

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129145

--- Comment #7 from Heiko Tietze  ---
(In reply to Hussam Al-Tayeb from comment #6)
> Done. I also added a note in the other bug.

I wish everyone would deal with BZ like you, 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 129145] Some statusbar indicator are not easily visible on Adwaita Dark theme

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129145

--- Comment #6 from Hussam Al-Tayeb  ---
(In reply to Heiko Tietze from comment #4)
> Tango icons (and all other) are dark on white; the only theme that inverts
> this is "Breeze (dark)". I would make this report a duplicate of bug 124969.

Done. I also added a note in the other 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-ux-advise] [Bug 129140] Wording in printer dialog

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129140

Heiko Tietze  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

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

[Libreoffice-bugs] [Bug 129140] Wording in printer dialog

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129140

Heiko Tietze  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

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

[Libreoffice-bugs] [Bug 124969] Dark theme option to read/view/write in LO.

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124969

--- Comment #10 from Hussam Al-Tayeb  ---
As mentioned on bug 129145, some statusbar indicator are not easily visible on
Adwaita Dark theme using Tango LO theme.
Screenshot: https://bugs.documentfoundation.org/attachment.cgi?id=156253
Sugestions: Use white(high contrast) variants of the single page/multiple page,
- and + signs on dark gtk themes and the same for the modified document
indicator.

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

[Libreoffice-ux-advise] [Bug 124969] Dark theme option to read/view/write in LO.

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124969

--- Comment #10 from Hussam Al-Tayeb  ---
As mentioned on bug 129145, some statusbar indicator are not easily visible on
Adwaita Dark theme using Tango LO theme.
Screenshot: https://bugs.documentfoundation.org/attachment.cgi?id=156253
Sugestions: Use white(high contrast) variants of the single page/multiple page,
- and + signs on dark gtk themes and the same for the modified document
indicator.

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

[Libreoffice-bugs] [Bug 129032] Missing warning when renaming page with same name

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129032

Heiko Tietze  changed:

   What|Removed |Added

   Keywords|needsUXEval |
 CC|libreoffice-ux-advise@lists |heiko.tietze@documentfounda
   |.freedesktop.org|tion.org

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

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

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86066
Bug 86066 depends on bug 129145, which changed state.

Bug 129145 Summary: Some statusbar indicator are not easily visible on Adwaita 
Dark theme
https://bugs.documentfoundation.org/show_bug.cgi?id=129145

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 122247] [META] Icon requests

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122247
Bug 122247 depends on bug 129145, which changed state.

Bug 129145 Summary: Some statusbar indicator are not easily visible on Adwaita 
Dark theme
https://bugs.documentfoundation.org/show_bug.cgi?id=129145

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 129145] Some statusbar indicator are not easily visible on Adwaita Dark theme

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129145

Hussam Al-Tayeb  changed:

   What|Removed |Added

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

--- Comment #5 from Hussam Al-Tayeb  ---


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

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

[Libreoffice-ux-advise] [Bug 129032] Missing warning when renaming page with same name

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129032

Heiko Tietze  changed:

   What|Removed |Added

   Keywords|needsUXEval |
 CC|libreoffice-ux-advise@lists |heiko.tietze@documentfounda
   |.freedesktop.org|tion.org

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

[Libreoffice-ux-advise] [Bug 124969] Dark theme option to read/view/write in LO.

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124969

Hussam Al-Tayeb  changed:

   What|Removed |Added

 CC||ht990...@gmx.com

--- Comment #9 from Hussam Al-Tayeb  ---
*** Bug 129145 has been marked as a duplicate of this bug. ***

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

[Libreoffice-bugs] [Bug 124969] Dark theme option to read/view/write in LO.

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124969

Hussam Al-Tayeb  changed:

   What|Removed |Added

 CC||ht990...@gmx.com

--- Comment #9 from Hussam Al-Tayeb  ---
*** Bug 129145 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 129153] Show MIME type icon in recent file list

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129153

Heiko Tietze  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC|libreoffice-ux-advise@lists |heiko.tietze@documentfounda
   |.freedesktop.org|tion.org
   Keywords|needsUXEval |
 Ever confirmed|0   |1

--- Comment #3 from Heiko Tietze  ---
Yes. It makes sense where icons in menus are enabled, at least.

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

[Libreoffice-ux-advise] [Bug 129153] Show MIME type icon in recent file list

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129153

Heiko Tietze  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC|libreoffice-ux-advise@lists |heiko.tietze@documentfounda
   |.freedesktop.org|tion.org
   Keywords|needsUXEval |
 Ever confirmed|0   |1

--- Comment #3 from Heiko Tietze  ---
Yes. It makes sense where icons in menus are enabled, at least.

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

[Libreoffice-bugs] [Bug 129145] Some statusbar indicator are not easily visible on Adwaita Dark theme

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129145

Heiko Tietze  changed:

   What|Removed |Added

  Component|graphics stack  |UI
   Keywords|needsUXEval |

--- Comment #4 from Heiko Tietze  ---
Tango icons (and all other) are dark on white; the only theme that inverts this
is "Breeze (dark)". I would make this report a duplicate of bug 124969.

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

[Libreoffice-bugs] [Bug 103656] Read-only bar is unreadable when using dark theme

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103656

--- Comment #10 from Heiko Tietze  ---
(In reply to Buovjaga from comment #8)
> I launched a VM with GNOME and changed the theme to a dark one and I confirm
> the problem.

Please try again with 6.x

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

[Libreoffice-bugs] [Bug 129146] Could not start printer when attempting to print

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129146

Dieter Praas  changed:

   What|Removed |Added

 CC||dgp-m...@gmx.de
 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #2 from Dieter Praas  ---
Thank you for reporting the bug. Could you please try to reproduce it with the
latest version of LibreOffice from
https://www.libreoffice.org/download/libreoffice-fresh/ ? I have set the bug's
status to 'NEEDINFO'. Please change it back to 'UNCONFIRMED' if the bug is
still present in the latest version. Change to RESOLVED WORKSFORME, if the
problem went away.

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

[Libreoffice-commits] core.git: Branch 'libreoffice-6-4' - cui/uiconfig

2019-12-02 Thread andreas kainz (via logerrit)
 cui/uiconfig/ui/optfltrpage.ui |   16 
 1 file changed, 8 insertions(+), 8 deletions(-)

New commits:
commit c931b82115e86364acc048299717f08054af5d5e
Author: andreas kainz 
AuthorDate: Mon Dec 2 20:10:24 2019 +0100
Commit: andreas_kainz 
CommitDate: Tue Dec 3 08:04:04 2019 +0100

tdf#128924 VBA Properties Options remove 97/2000/XP

Change-Id: I52e0e132e752eb90bb50f292b0ee08cfa167a9c7
Reviewed-on: https://gerrit.libreoffice.org/84268
Tested-by: Jenkins
Reviewed-by: andreas_kainz 

diff --git a/cui/uiconfig/ui/optfltrpage.ui b/cui/uiconfig/ui/optfltrpage.ui
index eb58ced3d63b..55518d7aed9c 100644
--- a/cui/uiconfig/ui/optfltrpage.ui
+++ b/cui/uiconfig/ui/optfltrpage.ui
@@ -23,7 +23,7 @@
   
 True
 False
-6
+3
 
   
 Load Basic _code
@@ -47,7 +47,7 @@
 True
 True
 False
-12
+18
 True
 0
 True
@@ -84,7 +84,7 @@
   
 True
 False
-Microsoft Word 97/2000/XP
+Microsoft Word
 
   
 
@@ -113,7 +113,7 @@
   
 True
 False
-6
+3
 
   
 Lo_ad Basic code
@@ -137,7 +137,7 @@
 True
 True
 False
-12
+18
 True
 0
 True
@@ -174,7 +174,7 @@
   
 True
 False
-Microsoft Excel 97/2000/XP
+Microsoft Excel
 
   
 
@@ -203,7 +203,7 @@
   
 True
 False
-6
+3
 
   
 Load Ba_sic code
@@ -246,7 +246,7 @@
   
 True
 False
-Microsoft PowerPoint 97/2000/XP
+Microsoft PowerPoint
 
   
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: cui/uiconfig

2019-12-02 Thread andreas kainz (via logerrit)
 cui/uiconfig/ui/optfltrpage.ui |   16 
 1 file changed, 8 insertions(+), 8 deletions(-)

New commits:
commit e849867726fe1112a4bce71bf21a5e3b25c5a0e8
Author: andreas kainz 
AuthorDate: Mon Dec 2 20:10:24 2019 +0100
Commit: andreas_kainz 
CommitDate: Tue Dec 3 08:03:56 2019 +0100

tdf#128924 VBA Properties Options remove 97/2000/XP

Change-Id: I52e0e132e752eb90bb50f292b0ee08cfa167a9c7
Reviewed-on: https://gerrit.libreoffice.org/84267
Tested-by: Jenkins
Reviewed-by: andreas_kainz 

diff --git a/cui/uiconfig/ui/optfltrpage.ui b/cui/uiconfig/ui/optfltrpage.ui
index eb58ced3d63b..55518d7aed9c 100644
--- a/cui/uiconfig/ui/optfltrpage.ui
+++ b/cui/uiconfig/ui/optfltrpage.ui
@@ -23,7 +23,7 @@
   
 True
 False
-6
+3
 
   
 Load Basic _code
@@ -47,7 +47,7 @@
 True
 True
 False
-12
+18
 True
 0
 True
@@ -84,7 +84,7 @@
   
 True
 False
-Microsoft Word 97/2000/XP
+Microsoft Word
 
   
 
@@ -113,7 +113,7 @@
   
 True
 False
-6
+3
 
   
 Lo_ad Basic code
@@ -137,7 +137,7 @@
 True
 True
 False
-12
+18
 True
 0
 True
@@ -174,7 +174,7 @@
   
 True
 False
-Microsoft Excel 97/2000/XP
+Microsoft Excel
 
   
 
@@ -203,7 +203,7 @@
   
 True
 False
-6
+3
 
   
 Load Ba_sic code
@@ -246,7 +246,7 @@
   
 True
 False
-Microsoft PowerPoint 97/2000/XP
+Microsoft PowerPoint
 
   
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 129145] Some statusbar indicator are not easily visible on Adwaita Dark theme

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129145

--- Comment #3 from Hussam Al-Tayeb  ---
Tango. It is used by default on gtk environments.

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

[Libreoffice-commits] core.git: Branch 'libreoffice-6-4' - vcl/inc vcl/source

2019-12-02 Thread Samuel Mehrbrodt (via logerrit)
 vcl/inc/listbox.hxx|1 +
 vcl/source/control/combobox.cxx|2 +-
 vcl/source/control/imp_listbox.cxx |5 -
 3 files changed, 6 insertions(+), 2 deletions(-)

New commits:
commit e9ced64ffac0752e2bbd2879ea267116502606fc
Author: Samuel Mehrbrodt 
AuthorDate: Wed Nov 27 16:43:19 2019 +0100
Commit: Samuel Mehrbrodt 
CommitDate: Tue Dec 3 07:46:45 2019 +0100

tdf#129043 Correctly deliver combo box events when used with keyboard

Change-Id: I82186f999e74be4aebd59d77666390a7d5e8ad81
Reviewed-on: https://gerrit.libreoffice.org/83923
Tested-by: Jenkins
Reviewed-by: Samuel Mehrbrodt 
(cherry picked from commit 7de9417d5f65d35227c7f80f6d587c2a56bde4e0)
Reviewed-on: https://gerrit.libreoffice.org/83982

diff --git a/vcl/inc/listbox.hxx b/vcl/inc/listbox.hxx
index 1ee124423fc1..8faed20374e8 100644
--- a/vcl/inc/listbox.hxx
+++ b/vcl/inc/listbox.hxx
@@ -220,6 +220,7 @@ private:
 bool mbCenter : 1;   ///< center Text output
 bool mbRight : 1;///< right align Text output
 bool mbEdgeBlending : 1;
+bool mbIsComboboxDropdown : 1;
 
 Link  maScrollHdl;
 Link  maSelectHdl;
diff --git a/vcl/source/control/combobox.cxx b/vcl/source/control/combobox.cxx
index 4b19c42ad5c4..710b4a0bac3e 100644
--- a/vcl/source/control/combobox.cxx
+++ b/vcl/source/control/combobox.cxx
@@ -745,7 +745,7 @@ bool ComboBox::EventNotify( NotifyEvent& rNEvt )
 
 case KEY_RETURN:
 {
-if ((rNEvt.GetWindow() == m_pImpl->m_pSubEdit) && 
IsInDropDown())
+if (rNEvt.GetWindow() == m_pImpl->m_pSubEdit)
 {
 m_pImpl->m_pImplLB->ProcessKeyInput( aKeyEvt );
 bDone = true;
diff --git a/vcl/source/control/imp_listbox.cxx 
b/vcl/source/control/imp_listbox.cxx
index fb6da7b2c6e6..e87281447bf1 100644
--- a/vcl/source/control/imp_listbox.cxx
+++ b/vcl/source/control/imp_listbox.cxx
@@ -483,6 +483,7 @@ ImplListBoxWindow::ImplListBoxWindow( vcl::Window* pParent, 
WinBits nWinStyle )
 mbCenter= ( nWinStyle & WB_CENTER );
 mbSimpleMode= ( nWinStyle & WB_SIMPLEMODE );
 mbSort  = ( nWinStyle & WB_SORT );
+mbIsComboboxDropdown = ( nWinStyle & WB_DROPDOWN );
 mbEdgeBlending  = false;
 
 // pb: #106948# explicit mirroring for calc
@@ -1633,7 +1634,9 @@ bool ImplListBoxWindow::ProcessKeyInput( const KeyEvent& 
rKEvt )
 mnCurrentPos = nSelect;
 if(SelectEntries( nSelect, eLET, bShift, bCtrl, bCurPosChange))
 {
-mbTravelSelect = true;
+// tdf#129043 Correctly deliver events when changing values with 
arrow keys in combobox
+if (mbIsComboboxDropdown && IsReallyVisible())
+mbTravelSelect = true;
 mnSelectModifier = rKEvt.GetKeyCode().GetModifier();
 ImplCallSelect();
 mbTravelSelect = false;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 129035] LO Linux Crash when trying to save to usbmemory (fat).

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129035

Buovjaga  changed:

   What|Removed |Added

 CC||ilmari.lauhakangas@libreoff
   ||ice.org

--- Comment #4 from Buovjaga  ---
(In reply to Markus Liukka from comment #0)
> Steps to Reproduce:
> 1.sudo mv /lib/modules/`uname -r`/kernel/fs/fat  ~/.
> 2.reboot
> 3.Start LibreOffice.
> 4.Insert usbstick with fat filesystem.
> 3.Try to save something to usbstick from LibreOffice (Calc).

It seems a step is missing. How can I try to save something to a USB stick,
when I can't even see it after kernel update? And why do you have "2.reboot"
while saying "before reboot" in the description?

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

[Libreoffice-bugs] [Bug 70710] filled areas are not filled for WMF images

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=70710

Timur  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 68810] VIEWING: WMF image is black

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=68810

Timur  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 129145] Some statusbar indicator are not easily visible on Adwaita Dark theme

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129145

--- Comment #2 from Rizal Muttaqin  ---
(In reply to Hussam Al-Tayeb from comment #0)
> Created attachment 156253 [details]
> status bar
> 
> Some statusbar indicator are not easily visible on Adwaita Dark theme.
> See attached screeshot.
> Sugestions: Use white(high contrast) variants of the single page/multiple
> page, - and + signs on dark gtk themes and the same for the modified
> document indicator.

Please inform us what icon theme are you using?

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

[Libreoffice-bugs] [Bug 68810] VIEWING: WMF image is black

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=68810

Timur  changed:

   What|Removed |Added

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

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

[Libreoffice-commits] core.git: desktop/qa desktop/source include/LibreOfficeKit include/vcl sc/inc sc/source

2019-12-02 Thread Marco Cecchetti (via logerrit)
 desktop/qa/desktop_lib/test_desktop_lib.cxx |3 ++-
 desktop/source/lib/init.cxx |   17 +
 include/LibreOfficeKit/LibreOfficeKit.h |3 +++
 include/LibreOfficeKit/LibreOfficeKit.hxx   |   10 ++
 include/vcl/ITiledRenderable.hxx|5 +
 sc/inc/docuno.hxx   |3 +++
 sc/source/ui/app/inputhdl.cxx   |   16 
 sc/source/ui/inc/inputhdl.hxx   |2 ++
 sc/source/ui/unoobj/docuno.cxx  |   10 ++
 9 files changed, 68 insertions(+), 1 deletion(-)

New commits:
commit e5367efbd15e1d97f8d4de232df1c325d8fff2b8
Author: Marco Cecchetti 
AuthorDate: Wed Nov 27 22:53:38 2019 +0100
Commit: Miklos Vajna 
CommitDate: Tue Dec 3 07:28:36 2019 +0100

lok: formula bar: function completion

lok clients can request to complete a function name partially typed in
the formula input box.

Change-Id: I8771fd4d2a7f79c20138d9183162da23a92f2ba4
Reviewed-on: https://gerrit.libreoffice.org/83984
Reviewed-by: Marco Cecchetti 
Tested-by: Marco Cecchetti 
Reviewed-on: https://gerrit.libreoffice.org/84258
Reviewed-by: Miklos Vajna 
Tested-by: Jenkins

diff --git a/desktop/qa/desktop_lib/test_desktop_lib.cxx 
b/desktop/qa/desktop_lib/test_desktop_lib.cxx
index 08fa6a54ab62..1effbc2669b8 100644
--- a/desktop/qa/desktop_lib/test_desktop_lib.cxx
+++ b/desktop/qa/desktop_lib/test_desktop_lib.cxx
@@ -2751,10 +2751,11 @@ void DesktopLOKTest::testABI()
 CPPUNIT_ASSERT_EQUAL(documentClassOffset(56), offsetof(struct 
_LibreOfficeKitDocumentClass, sendDialogEvent));
 CPPUNIT_ASSERT_EQUAL(documentClassOffset(57), offsetof(struct 
_LibreOfficeKitDocumentClass, renderFontOrientation));
 CPPUNIT_ASSERT_EQUAL(documentClassOffset(58), offsetof(struct 
_LibreOfficeKitDocumentClass, paintWindowForView));
+CPPUNIT_ASSERT_EQUAL(documentClassOffset(59), offsetof(struct 
_LibreOfficeKitDocumentClass, completeFunction));
 
 // Extending is fine, update this, and add new assert for the offsetof the
 // new method
-CPPUNIT_ASSERT_EQUAL(documentClassOffset(59), sizeof(struct 
_LibreOfficeKitDocumentClass));
+CPPUNIT_ASSERT_EQUAL(documentClassOffset(60), sizeof(struct 
_LibreOfficeKitDocumentClass));
 }
 
 CPPUNIT_TEST_SUITE_REGISTRATION(DesktopLOKTest);
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx
index 7fb08f0bec15..7ecc9fcdf78b 100644
--- a/desktop/source/lib/init.cxx
+++ b/desktop/source/lib/init.cxx
@@ -933,6 +933,7 @@ static size_t 
doc_renderShapeSelection(LibreOfficeKitDocument* pThis, char** pOu
 static void doc_resizeWindow(LibreOfficeKitDocument* pThis, unsigned 
nLOKWindowId,
  const int nWidth, const int nHeight);
 
+static void doc_completeFunction(LibreOfficeKitDocument* pThis, int nIndex);
 } // extern "C"
 
 namespace {
@@ -1044,6 +1045,7 @@ LibLODocument_Impl::LibLODocument_Impl(const 
uno::Reference postWindowGestureEvent = doc_postWindowGestureEvent;
 
 m_pDocumentClass->createViewWithOptions = doc_createViewWithOptions;
+m_pDocumentClass->completeFunction = doc_completeFunction;
 
 gDocumentClass = m_pDocumentClass;
 }
@@ -5144,6 +5146,21 @@ static void doc_resizeWindow(LibreOfficeKitDocument* 
/*pThis*/, unsigned nLOKWin
 pWindow->SetSizePixel(Size(nWidth, nHeight));
 }
 
+static void doc_completeFunction(LibreOfficeKitDocument* pThis, int nIndex)
+{
+SolarMutexGuard aGuard;
+SetLastExceptionMsg();
+
+ITiledRenderable* pDoc = getTiledRenderable(pThis);
+if (!pDoc)
+{
+SetLastExceptionMsg("Document doesn't support tiled rendering");
+return;
+}
+
+pDoc->completeFunction(nIndex);
+}
+
 static char* lo_getError (LibreOfficeKit *pThis)
 {
 comphelper::ProfileZone aZone("lo_getError");
diff --git a/include/LibreOfficeKit/LibreOfficeKit.h 
b/include/LibreOfficeKit/LibreOfficeKit.h
index a486886c15de..b4278625ccb0 100644
--- a/include/LibreOfficeKit/LibreOfficeKit.h
+++ b/include/LibreOfficeKit/LibreOfficeKit.h
@@ -436,6 +436,9 @@ struct _LibreOfficeKitDocumentClass
 const double dpiscale,
 int viewId);
 
+/// @see lok::Document::completeFunction().
+void (*completeFunction) (LibreOfficeKitDocument* pThis, int nIndex);
+
 #endif // defined LOK_USE_UNSTABLE_API || defined LIBO_INTERNAL_ONLY
 };
 
diff --git a/include/LibreOfficeKit/LibreOfficeKit.hxx 
b/include/LibreOfficeKit/LibreOfficeKit.hxx
index 318bf943cca9..19f0b2663552 100644
--- a/include/LibreOfficeKit/LibreOfficeKit.hxx
+++ b/include/LibreOfficeKit/LibreOfficeKit.hxx
@@ -757,6 +757,16 @@ public:
 mpDoc->pClass->removeTextContext(mpDoc, nWindowId, nBefore, nAfter);
 }
 
+/**
+ * Select the Calc function to be pasted into the formula input box
+ *
+ * @param nIndex is the index of the selected function
+ */
+void 

[Libreoffice-bugs] [Bug 128354] Graphics in Impress are randomly replaced by other graphics in the same file

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128354

Timur  changed:

   What|Removed |Added

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

--- Comment #3 from Timur  ---
In that case, we'll close this. 
If issue repeated, first reset user profile and see if persists. 
Also test with and without OpenGL. 
Should you find reproducible steps, please write and set Unconfirmed.

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

[Libreoffice-bugs] [Bug 128602] Characters show out side code area panel and code line panel

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128602

--- Comment #7 from Stanislaus J. Pinasthika  ---
Thank you for reporting the bug, the problem does not reproducible in 
Version: 6.5.0.0.alpha0+
Build ID: 5030be4e85179147476b1e441eb618fb6ed58235
CPU threads: 8; OS: Linux 5.0; UI render: default; VCL: kf5; 
TinderBox: Linux-rpm_deb-x86_64@86-TDF, Branch:master, Time:
2019-11-28_20:14:48
Locale: id-ID (id_ID.UTF-8); UI-Language: en-US
Calc: CL

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

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

2019-12-02 Thread Julien Nabet (via logerrit)
 forms/source/component/Columns.cxx |   77 ++---
 1 file changed, 39 insertions(+), 38 deletions(-)

New commits:
commit 9bbdf2273394f7b9d619973cb8a73e7f846c334f
Author: Julien Nabet 
AuthorDate: Mon Dec 2 20:16:14 2019 +0100
Commit: Noel Grandin 
CommitDate: Tue Dec 3 07:15:03 2019 +0100

Use initializer set instead of using several inserts (forms/Columns)

while at it, replace "EnableVisible" by "PROPERTY_ENABLEVISIBLE"

Change-Id: Ibde140e84acdecd02a67e2cfb7f422098afad4d1
Reviewed-on: https://gerrit.libreoffice.org/84269
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/forms/source/component/Columns.cxx 
b/forms/source/component/Columns.cxx
index 8ed4217b1c75..a911e3ff2f86 100644
--- a/forms/source/component/Columns.cxx
+++ b/forms/source/component/Columns.cxx
@@ -292,44 +292,45 @@ void OGridColumn::disposing()
 void OGridColumn::clearAggregateProperties( Sequence< Property >& _rProps, 
bool bAllowDropDown )
 {
 // some properties are not to be exposed to the outer world
-::std::set< OUString > aForbiddenProperties;
-aForbiddenProperties.insert( PROPERTY_ALIGN );
-aForbiddenProperties.insert( PROPERTY_AUTOCOMPLETE );
-aForbiddenProperties.insert( PROPERTY_BACKGROUNDCOLOR );
-aForbiddenProperties.insert( PROPERTY_BORDER );
-aForbiddenProperties.insert( PROPERTY_BORDERCOLOR );
-aForbiddenProperties.insert( PROPERTY_ECHO_CHAR );
-aForbiddenProperties.insert( PROPERTY_FILLCOLOR );
-aForbiddenProperties.insert( PROPERTY_FONT );
-aForbiddenProperties.insert( PROPERTY_FONT_NAME );
-aForbiddenProperties.insert( PROPERTY_FONT_STYLENAME );
-aForbiddenProperties.insert( PROPERTY_FONT_FAMILY );
-aForbiddenProperties.insert( PROPERTY_FONT_CHARSET );
-aForbiddenProperties.insert( PROPERTY_FONT_HEIGHT );
-aForbiddenProperties.insert( PROPERTY_FONT_WEIGHT );
-aForbiddenProperties.insert( PROPERTY_FONT_SLANT );
-aForbiddenProperties.insert( PROPERTY_FONT_UNDERLINE );
-aForbiddenProperties.insert( PROPERTY_FONT_STRIKEOUT );
-aForbiddenProperties.insert( PROPERTY_FONT_WORDLINEMODE );
-aForbiddenProperties.insert( PROPERTY_TEXTLINECOLOR );
-aForbiddenProperties.insert( PROPERTY_FONTEMPHASISMARK );
-aForbiddenProperties.insert( PROPERTY_FONTRELIEF );
-aForbiddenProperties.insert( PROPERTY_HARDLINEBREAKS );
-aForbiddenProperties.insert( PROPERTY_HSCROLL );
-aForbiddenProperties.insert( PROPERTY_LABEL );
-aForbiddenProperties.insert( PROPERTY_LINECOLOR );
-aForbiddenProperties.insert( PROPERTY_MULTISELECTION );
-aForbiddenProperties.insert( PROPERTY_PRINTABLE );
-aForbiddenProperties.insert( PROPERTY_TABINDEX );
-aForbiddenProperties.insert( PROPERTY_TABSTOP );
-aForbiddenProperties.insert( PROPERTY_TEXTCOLOR );
-aForbiddenProperties.insert( PROPERTY_VSCROLL );
-aForbiddenProperties.insert( PROPERTY_CONTROLLABEL );
-aForbiddenProperties.insert( PROPERTY_RICH_TEXT );
-aForbiddenProperties.insert( PROPERTY_VERTICAL_ALIGN );
-aForbiddenProperties.insert( PROPERTY_IMAGE_URL );
-aForbiddenProperties.insert( PROPERTY_IMAGE_POSITION );
-aForbiddenProperties.insert( OUString( "EnableVisible" ) );
+::std::set< OUString > aForbiddenProperties {
+  PROPERTY_ALIGN,
+  PROPERTY_AUTOCOMPLETE,
+  PROPERTY_BACKGROUNDCOLOR,
+  PROPERTY_BORDER,
+  PROPERTY_BORDERCOLOR,
+  PROPERTY_ECHO_CHAR,
+  PROPERTY_FILLCOLOR,
+  PROPERTY_FONT,
+  PROPERTY_FONT_NAME,
+  PROPERTY_FONT_STYLENAME,
+  PROPERTY_FONT_FAMILY,
+  PROPERTY_FONT_CHARSET,
+  PROPERTY_FONT_HEIGHT,
+  PROPERTY_FONT_WEIGHT,
+  PROPERTY_FONT_SLANT,
+  PROPERTY_FONT_UNDERLINE,
+  PROPERTY_FONT_STRIKEOUT,
+  PROPERTY_FONT_WORDLINEMODE,
+  PROPERTY_TEXTLINECOLOR,
+  PROPERTY_FONTEMPHASISMARK,
+  PROPERTY_FONTRELIEF,
+  PROPERTY_HARDLINEBREAKS,
+  PROPERTY_HSCROLL,
+  PROPERTY_LABEL,
+  PROPERTY_LINECOLOR,
+  PROPERTY_MULTISELECTION,
+  PROPERTY_PRINTABLE,
+  PROPERTY_TABINDEX,
+  PROPERTY_TABSTOP,
+  PROPERTY_TEXTCOLOR,
+  PROPERTY_VSCROLL,
+  PROPERTY_CONTROLLABEL,
+  PROPERTY_RICH_TEXT,
+  PROPERTY_VERTICAL_ALIGN,
+  PROPERTY_IMAGE_URL,
+  PROPERTY_IMAGE_POSITION,
+  PROPERTY_ENABLEVISIBLE
+};
 if ( !bAllowDropDown )
 aForbiddenProperties.insert( PROPERTY_DROPDOWN );
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-commits] core.git: extensions/source sd/source vcl/unx

2019-12-02 Thread Alex Henrie (via logerrit)
 extensions/source/update/feed/updatefeed.cxx   |5 -
 sd/source/core/CustomAnimationPreset.cxx   |1 +
 sd/source/filter/eppt/pptx-epptooxml.cxx   |2 +-
 sd/source/ui/slidesorter/cache/SlsRequestQueue.cxx |2 ++
 vcl/unx/generic/app/i18n_xkb.cxx   |1 +
 vcl/unx/generic/printer/ppdparser.cxx  |2 +-
 6 files changed, 6 insertions(+), 7 deletions(-)

New commits:
commit 94f0c6dfdec91d9f1d6dccd41315bd986c0ad590
Author: Alex Henrie 
AuthorDate: Mon Dec 2 19:45:14 2019 -0700
Commit: Noel Grandin 
CommitDate: Tue Dec 3 07:12:36 2019 +0100

Fix compilation with `make -- dbglevel=2`

Change-Id: Icdf93751b00453eb033fd577413bd6bc3527f87c
Reviewed-on: https://gerrit.libreoffice.org/84286
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/extensions/source/update/feed/updatefeed.cxx 
b/extensions/source/update/feed/updatefeed.cxx
index 8d00603cae75..15152721c35d 100644
--- a/extensions/source/update/feed/updatefeed.cxx
+++ b/extensions/source/update/feed/updatefeed.cxx
@@ -88,25 +88,20 @@ public:
 m_xStream(rxStream) {};
 
 virtual sal_Int32 SAL_CALL readBytes(uno::Sequence< sal_Int8 >& aData, 
sal_Int32 nBytesToRead)
-throw (io::NotConnectedException, io::BufferSizeExceededException, 
io::IOException, uno::RuntimeException)
 {
 sal_Int32 n = m_xStream->readBytes(aData, nBytesToRead);
 return n;
 };
 virtual sal_Int32 SAL_CALL readSomeBytes(uno::Sequence< sal_Int8 >& aData, 
sal_Int32 nMaxBytesToRead)
-throw (io::NotConnectedException, io::BufferSizeExceededException, 
io::IOException, uno::RuntimeException)
 {
 sal_Int32 n = m_xStream->readSomeBytes(aData, nMaxBytesToRead);
 return n;
 };
 virtual void SAL_CALL skipBytes( sal_Int32 nBytesToSkip )
-throw (io::NotConnectedException, io::BufferSizeExceededException, 
io::IOException, uno::RuntimeException)
 { m_xStream->skipBytes(nBytesToSkip); };
 virtual sal_Int32 SAL_CALL available()
-throw (io::NotConnectedException, io::IOException, 
uno::RuntimeException)
 { return m_xStream->available(); };
 virtual void SAL_CALL closeInput( )
-throw (io::NotConnectedException, io::IOException, 
uno::RuntimeException)
 {};
 };
 
diff --git a/sd/source/core/CustomAnimationPreset.cxx 
b/sd/source/core/CustomAnimationPreset.cxx
index ed20faf74b3b..1f16b3724fc4 100644
--- a/sd/source/core/CustomAnimationPreset.cxx
+++ b/sd/source/core/CustomAnimationPreset.cxx
@@ -18,6 +18,7 @@
  */
 
 #include 
+#include 
 
 #include 
 #include 
diff --git a/sd/source/filter/eppt/pptx-epptooxml.cxx 
b/sd/source/filter/eppt/pptx-epptooxml.cxx
index 9789e20a343c..9d76dbe6ffe3 100644
--- a/sd/source/filter/eppt/pptx-epptooxml.cxx
+++ b/sd/source/filter/eppt/pptx-epptooxml.cxx
@@ -2047,7 +2047,7 @@ void dump_pset(Reference< XPropertySet > const& rXPropSet)
 else if (value >>= boolValue)
 SAL_INFO("sd.eppt", name << " = " << boolValue << "   
(bool)");
 else if (value >>= pointValue)
-SAL_INFO("sd.eppt", name << " = " << pointValue << "
(RectanglePoint)");
+SAL_INFO("sd.eppt", name << " = " << static_cast(pointValue) 
<< "(RectanglePoint)");
 else
 SAL_INFO("sd.eppt", "???  ");
 }
diff --git a/sd/source/ui/slidesorter/cache/SlsRequestQueue.cxx 
b/sd/source/ui/slidesorter/cache/SlsRequestQueue.cxx
index bf387210f0c8..ddf609af0c62 100644
--- a/sd/source/ui/slidesorter/cache/SlsRequestQueue.cxx
+++ b/sd/source/ui/slidesorter/cache/SlsRequestQueue.cxx
@@ -19,6 +19,8 @@
 
 #include "SlsRequestQueue.hxx"
 
+#include 
+
 #include 
 
 #include 
diff --git a/vcl/unx/generic/app/i18n_xkb.cxx b/vcl/unx/generic/app/i18n_xkb.cxx
index 8fe7808e3a96..06fc520fe229 100644
--- a/vcl/unx/generic/app/i18n_xkb.cxx
+++ b/vcl/unx/generic/app/i18n_xkb.cxx
@@ -18,6 +18,7 @@
  */
 
 #include 
+#include 
 
 #include 
 #include 
diff --git a/vcl/unx/generic/printer/ppdparser.cxx 
b/vcl/unx/generic/printer/ppdparser.cxx
index fde5c08c8274..0dd380d7c8f7 100644
--- a/vcl/unx/generic/printer/ppdparser.cxx
+++ b/vcl/unx/generic/printer/ppdparser.cxx
@@ -760,7 +760,7 @@ PPDParser::PPDParser( const OUString& rFile ) :
 << " Keys from PPD " << m_aFile << ":");
 for (auto const& key : m_aKeys)
 {
-const PPDKey* pKey = key.second;
+const PPDKey* pKey = key.second.get();
 char const* pSetupType = "";
 switch( pKey->m_eSetupType )
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

[Libreoffice-bugs] [Bug 129155] CALC: UI: showing wrong formula in formula bar

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129155

--- Comment #1 from b.  ---
Created attachment 156258
  --> https://bugs.documentfoundation.org/attachment.cgi?id=156258=edit
6_2_8_2_showing_wrong_formula

see bug report, stepping through the three red marked cells with the cursor
keys shows formulae in the formula bar which don't fully match the formula in
the cells.

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

[Libreoffice-bugs] [Bug 129155] New: CALC: UI: showing wrong formula in formula bar

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129155

Bug ID: 129155
   Summary: CALC: UI: showing wrong formula in formula bar
   Product: LibreOffice
   Version: 4.1.6.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: newbie...@gmx.de

Description:
hello @all, 

funny, i think i reported a bug yesterday, can't find it today, second try,
sorry if double ... 

take file from next comment, click in B1, enlarge formula-bar (triangle on
right end), step with the cursor keys! to B2, B3, B4, and watch the formula
*not changing*. proceed to B5, formula disappears, and go up again, another -
quite similar - formula appears, and again remains unchanged while you
cursor-step to B3, B2. either may be right, the formula shown or the results,
not both. 

the correct - and different - formulae are correctly stored for the cells, you
can check with F2, but are presented wrong to the user. 

such behavior irritates unsuspecting users and is likely to raise doubts about
the integrity of the program. 

entering the cells by mouseclick worked correctly - on my tries - as well as
different versions of calc produced slightly different misbehaviour, but all
from 4.1.6.2 to 6.5.0.0alpha0+ failed, even in the safe settings without CL and
'unthreaded'. 

have fun to dig down ... 

observed side effect: inserting blank cells / rows between the red cells blocks
the effect, hiding those rows let's it step in again ... 

Steps to Reproduce:
see above description and file in next comment, i tested with a 64bit win
machine, can't yet tell about lin or 32-bit versions. 

Actual Results:
wrong formula shown in the formula bar

Expected Results:
the same formula in the bar as you see in the cell when editing (F2)


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 6.2.8.2 (x64)
Build ID: f82ddfca21ebc1e222a662a32b25c0c9d20169ee
CPU threads: 8; OS: Windows 6.1; UI render: GL; VCL: win; 
Locale: de-DE (de_DE); UI-Language: en-US
Calc: 

version with which the file was created, other versions fail too

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

[Libreoffice-bugs] [Bug 129154] Tabbed interface: Remove printer name in Print Directly command under File tab

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129154

--- Comment #1 from Rizal Muttaqin  ---
Created attachment 156257
  --> https://bugs.documentfoundation.org/attachment.cgi?id=156257=edit
Printer name in Print Directly command

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

[Libreoffice-bugs] [Bug 129154] New: Tabbed interface: Remove printer name in Print Directly command under File tab

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129154

Bug ID: 129154
   Summary: Tabbed interface: Remove printer name in Print
Directly command under File tab
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: riz_17_...@yahoo.co.id

Under Writer/Calc/Impress "File" tab when enabling Tabbed interface, there's
"Print Directly" function with printer name following it inside the
parenthesis.

I would recommend to remove this printer name as it takes too much horizontal
space. We can move it to mouse over also if needed.

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

[Libreoffice-bugs] [Bug 128354] Graphics in Impress are randomly replaced by other graphics in the same file

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128354

--- Comment #2 from Jon  ---
Unfortunately (!?) the behavior is so random that I can't repeat it
consistently in any file. Even the one that was giving the most trouble is
opening up correctly. This may be because of upgrading from 6.3.2 to 6.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 122247] [META] Icon requests

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=122247

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

   What|Removed |Added

 Depends on||129145


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=129145
[Bug 129145] Some statusbar indicator are not easily visible on Adwaita Dark
theme
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 129145] Some statusbar indicator are not easily visible on Adwaita Dark theme

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129145

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

   What|Removed |Added

 Ever confirmed|0   |1
 CC||79045_79...@mail.ru,
   ||heiko.tietze@documentfounda
   ||tion.org
 Status|UNCONFIRMED |NEW
 Blocks||86066, 122247
   Keywords||needsUXEval

--- Comment #1 from Roman Kuznetsov <79045_79...@mail.ru> ---
Heiko, are there icons for it in the sourse code? Can we add the same icons but
for dark mode icon theme?

Set as NEW, in Kubuntu with Breeze Dark system theme I see the same problem


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=86066
[Bug 86066] [META] bugs and improvements to the statusbar
https://bugs.documentfoundation.org/show_bug.cgi?id=122247
[Bug 122247] [META] Icon requests
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

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

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86066

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

   What|Removed |Added

 Depends on||129145


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=129145
[Bug 129145] Some statusbar indicator are not easily visible on Adwaita Dark
theme
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 129153] Show MIME type icon in recent file list

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129153

--- Comment #2 from Rizal Muttaqin  ---
(In reply to Roman Kuznetsov from comment #1)
> Rizal, do you mean recent files list in the main menu?

Yes, absolutely you are 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-ux-advise] [Bug 129153] Show MIME type icon in recent file list

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129153

--- Comment #2 from Rizal Muttaqin  ---
(In reply to Roman Kuznetsov from comment #1)
> Rizal, do you mean recent files list in the main menu?

Yes, absolutely you are right

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

[Libreoffice-bugs] [Bug 129153] Show MIME type icon in recent file list

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129153

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

   What|Removed |Added

 CC||79045_79...@mail.ru,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org
   Keywords||needsUXEval

--- Comment #1 from Roman Kuznetsov <79045_79...@mail.ru> ---
Rizal, do you mean recent files list in the main menu?

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

[Libreoffice-ux-advise] [Bug 129153] Show MIME type icon in recent file list

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129153

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

   What|Removed |Added

 CC||79045_79...@mail.ru,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org
   Keywords||needsUXEval

--- Comment #1 from Roman Kuznetsov <79045_79...@mail.ru> ---
Rizal, do you mean recent files list in the main menu?

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

[Libreoffice-bugs] [Bug 103859] [META] EMF/WMF (Enhanced/Windows Metafile) bugs and enhancements

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103859

Chris Sherlock  changed:

   What|Removed |Added

 Depends on||129138


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=129138
[Bug 129138] libUEMF test EMF not displaying correctly
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

[Libreoffice-bugs] [Bug 129138] libUEMF test EMF not displaying correctly

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129138

Chris Sherlock  changed:

   What|Removed |Added

   Keywords||filter:emf

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

[Libreoffice-bugs] [Bug 129138] libUEMF test EMF not displaying correctly

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129138

Chris Sherlock  changed:

   What|Removed |Added

 Blocks||103859


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103859
[Bug 103859] [META] EMF/WMF (Enhanced/Windows Metafile) 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 129153] New: Show MIME type icon in recent file list

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129153

Bug ID: 129153
   Summary: Show MIME type icon in recent file list
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: riz_17_...@yahoo.co.id

LibreOffice is a monolithic type software by design. I'm sure that this status
leads to recent file list in each module contains whole files which already
opened by every single module. While we can see full path as well as their file
name. It would be useful if we add an MIME icon to the 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 129032] Missing warning when renaming page with same name

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129032

--- Comment #7 from Rizal Muttaqin  ---
(In reply to Heiko Tietze from comment #6)
> Disabling the action when requirements are not fulfilled (see bug 62851) is
> the correct way to go. While this behavior is common (and IMHO easy to
> grasp), we could show a warning like "Name has been assigned to another
> slide" (or page).

I agree that disabled action is also easy to grasp, but a warning will provide
better understanding, user would now what really happen. 

> I would rather change Calc to not interrupt the workflow (as done in bug
> 128521).


+1 for your propose just like tdf#128521, it would reduce action since an
another dialog required another action button (e.g. "OK"). My Nautilus 3.26.x
(Ubuntu 18.04) has similar approach.

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

[Libreoffice-ux-advise] [Bug 129032] Missing warning when renaming page with same name

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129032

--- Comment #7 from Rizal Muttaqin  ---
(In reply to Heiko Tietze from comment #6)
> Disabling the action when requirements are not fulfilled (see bug 62851) is
> the correct way to go. While this behavior is common (and IMHO easy to
> grasp), we could show a warning like "Name has been assigned to another
> slide" (or page).

I agree that disabled action is also easy to grasp, but a warning will provide
better understanding, user would now what really happen. 

> I would rather change Calc to not interrupt the workflow (as done in bug
> 128521).


+1 for your propose just like tdf#128521, it would reduce action since an
another dialog required another action button (e.g. "OK"). My Nautilus 3.26.x
(Ubuntu 18.04) has similar approach.

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

[Libreoffice-bugs] [Bug 128867] Decimal separator on numeric pad not recognized in page or paragraph formatting dialogues

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128867

QA Administrators  changed:

   What|Removed |Added

 Whiteboard|| QA:needsComment

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

[Libreoffice-bugs] [Bug 129140] Wording in printer dialog

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129140

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 129031] distorted lines

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129031

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

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

[Libreoffice-bugs] [Bug 128583] Can not paste Picture (Windows Metafile) but MS Word can

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128583

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

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

[Libreoffice-ux-advise] [Bug 129140] Wording in printer dialog

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129140

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 125116] LibreOffice 6.0.7.3 does not display images, displays image border only, image border overwrites footer.

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125116

QA Administrators  changed:

   What|Removed |Added

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

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

[Libreoffice-bugs] [Bug 75972] FILEOPEN: SAXParseException on one .DOCX (summary in comment 7)

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=75972

--- Comment #12 from QA Administrators  ---
Dear Orbel,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 125712] LibreOffice Writer menu toolbar freezes after some seconds

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125712

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

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 125505] LibreOffice writer changing font color does not take effect at screen

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125505

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

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 125678] Crash on slideshow

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125678

--- Comment #9 from QA Administrators  ---
Dear Daniel T.,

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

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

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

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-ux-advise] [Bug 129140] Wording in printer dialog

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129140

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

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

[Libreoffice-bugs] [Bug 129031] distorted lines

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129031

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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

[Libreoffice-bugs] [Bug 128583] Can not paste Picture (Windows Metafile) but MS Word can

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128583

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

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

[Libreoffice-bugs] [Bug 129140] Wording in printer dialog

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129140

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

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

[Libreoffice-bugs] [Bug 121718] FILESAVE XLSX Header page number changes after exported

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121718

--- Comment #5 from QA Administrators  ---
Dear NISZ LibreOffice Team,

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 125116] LibreOffice 6.0.7.3 does not display images, displays image border only, image border overwrites footer.

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125116

--- Comment #4 from QA Administrators  ---
Dear Tom Johnson,

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 121715] FILEOPEN XLSX First page header changes to default header

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=121715

--- Comment #4 from QA Administrators  ---
Dear NISZ LibreOffice Team,

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

{存储拒绝警告消息} Storage rejection warning messages

2019-12-02 Thread postmaster






libreoffice



You have [9] undelivered mails

  

Date/Time

12/3/2019 12:08:52 a.m.
 

Release Pending messages to inbox.
 
 






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

[Libreoffice-bugs] [Bug 129151] Text format issue in Calc.

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129151

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m.a.riosv  ---
Go to Menu/Tools/Autocorrect options - Options,
disable 'Correct TWo INitial CApitals', or add it to Exceptions in the previous
tab.

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

Re: Problems with SetSnapRect() for rotated and/or sheared custom shapes

2019-12-02 Thread Regina Henschel

Hi all,

next steps in SetSnapRect().

Working on tdf#119191, I have noticed, that there the caller of 
SetSnapRect() assumes, that the shape shrinks/grows so, that it fits 
into its anchor cell. That works for a legacy rectangle, for example, 
but it does not work for custom shapes, which are rotated and/or sheared.


So there are at least two use cases, where SetSnapRect() is applied:
(1) Rescue a pos/size and apply it later.
(2) Fit a shape into a given rectangle.

SetSnapRect() is in most cases used in the form SdrObject->SetSnapRect() 
and the actual shape type is determined in last binding. So I think it 
is very error-prone to change SetSnapRect() now.


I have a different idea, that should work at least intermediately:
There exists the method AdjustToMaxRect()
https://opengrok.libreoffice.org/xref/core/include/svx/svdobj.hxx?r=7eb26ece#624
It would solve the use case (2). When ever there is a caller, that wants 
to fit a custom shape into a given rectangle, it can use 
AdjustToMaxRect() instead of SetSnapRect(). Later it would still be 
possible to move the calculations from AdjustToMaxRect() to 
SetSnapRect(), if someone wants to clear up the use of SetSnapRect().


I have now implemented AdjustToMaxRect() for custom shapes and changed 
two callers in sc to use this instead of SetSnapRect().


It would be nice, if you look, whether you like this idea.

The proposal is in https://gerrit.libreoffice.org/#/c/84216/.

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

Need help for unit test with rotated shape in Calc

2019-12-02 Thread Regina Henschel

Hi all,

my proposed fix for tdf#119191 in 
https://gerrit.libreoffice.org/#/c/84216/ will also fix, that the 
command .uno:FitCellSize does not work on cell anchored custom shapes, 
in case they are transformed. So I'm trying to write a unit test for it. 
The command is new [1] and has no unit test at all, so I have no 
template to look how it can be done.
[1] 
https://cgit.freedesktop.org/libreoffice/core/commit/?id=073b4eadd2a9a00b915c664df90b15d5b2d709c0


The feature is done by the method ScDrawView::FitToCellSize(). So I 
tried to get a ScDrawView, but without success.
The following attempt does not work, xDocSh->GetBestViewShell(false) 
returns a nullptr.


ScDocShellRef xDocSh = loadDoc("tdf119191_FitToCellSize.", FORMAT_ODS);
ScTabViewShell* pViewShell = xDocSh->GetBestViewShell(false);
ScDrawView* pDrawView = pViewShell->GetScDrawView();

So I tried to do the same as in ScCopyPasteTest::testCopyPasteXLS() to 
get a ScTabViewShell. But in that attempt the line 
xController->attachFrame( xTargetFrame ); gives an assertion.


Any idea, how I can apply FitToCellSize() to a shape in a unit test?

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

[Libreoffice-bugs] [Bug 129152] New: slides inadvertently advance on dual screen mode

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129152

Bug ID: 129152
   Summary: slides inadvertently advance on dual screen mode
   Product: LibreOffice
   Version: 6.3.2.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tenpen...@yahoo.com

Created attachment 156256
  --> https://bugs.documentfoundation.org/attachment.cgi?id=156256=edit
file with doxology. both problems exist in this file

While using dual screens during a presentation and the slide view of 9 slides,
if the slide view is moved up or down the "next" slide automatically is shown. 
I normally move up and down through the show to select a past or future slide,
but when doing so, with the latest 6.3 version, clicking anywhere on the screen
advances the next slide.
This did not happen in the 6.2 version before it.

I have been having problems transferring my shows from home to church and
retaining music with the shows.  I am putting all music and the show itself in
a folder and transporting them on a flash drive.  I copy the flash drive to the
church computer desktop. (I also create them in a desktop folder on the
desktop).
When showing the files at church the songs have to be re-named and re-inserted
into the show in order for the music to work.. Very frustrating and you can't
re-use a name. 

Dave

PS I could not send the folder or the music file doxology.

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

[Libreoffice-bugs] [Bug 129151] New: Text format issue in Calc.

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129151

Bug ID: 129151
   Summary: Text format issue in Calc.
   Product: LibreOffice
   Version: 3.3.0 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sl1...@rochester.rr.com

Description:
Enter text: PWbooks
Cell text: Pwbooks

Steps to Reproduce:
1.Enter text: PWbooks
2.Cell text: Pwbooks
3.

Actual Results:
Pwbooks

Expected Results:
PWbooks


Reproducible: Always


User Profile Reset: No



Additional Info:
Produce the entered text verbatim.

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

[Libreoffice-bugs] [Bug 129144] Cycle case changes strings that are the same as the string where the cursor is placed

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129144

--- Comment #5 from sdc.bla...@youmail.dk ---
(In reply to V Stuart Foote from comment #4)
> (In reply to sdc.blanco from comment #3)

> But regardless to keep the 'Sentence case' UNO control in the 'Cycle-case'
> -F3 widget.

Right. I was not proposing to remove it from the Case statement, but only to
give the possibility to set in an Option (in Tools > Option) to choose whether
to use the Sentence Case or not.  (If this is a stupid suggestion, then do not
bother to answer.)

Meanwhile, thanks for explanations.  I can see (from comment 57 -- and other
discussion) that it is a paradoxical problem (where satisfying some
dissatisfies others) - presumably with no obvious solution.

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

[Libreoffice-bugs] [Bug 129150] Menu: Format - Page

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129150

m.a.riosv  changed:

   What|Removed |Added

 CC||miguelangelrv@libreoffice.o
   ||rg
 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from m.a.riosv  ---
Please what app have not the Format/Page?, is there for me with Calc+Writer.

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

[Libreoffice-bugs] [Bug 129149] Shortcuts for z-index up down

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129149

o.rafelsber...@gmx.at changed:

   What|Removed |Added

   Severity|normal  |enhancement

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

[Libreoffice-bugs] [Bug 129150] New: Menu: Format - Page

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129150

Bug ID: 129150
   Summary: Menu: Format - Page
   Product: LibreOffice
   Version: 6.3.0.4 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: o.rafelsber...@gmx.at

Description:
I wonder why there is no "page" entry in the menu->format.
To me it would make sense. Maybe additionally to the current location.

Steps to Reproduce:
1. Try to change the page formatting
2. Search under menu->format 
3. be confused

Actual Results:
The page-formatting is difficult to find

Expected Results:
I had to search in settings and so on.


Reproducible: Always


User Profile Reset: No



Additional Info:
Add a page-format entry to the menu-format list. This would be consistent.

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

[Libreoffice-bugs] [Bug 129149] New: Shortcuts for z-index up down

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129149

Bug ID: 129149
   Summary: Shortcuts for z-index up down
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: o.rafelsber...@gmx.at

I'd love to see two shortcuts consistently in all applications to move the
z-index of an object up or down.

In most applications, you can place graphical objects like rectangles or
circles on top of each other. The z-index defines which objects are displayed
above others. There is a context-submenu to move an object above all others,
below all others, higher and lower. For the last two one's shortcuts would be
amazing. So you do not have to right-click the object 10 times and navigate to
the submenu to move it's z-index 10 times.

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

[Libreoffice-bugs] [Bug 129144] Cycle case changes strings that are the same as the string where the cursor is placed

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129144

--- Comment #4 from V Stuart Foote  ---
(In reply to sdc.blanco from comment #3)

Thoughts on how to handle things are as in cmt#57 of bug 49033 [1], that is to
retain the sentence case rotation, but apply to selection only and suppress the
expand to ICU lib sentence bounds keeping to just the word at cursor position
when no selection has been made. With some potential to do more ambitious
things.

But regardless to keep the 'Sentence case' UNO control in the 'Cycle-case'
-F3 widget.


=-ref-=

[1] https://bugs.documentfoundation.org/show_bug.cgi?id=49033#c57

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

[Libreoffice-bugs] [Bug 129144] Cycle case changes strings that are the same as the string where the cursor is placed

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129144

--- Comment #3 from sdc.bla...@youmail.dk ---
(In reply to V Stuart Foote from comment #2)
> The +F3 cycle case inmplemented ICU libs transliterations expands the
> selection from Word bounds to Sentence bounds as it is cycled onto the
> Sentence case selection.. Useful if that is what you need, but making the
> 'cycle case' control erratic during use.
> 
> Anyhow dupe of bug 49033...

Not to dispute your judgement -- but just as a naive question -- I can see that
this situation was "created" by adding the Sentence Case to Cycle Case (bug
#116315). 

But when I look in Format > Text  then I can see the possibilities:  Cycle
Case, Sentence Case, and tOGGLE cASE.   Given that these are broken out from
each other, then I do not understand why that Sentence Case should be included
in Cycle Case.

Or alternatively, as I understand from the discussion in bug #116315, some
languages have an advantage with this configuration.  But as my example in
Comment #1 shows, it is impossible to use Cycle Case for what should be an
obvious and simple case.  Not a catastrophe, but inelegant. 

Would it would be meaningful to have an "option" to control whether "Sentence
Case" is included or not in Cycle Case?

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

[Libreoffice-bugs] [Bug 128583] Can not paste Picture (Windows Metafile) but MS Word can

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=128583

--- Comment #6 from Ferry Toth  ---
Yes.

You are not copying the original image from Orcad -> LibO, you are pasting to
IrfanView and then placing again on the clipboard and pasting that into LibO.

This is not the issue. If I place the image from Orcad into MS Word, and copy
it from Word to LibO it works as it should.

The issue is: Orcad -> LibO is not working. While Orcad -> Word works,
suggesting Orcad is doing something that LibO does not expect, but is
apparently correct.

I especially saved the clipboard file so that someone with debugging capability
can reproduce what this particular corner case is.

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

[Libreoffice-bugs] [Bug 123844] Groupedbar compact almost empty on MacOS

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123844

--- Comment #6 from andreas_k  ---
can you test with 6.3 or 6.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 103170] [META] Notebookbar Contextual

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103170

andreas_k  changed:

   What|Removed |Added

 Depends on|100344  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=100344
[Bug 100344] UNO command to "Restore to 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 100344] UNO command to "Restore to Original"

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100344

andreas_k  changed:

   What|Removed |Added

 CC||kain...@gmail.com
 Blocks|103170  |


Referenced Bugs:

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

[Libreoffice-bugs] [Bug 129123] CRASH: editing matrix formula with enabled context change listener

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129123

Julien Nabet  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Keywords||haveBacktrace
 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 129148] Emojis aren't printed

2019-12-02 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129148

--- Comment #1 from Alberto Salvia Novella  ---
Likely related: Apple Color Emoji not Visible in Exported PDF:
https://bugs.documentfoundation.org/show_bug.cgi?id=94655

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

  1   2   3   4   5   >