[Libreoffice-bugs] [Bug 106180] No screen reader notification that there is a comment

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=106180

--- Comment #8 from hunt  ---
Thanks For Sharing Such An Interesting Article, It Is Really Worthy To Read. I
Have Subscribed To You And From Now On I'll Check Your Profile Daily For
Interesting Stuffs. http://www.celebstyleoutfits.com/tiger-rocky2-balboa-jacket;>rocky jacket
tiger

-- 
You are receiving this mail because:
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: LibreOffice Android "Web Layout"

2020-01-05 Thread Miklos Vajna
Hi Tim,

The easy part is to dispatch the .uno:BrowseView command from the
webview inside the Android app. The more tricky part is to see if this
works out of the box or needs fixes here & there. Usually the later is
true.

Regards,

Miklos


signature.asc
Description: Digital signature
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 129791] vertical text is clipped in display - pdf export and print are ok

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129791

NISZ LibreOffice Team  changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE
 CC||libreoff...@nisz.hu

--- Comment #2 from NISZ LibreOffice Team  ---
This happens with OpenGL rendering enabled, but not when it is disabled.
Probably the same problem as bug #126405 even though that one is about rotated
text in tables and this is in a drawing shape.

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

-- 
You are receiving this mail because:
You 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 126405] FILEOPEN DOCX Rotated text misses last letters (Open GL enabled) in tables and textbox

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126405

NISZ LibreOffice Team  changed:

   What|Removed |Added

 CC||joe...@joehtg.co.at

--- Comment #6 from NISZ LibreOffice Team  ---
*** Bug 129791 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 129794] UI shows wrong values of elements size (width/height) when the 'millimeter' measure is chosen

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129794

NISZ LibreOffice Team  changed:

   What|Removed |Added

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

--- Comment #1 from NISZ LibreOffice Team  ---


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

-- 
You are receiving this mail because:
You 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 111922] Draw/Impress Sidebar with point measurement units set, incorrect Size measurements shown on Position and Size content panel--but shows correctly on properties dialog

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111922

NISZ LibreOffice Team  changed:

   What|Removed |Added

 CC||ceene...@yahoo.es

--- Comment #12 from NISZ LibreOffice Team  ---
*** Bug 129794 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-commits] core.git: sc/source

2020-01-05 Thread Mike Kaganski (via logerrit)
 sc/source/core/tool/compiler.cxx |   12 ++--
 1 file changed, 2 insertions(+), 10 deletions(-)

New commits:
commit 7a98ab1fa6b3f3de2c7077c1d2601f7bc12be2d7
Author: Mike Kaganski 
AuthorDate: Sun Jan 5 12:30:43 2020 +0100
Commit: Mike Kaganski 
CommitDate: Mon Jan 6 08:33:13 2020 +0100

Simplify IsOpCode a bit

The removed code block made it impossible to enter the following
"if (aIntName.isEmpty())" block whenever mxSymbols->hasExternals() was 
true. Thus
removing that block and making the following block the "else" branch keeps 
the
logic.

And fix an apparent omission from commit 
9ccaa4b1468527bbec12d7e0fccf4ea443478f50,
which removed setting bFound to true in case of "Old (deprecated) addins".

Change-Id: I96da0620eb9d622f1f7650985e284a1e9817e27a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86240
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/sc/source/core/tool/compiler.cxx b/sc/source/core/tool/compiler.cxx
index b2aa24f727b5..769790de7fdb 100644
--- a/sc/source/core/tool/compiler.cxx
+++ b/sc/source/core/tool/compiler.cxx
@@ -2933,21 +2933,13 @@ bool ScCompiler::IsOpCode( const OUString& rName, bool 
bInArray )
 if (ScGlobal::GetAddInCollection()->GetFuncData( 
(*iExt).second))
 aIntName = (*iExt).second;
 }
-if (aIntName.isEmpty())
-{
-// If that isn't found we might continue with rName lookup as a
-// last resort by just falling through to FindFunction(), but
-// it shouldn't happen if the map was setup correctly. Don't
-// waste time and bail out.
-return false;
-}
 }
-if (aIntName.isEmpty())
+else
 {
 // Old (deprecated) addins first for legacy.
 if (ScGlobal::GetLegacyFuncCollection()->findByName(cSymbol))
 {
-maRawToken.SetExternal( cSymbol );
+aIntName = cSymbol;
 }
 else
 // bLocalFirst=false for (English) upper full original name
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 129826] Storing language based user defined format codes of cells does not work for color code based entries.

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129826

Ralf Hendel  changed:

   What|Removed |Added

 CC||r...@hendel.name
   Severity|normal  |minor

-- 
You are receiving this mail because:
You 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 129826] Storing language based user defined format codes of cells does not work for color code based entries.

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129826

--- Comment #2 from Ralf Hendel  ---
Created attachment 156956
  --> https://bugs.documentfoundation.org/attachment.cgi?id=156956=edit
Screenshot after reopening the document

The bug becomes visible after storing, closing and reopening the document:
The new user-based entry is no longer available in the list for format codes.

-- 
You are receiving this mail because:
You 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 129826] Storing language based user defined format codes of cells does not work for color code based entries.

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129826

--- Comment #1 from Ralf Hendel  ---
Created attachment 156955
  --> https://bugs.documentfoundation.org/attachment.cgi?id=156955=edit
Screenshot after editing a user based format

The functionality works as expected as long as you don't close the document and
reopen it.

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


[Libreoffice-bugs] [Bug 129826] New: Storing language based user defined format codes of cells does not work for color code based entries.

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129826

Bug ID: 129826
   Summary: Storing language based user defined format codes of
cells does not work for color code based entries.
   Product: LibreOffice
   Version: 6.2.8.2 release
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: r...@hendel.name

Description:
When adding a user defined format code for currency formatted fields, it works
as long as you don't close the document. After closing and reopening it, the
format code value is not contained in the list of available formats and the
format value of the field is set back to the last available entry of the list.

This problem only remains if I use color codes like "FARBE01" or "FARBE22"
instead of color names (FARBE is the German translation of COLOR). If I use
"GREEN" or "GRÜN" (GRÜN ist German translation of GREEN).

I use libre office with English surface but on a German operating system. It
works both entering color codes like "FARBE01" as well as "COLOR01". Bu when I
enter "COLOR01", store the "Format cell" form and reopen the form, I find it
translated to "FARBE01".

This brings me to the idea, that this behavior may have something to do with
the translation handling of format codes.

Steps to Reproduce:
1.
Entering a user defined format code for currency formatted cells while using a
format code like "FARBE01" or "COLOR01".

2.
Confirming that the cells will be displayed according the format code like
expected.

3.
Storing and closing the document.

4.
Reopening the document.

5.
Confirming the unexpected behavior:

5.1.
The concerned cells won't be displayed according the format code like expected.

5.2.
The user-based entry is no longer available in the list for format codes. 

Actual Results:
The concerned cells won't be displayed according the format code like expected.
The user-based entry is no longer available in the list for format codes. 


Expected Results:
Using color format codes like "FARBE01" or "COLOR01" will still work after
reopening the document.
User based entries of format codes like "FARBE01" or "COLOR01" will be
available even after reopening the document. 


Reproducible: Always


User Profile Reset: No



Additional Info:
I use libre office with English surface but on a German operating system. It
works both entering color codes like "FARBE01" as well as "COLOR01". Bu when I
enter "COLOR01", store the "Format cell" form and reopen the form, I find it
translated to "FARBE01".

This brings me to the idea, that this behavior may have something to do with
the translation handling of format codes.

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

2020-01-05 Thread Mike Kaganski (via logerrit)
 sw/source/ui/fldui/flddb.cxx |   58 +--
 sw/source/ui/fldui/flddb.hxx |1 
 2 files changed, 35 insertions(+), 24 deletions(-)

New commits:
commit 016c69c99e1ab26e6582ca8dea6fa1b4b9e5d109
Author: Mike Kaganski 
AuthorDate: Mon Jan 6 01:20:13 2020 +0300
Commit: Mike Kaganski 
CommitDate: Mon Jan 6 07:36:19 2020 +0100

tdf#129798: store SwWrtShell when it's available

GetActiveWrtShell may return nullptr when attaching a new component
to current frame, e.g. destroying on print preview. OTOH SwWrtShell
is passed to SwFieldDBPage::SetWrtShell on creation, so store it to
own base class then.

Possibly that would be enough, and we could remove all the checks
in other methods - but I don't know the code well enough to be sure
that SwFieldDlg::PageCreated and SwFieldEditDlg::CreatePage will
always set SwWrtShell; to be on the safe side, I kept the checks
where SwWrtShell is used, and stored it in those places if not yet
stored.

Regression after commit 39ba5e3bde93358af1b363da8f850bdc96806cfa.

Change-Id: I21f3c8ef24764e98b1bc287db3c6485ce0b3ab48
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86253
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/sw/source/ui/fldui/flddb.cxx b/sw/source/ui/fldui/flddb.cxx
index dfa97a5c1a5b..01b9065cd36e 100644
--- a/sw/source/ui/fldui/flddb.cxx
+++ b/sw/source/ui/fldui/flddb.cxx
@@ -70,13 +70,14 @@ SwFieldDBPage::SwFieldDBPage(weld::Container* pPage, 
weld::DialogController* pCo
 
 SwFieldDBPage::~SwFieldDBPage()
 {
-SwWrtShell* pSh = GetWrtShell();
-if (!pSh)
-pSh = ::GetActiveWrtShell();
-// This would cleanup in the case of cancelled dialog
-SwDBManager* pDbManager = pSh->GetDoc()->GetDBManager();
-if (pDbManager)
-pDbManager->RevokeLastRegistrations();
+// If we have no stored SwWrtShell, it means we didn't do anything useful 
- no need to revoke.
+if (SwWrtShell* pSh = GetWrtShell())
+{
+// This would cleanup in the case of cancelled dialog
+SwDBManager* pDbManager = pSh->GetDoc()->GetDBManager();
+if (pDbManager)
+pDbManager->RevokeLastRegistrations();
+}
 }
 
 // initialise TabPage
@@ -137,9 +138,7 @@ void SwFieldDBPage::Reset(const SfxItemSet*)
 }
 else
 {
-SwWrtShell *pSh = GetWrtShell();
-if(!pSh)
-pSh = ::GetActiveWrtShell();
+SwWrtShell *pSh = CheckAndGetWrtShell();
 if(pSh)
 {
 SwDBData aTmp(pSh->GetDBData());
@@ -192,9 +191,8 @@ bool SwFieldDBPage::FillItemSet(SfxItemSet* )
 aData.sDataSource = m_xDatabaseTLB->GetDBName(sTableName, sColumnName, 
);
 aData.sCommand = sTableName;
 aData.nCommandType = bIsTable ? 0 : 1;
-SwWrtShell *pSh = GetWrtShell();
-if(!pSh)
-pSh = ::GetActiveWrtShell();
+SwWrtShell *pSh = CheckAndGetWrtShell();
+assert(pSh);
 
 SwDBManager* pDbManager = pSh->GetDoc()->GetDBManager();
 if (pDbManager)
@@ -288,9 +286,8 @@ void SwFieldDBPage::TypeHdl(const weld::TreeView* pBox)
 if (nOld == GetTypeSel())
 return;
 
-SwWrtShell *pSh = GetWrtShell();
-if(!pSh)
-pSh = ::GetActiveWrtShell();
+SwWrtShell *pSh = CheckAndGetWrtShell();
+assert(pSh);
 bool bCond = false, bSetNo = false, bFormat = false, bDBFormat = false;
 const SwFieldTypesEnum nTypeId = 
static_cast(m_xTypeLB->get_id(GetTypeSel()).toUInt32());
 
@@ -483,15 +480,14 @@ IMPL_LINK(SwFieldDBPage, TreeSelectHdl, weld::TreeView&, 
rBox, void)
 
 IMPL_LINK_NOARG(SwFieldDBPage, AddDBHdl, weld::Button&, void)
 {
-SwWrtShell* pSh = GetWrtShell();
-if (!pSh)
-pSh = ::GetActiveWrtShell();
-
-OUString sNewDB
-= SwDBManager::LoadAndRegisterDataSource(GetFrameWeld(), 
pSh->GetDoc()->GetDocShell());
-if(!sNewDB.isEmpty())
+if (SwWrtShell* pSh = CheckAndGetWrtShell())
 {
-m_xDatabaseTLB->AddDataSource(sNewDB);
+OUString sNewDB
+= SwDBManager::LoadAndRegisterDataSource(GetFrameWeld(), 
pSh->GetDoc()->GetDocShell());
+if (!sNewDB.isEmpty())
+{
+m_xDatabaseTLB->AddDataSource(sNewDB);
+}
 }
 }
 
@@ -519,7 +515,21 @@ void SwFieldDBPage::ActivateMailMergeAddress()
 
 void SwFieldDBPage::SetWrtShell(SwWrtShell& rSh)
 {
+// We need to remember the shell to be able to call correct SwDBManager
+SwFieldPage::SetWrtShell();
 m_xDatabaseTLB->SetWrtShell(rSh);
 }
 
+SwWrtShell* SwFieldDBPage::CheckAndGetWrtShell()
+{
+SwWrtShell* pSh = GetWrtShell();
+if (!pSh)
+{
+pSh = ::GetActiveWrtShell();
+if (pSh) // this is not guaranteed: e.g., activating print preview 
with dialog active
+SetWrtShell(*pSh);
+}
+return pSh;
+}
+
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/sw/source/ui/fldui/flddb.hxx 

[Libreoffice-bugs] [Bug 81003] BASIC runtime error. '380' Incorrect property value

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=81003

--- Comment #10 from himajin100...@gmail.com ---
When I changed the given code as follows,

Public Function getCompound(initValue As Double, initDate, finalDate, intRate
As Double) As String' Calculate and apply compound interest for the period
specified
Dim adjPeriod As Double
adjPeriod = (finalDate - initDate) / DAYS_PER_YEAR
getCompound = TypeName(initDate)

End Function

I mean,

1. Removed the type declaration from initDate and finalDate
2. I changed the returned value to TypeName of initDate
3. Changed the return type to String

The returned value on the cell where this function is used was "Range"

https://opengrok.libreoffice.org/xref/core/sc/source/core/tool/interpr4.cxx?r=6873e0a9#3304

-- 
You are receiving this mail because:
You 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 129825] LO Draw - landscape prints in portrait and/or crops diagram

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129825

Peter Wilkins  changed:

   What|Removed |Added

 CC||wilkins.pe...@gmail.com
URL||https://ask.libreoffice.org
   ||/en/question/219014/lo-draw
   ||-landscape-print-crops-diag
   ||ram/

-- 
You are receiving this mail because:
You 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 129825] New: LO Draw - landscape prints in portrait and/or crops diagram

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129825

Bug ID: 129825
   Summary: LO Draw - landscape prints in portrait and/or crops
diagram
   Product: LibreOffice
   Version: 6.3.3.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: wilkins.pe...@gmail.com

Description:
I seem to be unable to print (LO Draw 6.3.3) a diagram in landscape mode, even
when selecting landscape, per:

[Page] [Properties] [Page] [Orientation] : Landscape
The diagram displays as expected in landscape mode, but no matter how I try to
print (whatever print driver), I get landscape printed, but the diagram is
always cropped on the right side, as if I had been trying to print a landscape
diagram with the printer set to portrait (which it was not).

This is described and discussed on "Ask LO"

https://ask.libreoffice.org/en/question/219014/lo-draw-landscape-print-crops-diagram/



Steps to Reproduce:
1. Create LO Draw document page formatted as Landscape
2. Print settings, change orientation to landscape
3. Print ..

Actual Results:
Document prints as portrait, with the right part of the diagram truncated.  It
does not matter whether print settings left at default "Automatic" or manually
changed to "Landscape" ... it prints in portrait orientation with (of course)
the right side of the diagram truncated,

Expected Results:
Expect to print as landscape, which is the page format orientation of the LO
Draw document.


Reproducible: Always


User Profile Reset: No



Additional Info:
If the document is "Exported" to PDF, as expected, it produces a landscape PDF
document ... but impossible to do if using print.

Work-around seems to be to "export to PDF" ... then open exported PDF and print
that.  But I should not need to do that.  Besides, it is not generally obvious
to many users that this is a band-aid work around,

-- 
You are receiving this mail because:
You 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 31730] Dragging numbers to create a series doesnt' works propely

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=31730

--- Comment #10 from b.  ---
just digging through old bugs, 

and just playing around, 

there are (at least) two 'modi' for dragfill as of now: 

'normal' - calc increments numerical values in 'repeated series', 

'compatible?' - holding down  () while dragging - calc acts as
other programs and simply repeats 'repeated series', 

accordingly this bug is either fixed, or 'worksforme', i will correct the entry
if nobody contradicts, 

haven't seen yet who implemented and when, 

tested with: 

Version: 6.4.0.1 (x64)
Build ID: 1b6477b31f0334bd8620a96f0aeeb449b587be9f
CPU threads: 8; OS: Windows 6.1 Service Pack 1 Build 7601; UI render: default;
VCL: win; 
Locale: de-DE (de_DE); UI-Language: en-US
Calc:

-- 
You are receiving this mail because:
You 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 129546] Skia: Crash when starting LO without supported device

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129546

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 124842] FORMATTING: ParaStyleName of ParagraphProperties not returning string when 'Next style' option is used

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=124842

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

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 94714] Bitmaps and patterns are applied at a larger size

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=94714

--- Comment #15 from QA Administrators  ---
Dear Yousuf Philips (jay),

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 129692] Can't input Japanese(2-byte character) on desktop PCs.

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129692

Babbles  changed:

   What|Removed |Added

Version|6.2.0.3 release |unspecified
  Component|Writer Web  |Writer
Product|LibreOffice |LibreOffice Online

-- 
You are receiving this mail because:
You 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 111888] change method of creating variables in Writer's "Fields" dialogue to allow creating variables without inserting

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111888

--- Comment #16 from sdc.bla...@youmail.dk ---
(In reply to Mike Kaganski from comment #14)
> 5. Try to push the checkmark.

As long as I select a format (e.g., "Text" or "General"), I can add new
variables without problem (e.g., writing values and deleting them, switching
cursor focus to Name).  And in the cases where Apply does not work, if I select
a format, then I can add the variable with Apply). (tested with 6.3.4.2)

But I understand that "User Fields" are not relevant here.  So that was that.

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


[Libreoffice-bugs] [Bug 129692] Can't input Japanese(2-byte character) on desktop PCs.

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129692

--- Comment #1 from Babbles  ---
I captured a video of the PC screen.
https://od.lk/s/M18yMDY4MDM0NDNf/officewriterjapanese.mov

I entered the following in the video:
line1: konnitiwa
line2: watashihanihongonyuuryokudekinai.

Actually, it is registered as follows:
line1: こんにちわ
line2: 私は日本語入力できない。

Vowel have been ignored. Only consonants are registered.
line1: KoNNiTiWa
line2: WaTaShiHaNiHonGoGNYuRYoKuDeKiNaI.

The uppercase letters are recognized and entered. This does not seem to be
affected by input speed. I do not change whether I type slowly or
intentionally.
In the video, Line2 is suddenly shortened at the end. It disappeared when I
converted the characters to Kanji and confirmed. 

IME conversion candidate window could not be captured.
In fact, when I'm typing characters, a window is displayed that shows
suggestions for the characters to type.

The same goes for switching IME to a third party IME.

-- 
You are receiving this mail because:
You 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 129824] New: Crash in: SwDocUpdateField::MakeFieldList_(SwDoc &, int) after "Insert" of a "User Field" with no value

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129824

Bug ID: 129824
   Summary: Crash in: SwDocUpdateField::MakeFieldList_(SwDoc
&,int)  after "Insert"  of a "User Field" with no
value
   Product: LibreOffice
   Version: 6.3.4.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sdc.bla...@youmail.dk

This bug was filed from the crash reporting server and is
br-9ea9716f-6f3a-445a-b31c-41da42487d12 

Also: 
https://crashreport.libreoffice.org/stats/crash_details/ea521f92-1c3a-4679-87f2-11b7a56e17f9
 
and 
https://crashreport.libreoffice.org/stats/crash_details/f700dad2-e18c-4b23-a27c-62ab3d2ebe11

=

1. Ctrl+F2->Variables->User Field (General format)
2. Put "Foo" into Name box
3. Apply
4. Input Field (select Foo), give Reference
5. Insert
6. Type something into Review Views
7. Ok
6. User Field
7. Put "Bar" into Name box
8. Put cursor into empty Value box
9. "Close" (maybe a few times?) (it doesn't close).
10. Insert

Crash

Additional information:  

1. For the first three crashes, the progress bar in the "Documents are Being
Saved" box stopped around 80-90% (after a while I shut it down).

But in the latest crash the recovery process completed itself. 

https://crashreport.libreoffice.org/stats/crash_details/0a07b0fa-d598-4836-a229-14b14870053d0a07b0fa-d598-4836-a229-14b14870053d
 

2. When the document is recovered, both the Fields dialog and Review Fields
dialog boxes are opened with the document (even though the Review Fields was
closed at the time of the crash).

3.  Not trying to make a crash, just working with bug #111888, comment 14

-- 
You are receiving this mail because:
You 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 129411] Notebookbar context-Printpreview crash LO writer

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129411

sdc.bla...@youmail.dk changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You 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 129817] Want a way to use text characters as a paragraph area bitmap.

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129817

--- Comment #5 from Regina Henschel  ---
So your problem is, that you want to use the same scene separator at various
places and that there should be an easy way to exchange the characters which
build the separator. Using a bitmap seems to be only a workaround.

Currently I know these two ways:
(A) Write the characters, mark them, and generate a bookmark. Include blanks at
start and end, that makes later editing much easier. At all other places, where
you want this separator, enter a reference to the bookmark. Use as Insert type
"Reference" to get the characters and not e.g. the page number. For to change
the separator, edit the bookmark and then use Tools > Update to update the
references. You need to style the target paragraph with the same style as the
source paragraph manually. Styles are not included in bookmarks.
(B) Write the characters, then make a section from that paragraph. At all other
places insert a section which is a link to the first generated section. You
will find the link option in the section dialog. In this solution the styles
are copied too.

In theory there exists a solution with frames. The ODF file format allows to
define a frame as copy-of of another frame, so that again only one place is
used to specify the content. But this feature is not implemented in
LibreOffice. It would be the attribute draw:copy-of.

-- 
You are receiving this mail because:
You 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 129817] Want a way to use text characters as a paragraph area bitmap.

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129817

--- Comment #5 from Regina Henschel  ---
So your problem is, that you want to use the same scene separator at various
places and that there should be an easy way to exchange the characters which
build the separator. Using a bitmap seems to be only a workaround.

Currently I know these two ways:
(A) Write the characters, mark them, and generate a bookmark. Include blanks at
start and end, that makes later editing much easier. At all other places, where
you want this separator, enter a reference to the bookmark. Use as Insert type
"Reference" to get the characters and not e.g. the page number. For to change
the separator, edit the bookmark and then use Tools > Update to update the
references. You need to style the target paragraph with the same style as the
source paragraph manually. Styles are not included in bookmarks.
(B) Write the characters, then make a section from that paragraph. At all other
places insert a section which is a link to the first generated section. You
will find the link option in the section dialog. In this solution the styles
are copied too.

In theory there exists a solution with frames. The ODF file format allows to
define a frame as copy-of of another frame, so that again only one place is
used to specify the content. But this feature is not implemented in
LibreOffice. It would be the attribute draw:copy-of.

-- 
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 129812] EDITING: Changing cell format doesn't change how its text is shown

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129812

--- Comment #3 from m.a.riosv  ---
C) is right, cell content it's not changed,

Differentiate between cell value and cell format, it's the key.
Maybe you don't like it but I'm pretty sure it won't change.

https://help.libreoffice.org/6.3/en-US/text/scalc/guide/text_numbers.html?=CALC=WIN

-- 
You are receiving this mail because:
You 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 129823] New: Hexagon Aspect Ratio Bug

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129823

Bug ID: 129823
   Summary: Hexagon Aspect Ratio Bug
   Product: LibreOffice
   Version: unspecified
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: amad...@gmail.com

Issue: the Draw default values assigned for the hexagon width and height are
the sames. This lets the figure to be distorted (asymmetrical). 

Solution:  to correct the shape keep the height value as user defined and
assign the width multiplying the height value by 2/(tan(60)=2/(3^(1/2)).
Otherwise, keep the width value fixed and assign the height value as
width*(3^(1/2))/2.

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


[Libreoffice-bugs] [Bug 129822] New: [UI] Impress "create new slide by double clicking" creates new slide at wrong location

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129822

Bug ID: 129822
   Summary: [UI] Impress "create new slide by double clicking"
creates new slide at wrong location
   Product: LibreOffice
   Version: 6.0.1.1 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: ahmed_nematal...@hotmail.com

Description:
One way that can be used to create new slides in LO impress is by double
clicking on the left side bar (the one that shows slide previews) where you
want the new slide to be.

This works properly for the first few slides, but after about I start to scroll
in that side bar, it starts creating slides at wrong locations, apparently,
this creates a new slide at the location it should be had I not scrolled.

This is probably due to this function not adjusting for scrolling, because when
I scroll to the top, slides are created at the correct location again.

Tested on Windows 10 (LO 6.3.4.2, with and without openGL) and MX Linux (LO
6.0.1.1, without openGL)

Steps to Reproduce:
1.Open LO Impress
2.Create 20 slides (Put some info just to make it easier to see where a new
slide will be added)
3.Scroll in the left side bar down till the first few slides are not there
4.Create a new slide by double clicking between two slides

Actual Results:
A new slide is created in the beginning.

Expected Results:
A new slide should be created where the mouse cursor was pointing when the
double click happened.


Reproducible: Always


User Profile Reset: Yes



Additional Info:
Version: 6.3.4.2 (x64)
Build ID: 60da17e045e08f1793c57c00ba83cdfce946d0aa
CPU threads: 4; OS: Windows 10.0; UI render: GL; VCL: win; 
Locale: en-US (en_DE); UI-Language: en-US
Calc: threaded

Version: 6.0.1.1
Build ID: 1:6.0.1-1~bpo9+1
CPU threads: 1; OS: Linux 4.19; UI render: default; VCL: gtk2; 
Locale: en-US (en_US.UTF-8); Calc: group

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


[Libreoffice-bugs] [Bug 129821] New: UI: Text-oriented cell styles have "Number" as their format, not "Text"

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129821

Bug ID: 129821
   Summary: UI: Text-oriented cell styles have "Number" as their
format, not "Text"
   Product: LibreOffice
   Version: 6.2.7.1 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: johnsmithbeat...@gmail.com

Description:
Open Calc and open the sidebar with cell styles. 

Here are the default cell styles:

```
Default
  Accent
Accent 1
Accent 2
Accent 3
  Heading
Heading 1
Heading 2
  Status
Bad
Error
Good
Neutral
Warning
  Text
Footnote
Hyperlink
Note
```

All of them have "Number" format.

Isn't it better to assign "Text" format to the following ones?

```
  Heading
Heading 1
Heading 2
  Text
Footnote
Hyperlink
Note
```

Steps to Reproduce:
-

Actual Results:
-

Expected Results:
-


Reproducible: Always


User Profile Reset: No



Additional Info:

-- 
You are receiving this mail because:
You 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 84146] EDITING FIELDS: Variable field with format 'Standard" value not set/shown

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=84146

sdc.bla...@youmail.dk changed:

   What|Removed |Added

   Keywords||needsUXEval

--- Comment #9 from sdc.bla...@youmail.dk ---
(In reply to Chas Belov from comment #8)
> In Microsoft Excel, the General format has the description "no specific
> format." 
Ok.  The summary for the bug mentioned "Standard". No other information was
given 
about which format was used for the variable.

Maybe the problem here is "documentation" and not a bug in Writer field
variables?

> There is nothing in the field format list that initially displays to
> indicate that LibreOffice considers General to mean numeric. 

I agree that it is hard to interpret the meaning of the formats (and I could
not find any documentation for "General" in "Help").

I will add needsUXeval.

Maybe a "tooltip" over some items in the Format list could help (a little).
(plus possible documentation improvements).

-- 
You are receiving this mail because:
You 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 47349] EDITING: Can't point and select cell from sheet with freeze window

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=47349

--- Comment #13 from Uwe Auer  ---
Still an issue - see also question on
https://ask.libreoffice.org/en/question/223897/calc-transpose-fails-if-freeze-rows-columns-set/

-- 
You are receiving this mail because:
You 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 129820] New: Format "Standard" appears (replaced) Format "General" in Variables (Field) when opening an old .doc file

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129820

Bug ID: 129820
   Summary: Format "Standard" appears (replaced) Format "General"
in Variables (Field) when opening an old .doc file
   Product: LibreOffice
   Version: 6.3.4.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sdc.bla...@youmail.dk

Tested with:  6.3.4.2  and 6.5.0.0.alpha

1.  Baseline condition:  Open a new document, Ctrl-F2, Variables Tab,
"General" shown in Format list ("Standard" is not).

2.  Open attachment 114832 from bug 90658, 
Ctrl-F2, Variables Tab, "General" is gone from Format list; "Standard" appears.

Is this considered problematic -- at least from a UI perspective?

(I understand that General/Standard are alternative labels for the same idea
(and code). I am not asking about their meaning.)

But my naive belief is that these labels should not change within the same UI 
(especially given the confusion that General and Standard seem to cause). 

Additional information:

I believe that I created this shift (from General to Standard) at least once in
a new (Untitled) document (while making different combinations of variable
types "Variable", "Input Field" and "User Field").  But could not find a way to
reproduce it.  So I mention this only as an unsubstantiated rumor.

-- 
You are receiving this mail because:
You 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 129812] EDITING: Changing cell format doesn't change how its text is shown

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129812

--- Comment #2 from John  ---
(In reply to m.a.riosv from comment #1)

Isn't is weird?

A) When you add "= aaa bbb" content to the cell that have "Number" format,
it will be processed as formula.

B) When you add the same content to the cell that have "Text" format,
it will be processed as literal text.

C) But when you change the format from "Number" to "Text" and vice versa, the
content will *not* be changed. This behavior is completely inconsistent with A
and B.

-- 
You are receiving this mail because:
You 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 120141] Templates in shellnew directory not fitting to global settings

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=120141

--- Comment #8 from Bernhard  ---
(In reply to Nikolaus Kühn from comment #6)

> Not sure how other applications handle the case. 

>From other applications I know the following solution:

Right-click function in the explorer just creates an empty (0 Bytes) file.
The applications generates the propper file as soon as you open it.

regards
Bernhard

-- 
You are receiving this mail because:
You 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 129817] Want a way to use text characters as a paragraph area bitmap.

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129817

--- Comment #4 from Gary Renshaw  ---
Sorry for the confusion.The attachment shows a typical design element that this
feature would make trivial.

The current method is to have a paragraph style with enough space above and
below to make it exactly 2 lines high. The chain graphic in the middle is
actually a character from a dingbat font, and it must be inserted manually for
each instance. This method works well, but if the graphic element is to be
changed, it must be changed manually for every such paragraph in the document.

The proposed enhancement would have the following work flow to create the same
effect:
1. Create the new paragraph style (call it Scene Separator).
2. Set the Alignment to centre.
3. In the Area -> Bitmap dialogue select the dingbat font and the text (a
letter 'f' in this case).
4. Create the bitmap.
5. Adjust the existing area parameters so that the new bitmap shows up in a
pleasing way.

Now the Scene Separator can simply be inserted where needed in the document. To
change the graphic element, simply modify the paragraph style to create a new
bitmap and use it.

The ability to enter several characters shouldn't change the required code
significantly as the whole string becomes one bitmap.

-- 
You are receiving this mail because:
You 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 129817] Want a way to use text characters as a paragraph area bitmap.

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129817

--- Comment #4 from Gary Renshaw  ---
Sorry for the confusion.The attachment shows a typical design element that this
feature would make trivial.

The current method is to have a paragraph style with enough space above and
below to make it exactly 2 lines high. The chain graphic in the middle is
actually a character from a dingbat font, and it must be inserted manually for
each instance. This method works well, but if the graphic element is to be
changed, it must be changed manually for every such paragraph in the document.

The proposed enhancement would have the following work flow to create the same
effect:
1. Create the new paragraph style (call it Scene Separator).
2. Set the Alignment to centre.
3. In the Area -> Bitmap dialogue select the dingbat font and the text (a
letter 'f' in this case).
4. Create the bitmap.
5. Adjust the existing area parameters so that the new bitmap shows up in a
pleasing way.

Now the Scene Separator can simply be inserted where needed in the document. To
change the graphic element, simply modify the paragraph style to create a new
bitmap and use it.

The ability to enter several characters shouldn't change the required code
significantly as the whole string becomes one bitmap.

-- 
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 129817] Want a way to use text characters as a paragraph area bitmap.

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129817

--- Comment #3 from Gary Renshaw  ---
Created attachment 156954
  --> https://bugs.documentfoundation.org/attachment.cgi?id=156954=edit
Example of a scene separator

An example of a design element that might be created with the proposed feature.

-- 
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 129817] Want a way to use text characters as a paragraph area bitmap.

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129817

--- Comment #3 from Gary Renshaw  ---
Created attachment 156954
  --> https://bugs.documentfoundation.org/attachment.cgi?id=156954=edit
Example of a scene separator

An example of a design element that might be created with the proposed feature.

-- 
You are receiving this mail because:
You 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 129798] Crash in: SwViewShell::GetDoc() -- show print with a section in a footer with a hide condition

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129798

Mike Kaganski  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |mikekagan...@hotmail.com
   |desktop.org |

--- Comment #13 from Mike Kaganski  ---
https://gerrit.libreoffice.org/c/core/+/86253

-- 
You are receiving this mail because:
You 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 129819] Can't clone formatting from one list to another with clone tool

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129819

--- Comment #1 from mi...@tired.com ---
Created attachment 156953
  --> https://bugs.documentfoundation.org/attachment.cgi?id=156953=edit
Example with two lists

-- 
You are receiving this mail because:
You 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 129817] Want a way to use text characters as a paragraph area bitmap.

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129817

Regina Henschel  changed:

   What|Removed |Added

 CC||rb.hensc...@t-online.de

--- Comment #2 from Regina Henschel  ---
The use case is not clear. Do you want this characters as background with other
text in foreground? -> Make a fontwork object and put it background. Or do you
want to use it instead of normal text? -> Use the characters directly. Or?

-- 
You are receiving this mail because:
You 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 129819] New: Can't clone formatting from one list to another with clone tool

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129819

Bug ID: 129819
   Summary: Can't clone formatting from one list to another with
clone tool
   Product: LibreOffice
   Version: 6.3.3.2 release
  Hardware: All
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mi...@tired.com

Description:
When I use the clone tool from one bulleted list to another, I expect it will
clone the formatting of the first list to the second, but it doesn't.

Steps to Reproduce:
1.Make a bulleted list
2.Make a second with different formatting
3.Use the clone tool from List 1 to List 2

Actual Results:
Nothing happens

Expected Results:
List 1 formatting would move to List 2.


Reproducible: Always


User Profile Reset: No


OpenGL enabled: Yes

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

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


[Libreoffice-ux-advise] [Bug 129817] Want a way to use text characters as a paragraph area bitmap.

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129817

Regina Henschel  changed:

   What|Removed |Added

 CC||rb.hensc...@t-online.de

--- Comment #2 from Regina Henschel  ---
The use case is not clear. Do you want this characters as background with other
text in foreground? -> Make a fontwork object and put it background. Or do you
want to use it instead of normal text? -> Use the characters directly. Or?

-- 
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 129547] Default shortcut key for insert current time doesn't work (French)

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129547

--- Comment #12 from m.a.riosv  ---
It doesn't work for me on Win 10, with Spanish keyboard layout.
Version: 6.5.0.0.alpha0+ (x64)
Build ID: c97f9af5e47ea234ad709a1f66c1e8ed20640066
CPU threads: 4; OS: Windows 10.0 Build 19041; UI render: GL; VCL: win; 
Locale: es-ES (es_ES); UI-Language: en-US
Calc: threaded

I don't know how it can work without change the shortcut, at least on Spanish
layout, semicolon it's the capital of comma, so can't be reached with [ctrlç;]

-- 
You are receiving this mail because:
You 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 129814] conditional formatting rules split when they shouldnt

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129814

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #2 from m.a.riosv  ---
I think we can close as duplicate.
Please if you are not agree reopen it.

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

-- 
You are receiving this mail because:
You 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 87274] CONDITIONAL FORMATTING: Option for reunify ranges with same conditions

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=87274

m.a.riosv  changed:

   What|Removed |Added

 CC||paj...@gmail.com

--- Comment #27 from m.a.riosv  ---
*** Bug 129814 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 129812] EDITING: Changing cell format doesn't change how its text is shown

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129812

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m.a.riosv  ---
It is not a bug, change cell format never changes the cell content.

-- 
You are receiving this mail because:
You 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 129798] Crash in: SwViewShell::GetDoc() -- show print with a section in a footer with a hide condition

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129798

Telesto  changed:

   What|Removed |Added

 CC||kshitijpatha...@gmail.com
   Keywords|bibisectRequest |bibisected, bisected

--- Comment #12 from Telesto  ---
Adding CC to: Kshitij Pathania

-- 
You are receiving this mail because:
You 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 129798] Crash in: SwViewShell::GetDoc() -- show print with a section in a footer with a hide condition

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129798

--- Comment #11 from Telesto  ---
Bisected to:
author  Kshitij Pathania 2018-07-02 18:48:19
+0530
committer   Szymon Kłos  2018-07-04 12:46:01
+0200
commit  d05b7b32d9ecb6fcb4a268eb68cdcee09bafa6dd (patch)
treec82f797131cfbdfd8933daad0fea249b50c49ad6
parent  ea39c41fdf63191579d25f327db81db14862251c (diff)
Notebookbar:Context for printpreview is now working
Also the context stuff is now working well even
after print preview is set

https://cgit.freedesktop.org/libreoffice/core/commit/?id=d05b7b32d9ecb6fcb4a268eb68cdcee09bafa6dd

-- 
You are receiving this mail because:
You 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 129798] Crash in: SwViewShell::GetDoc() -- show print with a section in a footer with a hide condition

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129798

Telesto  changed:

   What|Removed |Added

   Keywords||bibisectRequest, regression

--- Comment #10 from Telesto  ---
No repro with
Versie: 6.0.4.1
Build ID: a63363f6506b8bdc5222481ce79ef33b2d13c741
CPU-threads: 4; Besturingssysteem: Windows 6.3; UI-render: GL; 
Locale: nl-NL (nl_NL); 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-bugs] [Bug 129818] Unable to change UI language in safe mode

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129818

Buovjaga  changed:

   What|Removed |Added

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

--- Comment #2 from Buovjaga  ---
I think there is a report for improving the options setting, so no restarts
would be needed for any option. I can't find the report now.

(In reply to Dagmara from comment #0)
> Expected Results:
> The user should have an option either to choose default language settings or
> to keep the previously chosen language settings

I don't think anything like this should be added to Safe mode.

-- 
You are receiving this mail because:
You 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 126252] Pasting a large amount of sheets with images is rather slow

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126252

Telesto  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You 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 99685] Slides are flashing buffer of prior slide at the end of "Fade" transition, or end of "Fine Dissolve" transition

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99685

Timur  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You 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 91456] "Fade smoothly" slide transition is broken

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=91456

Timur  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You 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 125885] Heavy page re-layouting/slowness when deleting a few bullet points in table (caused by footnotes)

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125885

Timur  changed:

   What|Removed |Added

   Priority|medium  |low
   Severity|normal  |minor

-- 
You are receiving this mail because:
You 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 129818] Unable to change UI language in safe mode

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129818

--- Comment #1 from Dagmara  ---
Created attachment 156952
  --> https://bugs.documentfoundation.org/attachment.cgi?id=156952=edit
safe mode dialog

-- 
You are receiving this mail because:
You 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 127592] [META] LibreOffice Basic incl."Option Compatible" modules

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=127592
Bug 127592 depends on bug 129596, which changed state.

Bug 129596 Summary: Typename function does not return the correct data type of 
a numeric constant
https://bugs.documentfoundation.org/show_bug.cgi?id=129596

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 129818] New: Unable to change UI language in safe mode

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129818

Bug ID: 129818
   Summary: Unable to change UI language in safe mode
   Product: LibreOffice
   Version: 6.4.0.1 rc
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: dagmara.gag...@gmail.com

Description:
I restarted Writer in safe mode and the language of the UI changed to default
(in my case - Polish). When I tried to change the language to English, it
forces to restart LO, but it restarts in normal mode. I restarted Writer in
safe mode and the situation repeated - UI was in Polish. It seems as if it was
impossible to set the language for safe mode.

Steps to Reproduce:
0. UI LO in English, default language of Windows - Polish
1. Help -> restart in safe mode -> confirm -> continue in safe mode
2. UI changed to default language (my case - Polish)
3. Tools -> options -> language settings -> languages -> English (US)
4. forces restart to change the language
5. Restarts in normal mode
6. Repeat step 1.
7. Again in default language

Actual Results:
User is unable to set any other language than default language in safe mode

Expected Results:
The user should have an option either to choose default language settings or to
keep the previously chosen language settings


Reproducible: Always


User Profile Reset: No



Additional Info:
Tested on:
Version: 6.4.0.1 (x64)
Build ID: 1b6477b31f0334bd8620a96f0aeeb449b587be9f
CPU threads: 4; OS: Windows 10.0 Build 18362; UI render: default; VCL: win; 
Locale: en-US (pl_PL); UI-Language: en-US
Calc: threaded

but the problem was the same on 6.3.4 (release)

and remains on:
Version: 6.5.0.0.alpha0+ (x64)
Build ID: 0b00112e112f80f9342f39e4d338d5a89e522ab9
CPU threads: 4; OS: Windows 10.0 Build 18362; UI render: GL; VCL: win; 
Locale: pl-PL (pl_PL); UI-Language: en-US
Calc: CL

The settings were according to attached screenshot.

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


[Libreoffice-bugs] [Bug 93529] [META] VCL/OpenGL rendering tracker bug for 5.0+

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93529
Bug 93529 depends on bug 118081, which changed state.

Bug 118081 Summary: MP4 not playing with K-Lite codec pack & OpenGL enabled
https://bugs.documentfoundation.org/show_bug.cgi?id=118081

   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 101522] [META] Media playback bugs and enhancements

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=101522
Bug 101522 depends on bug 118081, which changed state.

Bug 118081 Summary: MP4 not playing with K-Lite codec pack & OpenGL enabled
https://bugs.documentfoundation.org/show_bug.cgi?id=118081

   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 118081] MP4 not playing with K-Lite codec pack & OpenGL enabled

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118081

Timur  changed:

   What|Removed |Added

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

--- Comment #7 from Timur  ---
Report is not clear, I don't see why K-Lite is a condition.
If I understand well, I can media playback video in 6.5+.
But I can also with 6.2.
Anyway, I don't see point in this report until bug 62408 is resolved.

-- 
You are receiving this mail because:
You 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 129817] Want a way to use text characters as a paragraph area bitmap.

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129817

Buovjaga  changed:

   What|Removed |Added

 CC||ilmari.lauhakangas@libreoff
   ||ice.org,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org
   Keywords||needsUXEval

--- Comment #1 from Buovjaga  ---
This really sounds like a job for a 3rd party extension and not something that
belongs to the core.

-- 
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 129817] Want a way to use text characters as a paragraph area bitmap.

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129817

Buovjaga  changed:

   What|Removed |Added

 CC||ilmari.lauhakangas@libreoff
   ||ice.org,
   ||libreoffice-ux-advise@lists
   ||.freedesktop.org
   Keywords||needsUXEval

--- Comment #1 from Buovjaga  ---
This really sounds like a job for a 3rd party extension and not something that
belongs to the core.

-- 
You are receiving this mail because:
You 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 129817] New: Want a way to use text characters as a paragraph area bitmap.

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129817

Bug ID: 129817
   Summary: Want a way to use text characters as a paragraph area
bitmap.
   Product: LibreOffice
   Version: 3.3.0 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: g...@gwrenshaw.ca

Description:
The only way I can find to create a paragraph style that contains text as an
area is to use an external program to convert the text to an image and then
import it into the styles Area tab. This is awkward, especially if all I want
is a single character in a specific dingbat font.

It would be nice to have fields in the Area -> Bitmap dialogue that would allow
a short piece of text, a font, and a name to be specified.

A Create button would then convert the text to the desired font (preferably as
an SVG, which would eliminate the need for a font size option) and save it
under the specified name just as it would be with the Import button. The image
can then be used like any other image in the bitmap presets.

While this might seem like an esoteric feature, it would be incredibly handy
when designing books and using dingbats or other characters as markers between
scenes and in other design elements.

Steps to Reproduce:

2.
3.

Actual Results:
none

Expected Results:
Easy inclusion of text characters as a paragraph style in document designs.


Reproducible: Always


User Profile Reset: No



Additional Info:

-- 
You are receiving this mail because:
You 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 126990] Colours inverted in animated gif played in slideshow

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=126990

--- Comment #4 from opensuse.lietuviu.ka...@gmail.com ---
I CAN reproduce in LibreOffice  6.3.4.2 with kde5 backend in openSUSE Leap 15.1
with KDE Plasma 5.12.8 + Qt 5.9.7 + KF 5.55.

-- 
You are receiving this mail because:
You 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 129798] Crash in: SwViewShell::GetDoc() -- show print with a section in a footer with a hide condition

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129798

Mike Kaganski  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #9 from Mike Kaganski  ---
Steps:

1. In a new text document, Ctrl+F2 to open Fields dialog
2. Keeping Fields dialog, click Print Preview on toolbar.

-- 
You are receiving this mail because:
You 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 125709] FORMAT NUMBER DIALOG: Crash when changing language of date field

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125709

--- Comment #22 from opensuse.lietuviu.ka...@gmail.com ---
I can not reproduce in LibreOffice  6.3.4.2 with kde5 backend in openSUSE Leap
15.1 with KDE Plasma 5.12.8 + Qt 5.9.7 + KF 5.55, Fusion and Breeze styles
tested.

-- 
You are receiving this mail because:
You 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 129637] LibreOffice Impress does not have the ability to export a slide presentation with audio as MP4/video format

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129637

Timur  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #1 from Timur  ---
Not clear bug report.
Did you search before?
Is this a duplicate of bug 127764 or some other bug?
Export in which format? 
Can you attach sample and steps?

-- 
You are receiving this mail because:
You 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: basic/qa basic/source

2020-01-05 Thread U-DESKTOP-8OSNV7RDrRobotto (via logerrit)
 basic/qa/vba_tests/typename.vb   |6 ++
 basic/source/comp/exprgen.cxx|4 +++-
 basic/source/runtime/runtime.cxx |   14 --
 3 files changed, 21 insertions(+), 3 deletions(-)

New commits:
commit 0b4f8bf571baf2ccd5a8aafdc4deb41867420be3
Author: U-DESKTOP-8OSNV7R\DrRobotto 
AuthorDate: Tue Dec 24 12:22:34 2019 +0100
Commit: Mike Kaganski 
CommitDate: Sun Jan 5 21:42:27 2020 +0100

tdf#129596 Distinguish between integer and long while loading immediate 
values

During the generation of CONST_ expressions, distinguish between
integer and long and load the correct value in the immediate load step.

Change-Id: Ib4eb65d7fae3163043899ad8234816b1ebd7316b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/85779
Tested-by: Jenkins
Reviewed-by: Mike Kaganski 

diff --git a/basic/qa/vba_tests/typename.vb b/basic/qa/vba_tests/typename.vb
index 4ec2f3e31063..7e49a4d61cdc 100644
--- a/basic/qa/vba_tests/typename.vb
+++ b/basic/qa/vba_tests/typename.vb
@@ -61,6 +61,12 @@ Function verify_testTypeName() As String
 date1 = TypeName(l1)
 TestLog_ASSERT date1 = date2, "the return TypeName is: " & date1
 
+' tdf#129596 - Types of constant values
+TestLog_ASSERT TypeName(32767) = "Integer", "the return TypeName(32767) 
is: " & TypeName(32767)
+TestLog_ASSERT TypeName(-32767) = "Integer", "the return TypeName(-32767) 
is: " & TypeName(-32767)
+TestLog_ASSERT TypeName(1048575) = "Long", "the return TypeName(1048575) 
is: " & TypeName(1048575)
+TestLog_ASSERT TypeName(-1048575) = "Long", "the return TypeName(-1048575) 
is: " & TypeName(-1048575)
+
 result = result & Chr$(10) & "Tests passed: " & passCount & Chr$(10) & 
"Tests failed: " & failCount & Chr$(10)
 verify_testTypeName = result
 
diff --git a/basic/source/comp/exprgen.cxx b/basic/source/comp/exprgen.cxx
old mode 100644
new mode 100755
index d1ebb48c4c09..3981bef2fb5e
--- a/basic/source/comp/exprgen.cxx
+++ b/basic/source/comp/exprgen.cxx
@@ -72,8 +72,10 @@ void SbiExprNode::Gen( SbiCodeGen& rGen, RecursiveMode 
eRecMode )
 case SbxEMPTY:
 rGen.Gen( SbiOpcode::EMPTY_ );
 break;
+case SbxLONG:
 case SbxINTEGER:
-rGen.Gen( SbiOpcode::CONST_,  static_cast(nVal) );
+nStringId = rGen.GetParser()->aGblStrings.Add(nVal, eType);
+rGen.Gen( SbiOpcode::CONST_, nStringId );
 break;
 case SbxSTRING:
 nStringId = rGen.GetParser()->aGblStrings.Add( aStrVal );
diff --git a/basic/source/runtime/runtime.cxx b/basic/source/runtime/runtime.cxx
old mode 100644
new mode 100755
index d2cb9fe988b5..3a9cb95264d5
--- a/basic/source/runtime/runtime.cxx
+++ b/basic/source/runtime/runtime.cxx
@@ -2803,8 +2803,18 @@ void SbiRuntime::StepLOADSC( sal_uInt32 nOp1 )
 void SbiRuntime::StepLOADI( sal_uInt32 nOp1 )
 {
 SbxVariable* p = new SbxVariable;
-p->PutInteger( static_cast( nOp1 ) );
-PushVar( p );
+
+OUString aStr = pImg->GetString(static_cast(nOp1));
+double n = ::rtl::math::stringToDouble(aStr, '.', ',');
+if (n >= SbxMININT && n <= SbxMAXINT)
+{
+p->PutInteger(static_cast(n));
+}
+else
+{
+p->PutLong(static_cast(n));
+}
+PushVar(p);
 }
 
 // store a named argument in Argv (+Arg-no. from 1!)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 129816] New: Impress with OpenGL very slowly loads EMF or ends presentation on mouse click

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129816

Bug ID: 129816
   Summary: Impress with OpenGL very slowly loads EMF or ends
presentation on mouse click
   Product: LibreOffice
   Version: 6.0.7.3 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: bibisectRequest, regression
  Severity: normal
  Priority: medium
 Component: Impress
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gti...@gmail.com

3-slide PPTX attachment 156822 from bug 129675 has EMF in slide 3.
There's bug with OpenGL (HW-ACC regardless):
If I wait enough with just one click on slide 2 and not click again to advance
slide, I may see slide 3.
But if I click normally to advance, I don't come to see it in normal time and
presentation ends.
Seems to have started in 6.0, was good in 5.4.7, so I add bibisectRequest.

Note: original PPTX is attachment 156821 and trouble slide is 20 there.

-- 
You are receiving this mail because:
You 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 129815] New: Add option to insert QR Code to Insert Tab on Tabbed UI

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129815

Bug ID: 129815
   Summary: Add option to insert QR Code to Insert Tab on Tabbed
UI
   Product: LibreOffice
   Version: 6.4.0.0.alpha1+
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: enhancement
  Priority: medium
 Component: LibreOffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: drewjensen.in...@gmail.com

Description:
The current insert QR Code is via the top level menu only:
Insert->Object->QR Code

The Insert->Object sub_menu offers three options, Formula, QR Code and OLE
Object. 

Formula and OLE Object are also available on the Insert Tab when using the
Tabbed UI but the QR Code option is missing. 

Steps to Reproduce:
1. Open Writer or Draw
2. Switch to Tabbed UI
3. Switch to Insert Tab


Actual Results:
No way to insert QR Code without showing and using top level menu


Expected Results:
A button for QR code is available on the Insert Tab or on the Insert Tab
context menu in the upper left corner.


Reproducible: Always


User Profile Reset: No



Additional Info:

-- 
You are receiving this mail because:
You 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 102495] [META] KDE VCL backend bugs and enhancements

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102495
Bug 102495 depends on bug 113019, which changed state.

Bug 113019 Summary: menu text/background color does not follows desktop's 
color's theme
https://bugs.documentfoundation.org/show_bug.cgi?id=113019

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |FIXED

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


[Libreoffice-bugs] [Bug 113019] menu text/background color does not follows desktop's color's theme

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113019

opensuse.lietuviu.ka...@gmail.com changed:

   What|Removed |Added

 Resolution|--- |FIXED
 Status|NEEDINFO|RESOLVED

--- Comment #24 from opensuse.lietuviu.ka...@gmail.com ---
Closing as fixed

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


[Libreoffice-bugs] [Bug 123230] LibreOffice 6.2 crashed when I clicked Tools -> Options without a document open.

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123230

--- Comment #12 from Michael Weghorn  ---
(In reply to opensuse.lietuviu.kalba from comment #11)
> Please remove comment #9

Thanks for testing.
I've tagged the comment as obsolete, which makes it hidden by default.

-- 
You are receiving this mail because:
You 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 113019] menu text/background color does not follows desktop's color's theme

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113019

--- Comment #23 from opensuse.lietuviu.ka...@gmail.com ---
Created attachment 156951
  --> https://bugs.documentfoundation.org/attachment.cgi?id=156951=edit
LibreOffice 6.3.4.2 - seems OK

Seems fixed in LO 6.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 123230] LibreOffice 6.2 crashed when I clicked Tools -> Options without a document open.

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123230

--- Comment #11 from opensuse.lietuviu.ka...@gmail.com ---
Please remove comment #9

-- 
You are receiving this mail because:
You 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 123230] LibreOffice 6.2 crashed when I clicked Tools -> Options without a document open.

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123230

--- Comment #10 from opensuse.lietuviu.ka...@gmail.com ---
I can NOT reproduce this bug in KDE with kde5 VCL in LO 6.3.4.2

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


LibreOffice Android "Web Layout"

2020-01-05 Thread Tim Magee
To whom it may concern:

I am kind of a noob coder. I have maybe two commits in the LibreOffice 
codebase. I have a 
pet bug that has been bugging me for years and I was wondering if anybody could 
give 
me a little guidance. (If not, I understand, y'all are busy and do a great 
work). 

Anyway, I am trying to use Collabora Office Beta from Google Play. Currently it 
shows 
everything in "print layout". This makes it fairly hard to read and edit 
document. However, 
LibreOffice desktop actually has 2 layouts, "print" and "web". I want to make 
the "web" 
layout available on mobile so that it will be easier to view and edit documents 
on mobile. 
Google Docs has something similar and this is my biggest gripe coming over to 
LibreOffice from Google Docs.

>From what I understand, I will need to add something to LibreOfficeKit so that 
>we can 
switch layouts, and then I will need to add something to the user interface so 
that we can 
call the function to switch layouts. 

However, the codebase is large and complicated. Any pointers on how to find the 
where 
new things are added to LibreOfficeKit would be much appreciated.

Sincerely,
TIm Magee


signature.asc
Description: This is a digitally signed message part.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 123230] LibreOffice 6.2 crashed when I clicked Tools -> Options without a document open.

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=123230

--- Comment #9 from opensuse.lietuviu.ka...@gmail.com ---
I can reproduce this bug in KDE with kde5 VCL in LO 6.3.4.2

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


[Libreoffice-bugs] [Bug 129798] Crash in: SwViewShell::GetDoc() -- show print with a section in a footer with a hide condition

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129798

--- Comment #8 from sdc.bla...@youmail.dk ---
Also tested again with attachment 156950 and:

Version: 6.5.0.0.alpha0+ (x64)
Build ID: 444f0d256957544d26b9af9a0898364e829df1b5
CPU threads: 8; OS: Windows 10.0 Build 18363; UI render: GL; VCL: win; 
Locale: en-US (en_DK); UI-Language: en-US
Calc: CL

Again with "User Field" (and no value) and "Print Preview" - Crash

(claims to want to sent a report, but no URL is given, and then the crash
recovery procedure loops (until each step is cancelled or discarded).

-- 
You are receiving this mail because:
You 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 129798] Crash in: SwViewShell::GetDoc() -- show print with a section in a footer with a hide condition

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129798

--- Comment #7 from sdc.bla...@youmail.dk ---
Created attachment 156950
  --> https://bugs.documentfoundation.org/attachment.cgi?id=156950=edit
procedure for crash

Thanks to all for vigorous testing.

Attached is a test document (with instructions).

NB.  "Set Variable" does not create any problems.

I just tried (type) "User Field"  (without a value).

This yields a crash for me.  (have not tried other variations, because the
crashreport goes into a loop)

Here is the latest crashreport (where I shutdown and rebooted the machine, and
only opened LibreOffice before running the test.)

http://crashreport.libreoffice.org/stats/crash_details/0ea8185c-dff3-4657-9c96-7cde94687ccf

Version: 6.3.4.2 (x64)
Build ID: 60da17e045e08f1793c57c00ba83cdfce946d0aa
CPU threads: 8; OS: Windows 10.0; UI render: GL; VCL: win; 
Locale: da-DK (en_DK); UI-Language: en-US
Calc: threaded

Version 1909 
OS Build 18363.535

-- 
You are receiving this mail because:
You 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 129798] Crash in: SwViewShell::GetDoc() -- show print with a section in a footer with a hide condition

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129798

--- Comment #6 from Mike Kaganski  ---
Specifically I tried to create the field both inside the section, and in main
text body; the condition was just a variable name ("userF1"); I tried assigning
values 0 and 1 to the field.

-- 
You are receiving this mail because:
You 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 125257] [META] Tip of the day

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=125257
Bug 125257 depends on bug 128524, which changed state.

Bug 128524 Summary: tip of the day window missing line breaks
https://bugs.documentfoundation.org/show_bug.cgi?id=128524

   What|Removed |Added

 Status|RESOLVED|UNCONFIRMED
 Resolution|FIXED   |---

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


[Libreoffice-bugs] [Bug 129798] Crash in: SwViewShell::GetDoc() -- show print with a section in a footer with a hide condition

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129798

--- Comment #5 from Mike Kaganski  ---
No repro with Version: 6.4.0.1 (x64)
Build ID: 1b6477b31f0334bd8620a96f0aeeb449b587be9f
CPU threads: 12; OS: Windows 10.0 Build 18363; UI render: default; VCL: win; 
Locale: ru-RU (ru_RU); UI-Language: en-US
Calc: threaded

Possibly more detailed steps needed ("a condition"?, "create a user field" -
where? with what value - to hide or not?, "show print" - print preview or print
dialog or...?)

-- 
You are receiving this mail because:
You 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 129798] Crash in: SwViewShell::GetDoc() -- show print with a section in a footer with a hide condition

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129798

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

   What|Removed |Added

 CC||79045_79...@mail.ru

--- Comment #4 from Roman Kuznetsov <79045_79...@mail.ru> ---
no repro in

Версия: 6.5.0.0.alpha0+ (x64)
ID сборки: c97f9af5e47ea234ad709a1f66c1e8ed20640066
Потоков ЦП: 4; ОС:Windows 6.1 Service Pack 1 Build 7601; Отрисовка ИП: GL; VCL:
win; 
Локаль: ru-RU (ru_RU); Язык интерфейса: ru-RU
Calc: CL

win 10 only?

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


[Libreoffice-bugs] [Bug 129800] Change wording of PDF Export File encryption and Permission dialog in Writer for clarity

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129800

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

   What|Removed |Added

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

--- Comment #3 from Roman Kuznetsov <79045_79...@mail.ru> ---
These passwords are both for PDF document. One for opening a PDF file and
second for allowing of some actions for a PDF file like printing, editing, etc.

It think this enh is wontfix


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108694
[Bug 108694] [META] PDF export options dialog 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-ux-advise] [Bug 129800] Change wording of PDF Export File encryption and Permission dialog in Writer for clarity

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129800

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

   What|Removed |Added

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

--- Comment #3 from Roman Kuznetsov <79045_79...@mail.ru> ---
These passwords are both for PDF document. One for opening a PDF file and
second for allowing of some actions for a PDF file like printing, editing, etc.

It think this enh is wontfix


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108694
[Bug 108694] [META] PDF export options dialog bugs and enhancements
-- 
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 108694] [META] PDF export options dialog bugs and enhancements

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108694

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

   What|Removed |Added

 Depends on||129800


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=129800
[Bug 129800] Change wording of PDF Export File encryption and Permission dialog
in Writer for clarity
-- 
You are receiving this mail because:
You 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 129807] Replace "Database" and "Table" selectors in Envelope dialog with "Select Address List" button, like in Mail Merge Wizard

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129807

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

   What|Removed |Added

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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=110434
[Bug 110434] [META] Envelope 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-ux-advise] [Bug 129807] Replace "Database" and "Table" selectors in Envelope dialog with "Select Address List" button, like in Mail Merge Wizard

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129807

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

   What|Removed |Added

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


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=110434
[Bug 110434] [META] Envelope bugs and enhancements
-- 
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 110434] [META] Envelope bugs and enhancements

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=110434

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

   What|Removed |Added

 Depends on||129807


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=129807
[Bug 129807] Replace "Database" and "Table" selectors in Envelope dialog with
"Select Address List" button, like in Mail Merge Wizard
-- 
You are receiving this mail because:
You 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 129809] LibreOffice Writer crash while moving one letter with hyperlink in KDE Plasma 5 environement

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129809

--- Comment #1 from opensuse.lietuviu.ka...@gmail.com ---
Created attachment 156949
  --> https://bugs.documentfoundation.org/attachment.cgi?id=156949=edit
ODT for testing. Please try move character "5" with hyperlink.

I can consistently reproduce this bug with this ODT

-- 
You are receiving this mail because:
You 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 129809] LibreOffice Writer crash while moving one letter with hyperlink in KDE Plasma 5 environement

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129809

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

   What|Removed |Added

 Blocks||102495


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102495
[Bug 102495] [META] KDE VCL backend 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 102495] [META] KDE VCL backend bugs and enhancements

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102495

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

   What|Removed |Added

 Depends on||129809


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=129809
[Bug 129809] LibreOffice Writer crash while moving one letter with hyperlink in
KDE Plasma 5 environement
-- 
You are receiving this mail because:
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: error during first build on ubuntu 18.04

2020-01-05 Thread Ilmari Lauhakangas

Bruno Patin - wanadoo kirjoitti 2.1.2020 klo 17.39:

Hi

I began to work on macos to generate the libreoffice development 
environenment and as it went well proceeded to my actual target meaning 
linux and more precisely ubuntu 18.04. I tried to follow all the 
instructions as stated on the 
https://wiki.documentfoundation.org/Development/BuildingOnLinux address. 
Nevertheless it crashes on (I tried to provide as accurate as possible a 
translation of the french messages):


[CXX] sw/qa/extras/ooxmlexport/ooxmlexport14.cxx
{entrée standard | standard input}: Messages de l'assembleur: (assembly 
messages)
{entrée standard}:160123: Avertissement: fin du fichier n'est pas à la 
fin de la ligne ; nouvelle ligne insérée (warning: end of file is not at 
the end of line ; new line inserted)
{entrée standard}:160996: Erreur: opérandes invalides (sections *UND* et 
.gcc_except_table) pour « - »  (error: invalid operands for "-")
{entrée standard}:161094: Erreur: opérandes invalides (sections .text et 
*UND*) pour « - »

g++: internal compiler error: Processus arrêté (program cc1plus)
Please submit a full bug report,
with preprocessed source if appropriate.
See  for instructions.
/home/bruno/LO-dev/solenv/gbuild/LinkTarget.mk:294: recipe for target 
'/home/bruno/LO-dev/workdir/CxxObject/sc/qa/unit/ucalc.o' failed
make[1]: *** [/home/bruno/LO-dev/workdir/CxxObject/sc/qa/unit/ucalc.o] 
Error 4

make[1]: *** Attente des tâches non terminées
Makefile:282: recipe for target 'build' failed
make: *** [build] Error 2

I have the feeling it is somethnig not configured correctly but I don't 
know how to proceed


gcc -- version : ubuntu 7.5.0-3ubuntu1 18.04) 7.5.0


You can get English messages temporarily by running with

LC_ALL=C make

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


[Libreoffice-bugs] [Bug 118456] In Whitespace Mode Deleting a Page Break Leaves a Grey Line

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=118456

Dieter Praas  changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
You 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 129722] Writer - Hide white-space mode is buggy with impact on document content

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=129722

Dieter Praas  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO
   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=11
   ||8456
 CC||dgp-m...@gmx.de

--- Comment #2 from Dieter Praas  ---
Jul, thank you for reporting the bug. Some parts of your report might relate to
bug 118456. You also mention different aspects of problems with hide whitespace
option. Please open one bug report for each issue.

Please also attach a sample document, as this makes it easier for us to verify
the bug. 
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' once the requested document is provided.
(Please note that the attachment will be public, remove any sensitive
information before attaching it)

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


[Libreoffice-bugs] [Bug 113881] Missing scrollbar in the "Navigator" sidebar in Writer

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=113881

Buovjaga  changed:

   What|Removed |Added

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

--- Comment #10 from Buovjaga  ---
Yep, it's gone

-- 
You are receiving this mail because:
You 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 103030] [META] Navigator sidebar deck and floating window

2020-01-05 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103030
Bug 103030 depends on bug 113881, which changed state.

Bug 113881 Summary: Missing scrollbar in the "Navigator" sidebar in Writer
https://bugs.documentfoundation.org/show_bug.cgi?id=113881

   What|Removed |Added

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

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