[Libreoffice-bugs] [Bug 129908] Crash at Data > Group and outlone > AutoOutline

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

Julien Nabet  changed:

   What|Removed |Added

   Keywords||haveBacktrace

-- 
You are receiving this mail because:
You 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: solenv/bin xmloff/inc xmloff/source xmloff/util

2020-01-09 Thread Miklos Vajna (via logerrit)
 solenv/bin/native-code.py  |1 +
 xmloff/inc/facreg.hxx  |7 ---
 xmloff/source/core/facreg.cxx  |4 +---
 xmloff/source/draw/animationimport.cxx |   19 ++-
 xmloff/util/xo.component   |3 ++-
 5 files changed, 10 insertions(+), 24 deletions(-)

New commits:
commit 6996fc174121b80a0eb1079621fd766fab95117e
Author: Miklos Vajna 
AuthorDate: Thu Jan 9 21:06:23 2020 +0100
Commit: Miklos Vajna 
CommitDate: Fri Jan 10 08:36:30 2020 +0100

xmloff: create AnimationsImport instances with an uno constructor

See tdf#74608 for motivation.

Change-Id: I36a70b0657c4648a9f5cf69d67d4da4508099587
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86503
Tested-by: Jenkins
Reviewed-by: Miklos Vajna 

diff --git a/solenv/bin/native-code.py b/solenv/bin/native-code.py
index 420219729e2c..3cdcf933f84a 100755
--- a/solenv/bin/native-code.py
+++ b/solenv/bin/native-code.py
@@ -309,6 +309,7 @@ core_constructor_list = [
 "com_sun_star_comp_Draw_XMLOasisContentImporter_get_implementation",
 "com_sun_star_comp_Draw_XMLOasisMetaImporter_get_implementation",
 "com_sun_star_comp_Draw_XMLOasisSettingsImporter_get_implementation",
+"com_sun_star_comp_Xmloff_AnimationsImport",
 # xmlscript/util/xmlscript.component
 "com_sun_star_comp_xmlscript_XMLBasicExporter",
 "com_sun_star_comp_xmlscript_XMLBasicImporter",
diff --git a/xmloff/inc/facreg.hxx b/xmloff/inc/facreg.hxx
index 25b2334f0b1b..aea6ca9a23e4 100644
--- a/xmloff/inc/facreg.hxx
+++ b/xmloff/inc/facreg.hxx
@@ -31,13 +31,6 @@ namespace com { namespace sun { namespace star {
 namespace uno { class XInterface; }
 } } }
 
-// impress animation import
-OUString AnimationsImport_getImplementationName() throw();
-css::uno::Sequence AnimationsImport_getSupportedServiceNames() 
throw();
-/// @throws css::uno::Exception
-css::uno::Reference AnimationsImport_createInstance(
-css::uno::Reference const & rSMgr);
-
 // drawing layer export
 OUString XMLDrawingLayerExport_getImplementationName() throw();
 css::uno::Sequence XMLDrawingLayerExport_getSupportedServiceNames() 
throw();
diff --git a/xmloff/source/core/facreg.cxx b/xmloff/source/core/facreg.cxx
index 3233bb85a12f..cf214d3cdf33 100644
--- a/xmloff/source/core/facreg.cxx
+++ b/xmloff/source/core/facreg.cxx
@@ -54,10 +54,8 @@ XMLOFF_DLLPUBLIC void * xo_component_getFactory( const char 
* pImplName, void *
 
 const sal_Int32 nImplNameLen = strlen( pImplName );
 
-SINGLEFACTORY( AnimationsImport )
-
 // drawing layer export
-else SINGLEFACTORY( XMLDrawingLayerExport )
+SINGLEFACTORY( XMLDrawingLayerExport )
 
 // impress xml clipboard export
 else SINGLEFACTORY( XMLImpressClipboardExport )
diff --git a/xmloff/source/draw/animationimport.cxx 
b/xmloff/source/draw/animationimport.cxx
index fea0eac29ece..29df61897d53 100644
--- a/xmloff/source/draw/animationimport.cxx
+++ b/xmloff/source/draw/animationimport.cxx
@@ -70,6 +70,7 @@
 
 using namespace ::std;
 using namespace ::cppu;
+using namespace ::com::sun::star;
 using namespace ::com::sun::star::beans;
 using namespace ::com::sun::star::animations;
 using namespace ::com::sun::star::presentation;
@@ -87,16 +88,6 @@ using ::com::sun::star::container::XEnumeration;
 using ::com::sun::star::lang::XMultiServiceFactory;
 using ::com::sun::star::lang::XInitialization;
 
-Sequence< OUString > AnimationsImport_getSupportedServiceNames() throw()
-{
-return Sequence< OUString > { "com.sun.star.comp.Xmloff.AnimationsImport" 
};
-}
-
-OUString AnimationsImport_getImplementationName() throw()
-{
-return "xmloff::AnimationsImport";
-}
-
 static OUString
 lcl_GetMediaReference(SvXMLImport const& rImport, OUString const& rURL)
 {
@@ -1228,7 +1219,7 @@ private:
 }
 
 AnimationsImport::AnimationsImport( const Reference< XComponentContext > & 
rxContext )
-: SvXMLImport( rxContext, AnimationsImport_getImplementationName(), 
SvXMLImportFlags::META )
+: SvXMLImport( rxContext, "xmloff::AnimationsImport", SvXMLImportFlags::META )
 //FIXME: the above "IMPORT_META" used to be a nonsensical "true", question
 // remains whether this should be IMPORT_META (same numerical value as
 // true) or default IMPORT_ALL
@@ -1379,9 +1370,11 @@ void AnimationNodeContext::postProcessRootNode( const 
Reference< XAnimationNode
 
 } // namespace xmloff
 
-Reference< XInterface > AnimationsImport_createInstance(const Reference< 
XMultiServiceFactory > & rSMgr)
+extern "C" SAL_DLLPUBLIC_EXPORT uno::XInterface*
+com_sun_star_comp_Xmloff_AnimationsImport(uno::XComponentContext* pCtx,
+  uno::Sequence const& 
/*rSeq*/)
 {
-return static_cast(new xmloff::AnimationsImport( 
comphelper::getComponentContext(rSMgr) ));
+return cppu::acquire(new xmloff::AnimationsImport(pCtx));
 }
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git 

[Libreoffice-bugs] [Bug 128207] FILEOPEN: DOCX: Charts with absolute position are displayed on top of each other

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

Bakos Attila (NISZ)  changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 129915] Calc freezes (slow performance and high CPU usage) with column selection

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

Kevin Suo  changed:

   What|Removed |Added

   Keywords||perf

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


[Libreoffice-bugs] [Bug 129915] Calc freezes (slow performance and high CPU usage) with column selection

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

--- Comment #1 from Kevin Suo  ---
Created attachment 157049
  --> https://bugs.documentfoundation.org/attachment.cgi?id=157049=edit
Test ods file

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


[Libreoffice-bugs] [Bug 129915] New: Calc freezes (slow performance and high CPU usage) with column selection

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

Bug ID: 129915
   Summary: Calc freezes (slow performance and high CPU usage)
with column selection
   Product: LibreOffice
   Version: 6.3.4.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: suokunl...@126.com

Description:
Selecting columns in a spreadsheet is very slow with very high CPU usage.

Steps to Reproduce:
1. Open the attached test ods file.
2. Select the entire columns A:C (i.e., click on the column header A and drop
until header C).
3. Click any cell to release the selection 
4. Repeate step 2 and 3 several times.

Actual Results:
Calc freezes with 100% CPU usage of one core, and takes a long time for the
selection to complete.

Expected Results:
The selection should complete within 3 seconds.


Reproducible: Always


User Profile Reset: No



Additional Info:
Version: 6.3.4.2
Build ID: 60da17e045e08f1793c57c00ba83cdfce946d0aa
CPU 线程: 4; 操作系统: Linux 5.0; UI 渲染: 默认; VCL: gtk3; 
区域语言: zh-CN (zh_CN.UTF-8); UI 语言: zh-CN
Calc: threaded

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


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

2020-01-09 Thread Samuel Mehrbrodt (via logerrit)
 desktop/source/deployment/manager/dp_manager.cxx |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit 90cab308f52468edbf87a7f06a1ef99f146f03a5
Author: Samuel Mehrbrodt 
AuthorDate: Thu Jan 9 16:57:16 2020 +0100
Commit: Samuel Mehrbrodt 
CommitDate: Fri Jan 10 08:26:41 2020 +0100

unopkg: Remove too verbose logging

This adds several lines of 'Extension x not found' when installing
an extension with 'unopkg add'.
Since it's expected that the extension is not yet there when installing it,
remove this logging.

Change-Id: Ifc2ea5fa04253a96fee60016a65505e0d1f2722c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86516
Reviewed-by: Samuel Mehrbrodt 
Tested-by: Samuel Mehrbrodt 

diff --git a/desktop/source/deployment/manager/dp_manager.cxx 
b/desktop/source/deployment/manager/dp_manager.cxx
index 78ad04945c5a..b592a77c152b 100644
--- a/desktop/source/deployment/manager/dp_manager.cxx
+++ b/desktop/source/deployment/manager/dp_manager.cxx
@@ -1066,8 +1066,7 @@ Reference 
PackageManagerImpl::getDeployedPackage(
 const ::osl::MutexGuard guard( getMutex() );
 return getDeployedPackage_( id, fileName, xCmdEnv );
 }
-catch (const lang::IllegalArgumentException & exc) {
-logIntern( Any(exc) );
+catch (const lang::IllegalArgumentException &) {
 throw;
 }
 catch (const RuntimeException &) {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 102187] [META] Options dialog bugs and enhancements

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

Bug 125139 Summary: Ticking / unticking the "Field shadings" checkbox in 
Options > Application Colors has no effect, while Ctrl+F8 does
https://bugs.documentfoundation.org/show_bug.cgi?id=125139

   What|Removed |Added

 Status|REOPENED|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 125139] Ticking / unticking the "Field shadings" checkbox in Options > Application Colors has no effect, while Ctrl+F8 does

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

Heiko Tietze  changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
 Status|REOPENED|RESOLVED

--- Comment #8 from Heiko Tietze  ---
WFM since apply works as expected in 6.2.8.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-ux-advise] [Bug 125139] Ticking / unticking the "Field shadings" checkbox in Options > Application Colors has no effect, while Ctrl+F8 does

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

Heiko Tietze  changed:

   What|Removed |Added

 Resolution|--- |WORKSFORME
 Status|REOPENED|RESOLVED

--- Comment #8 from Heiko Tietze  ---
WFM since apply works as expected in 6.2.8.2

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


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

2020-01-09 Thread Xisco Fauli (via logerrit)
 oox/source/drawingml/chart/plotareaconverter.cxx |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit aa499120c4cb3935cd942751859b6d5d3689ea43
Author: Xisco Fauli 
AuthorDate: Thu Jan 9 13:00:35 2020 +0100
Commit: Noel Grandin 
CommitDate: Fri Jan 10 08:13:12 2020 +0100

oox: add missing nullptr checks

See

http://crashreport.libreoffice.org/stats/signature/oox::drawingml::chart::PlotAreaConverter::convertFromModel(oox::drawingml::chart::View3DModel%20&)

Regression from 11473832b5717cb3222ce72baee885bc9e8e2386

Change-Id: I6cf08582fb384203ca1ce5736b88b85c11ff56da
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86483
Tested-by: Jenkins
Reviewed-by: Noel Grandin 

diff --git a/oox/source/drawingml/chart/plotareaconverter.cxx 
b/oox/source/drawingml/chart/plotareaconverter.cxx
index 24ab5f0bfd3e..af3139618824 100644
--- a/oox/source/drawingml/chart/plotareaconverter.cxx
+++ b/oox/source/drawingml/chart/plotareaconverter.cxx
@@ -415,7 +415,8 @@ void PlotAreaConverter::convertFromModel( View3DModel& 
rView3DModel )
 bool bSupportsVaryColorsByPoint = mrModel.maTypeGroups.size() == 1;
 
 // convert all axes sets, and check which axis is attached to the first 
maTypeGroups
-sal_Int32 nStartAxesSetIdx = (rValAxisIds.size() > 1 && 
aAxesSets[0]->maAxes[1]->mnAxisId != rValAxisIds[0] ) ? 1 : 0;
+sal_Int32 nStartAxesSetIdx = (rValAxisIds.size() > 1 && aAxesSets.size() > 
0 && aAxesSets[0]->maAxes.count( API_Y_AXIS )
+&& aAxesSets[0]->maAxes[ API_Y_AXIS ]->mnAxisId != rValAxisIds[0] 
) ? 1 : 0;
 sal_Int32 nAxesSetIdx = nStartAxesSetIdx;
 
 for (auto const& axesSet : aAxesSets)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 129899] hyperlink() not working

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

--- Comment #4 from Mike Kaganski  ---
(In reply to CSLam from comment #3)
> 2. While appreciating the meaning of "#" in the technical world, this
> particular thing is a valid filename character.  In other words, there are
> indeed files in the world that bears "#", which is not meant for the said
> technical spearation.  A good example is "Receiveable Account
> #000-0-000.ods".  I believe it is obvious that this file refers to a
> particular account, but not anything else.

No. It is *not* obvious. "#" in URL is a *point in a document* (like an entry
of Contents you may see on any Wikipedia page, which leads you to a heading
inside this same page); it is not something "technical" - it's something
without which you *cannot* say "Open document X and navigate to chapter Y". So
proper use of # is essential when working with links - and no amount or
reasoning that "average people" should be comfortable with it will change that
fact. When using HYPERLINK spreadsheet function, user *must* learn URLs and
their peculiarities - because those are not separable; and the very existence
of ENCODEURL function is because of those complexities.

> 3. I do not know if it is correct to say so, but the "#" character in the
> URL is inside quotes, not outside.  It looks strange why LibreOffice is not
> interpreting the entire piece as a single string, but doing some
> manipulation prior to relaying the information to somewhere.

Quotes is Calc way to pass strings to functions; and entire URL, including the
fragment will necessarily be inside quotes - it would be a syntax error if #
and fragment were outside. So this argument is incorrect.

However, and having said all that, I repeat that for me, HYPERLINK works as
*you* would expect (i.e., *wrong*) with LO 6.4.0.1 - so possibly you need to
explain better what doesn't work for you, *with a sample file*.

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


[Libreoffice-bugs] [Bug 129899] hyperlink() not working

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

--- Comment #3 from CSLam  ---
Appreciate your explanation, which appears to tell why Calc is performing in
such a manner.  Yet, this is ony a technical explanation of the situation, but
the issue remains unresolved.  LibreOffice is designed for the average people,
I guess, who may not be technically inclined.  I am seeing some issues here :-

1. There was not such an issue in the past, and "#" embedded in URL had been
working perfectly, until more recentely; I think trouble begins from version
6.4.  As such, at least in my case, there have been a good volume of
spreadsheets already created with "#" embedded URL.  The change as introduced
more recently is practically asking the public to revise everything, if they
want not to see the error.

2. While appreciating the meaning of "#" in the technical world, this
particular thing is a valid filename character.  In other words, there are
indeed files in the world that bears "#", which is not meant for the said
technical spearation.  A good example is "Receiveable Account
#000-0-000.ods".  I believe it is obvious that this file refers to a
particular account, but not anything else.

3. I do not know if it is correct to say so, but the "#" character in the URL
is inside quotes, not outside.  It looks strange why LibreOffice is not
interpreting the entire piece as a single string, but doing some manipulation
prior to relaying the information to somewhere.

Naturally, I still hope LibreOffice can be updated to return to the previous
URL handling.

CSLam

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


[Libreoffice-bugs] [Bug 123839] window frame too wide - mouse doesn't touch scrollbar

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

--- Comment #6 from Jeniifer  ---
It is a nice article. In this article, the author share some reasons for the
mouse doesn't work properly. Anyone can follow these steps to solve this error.
http://healwithcannabidiol.com

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


[Libreoffice-bugs] [Bug 125848] Text orientation from master does not properly apply to other pages

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

--- Comment #4 from QA Administrators  ---
Dear jakelewis2010,

Please read this message in its entirety before proceeding.

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

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

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

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

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

e) Read all comments and provide any requested information

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

a) respond via email 

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

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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


[Libreoffice-bugs] [Bug 125848] Text orientation from master does not properly apply to other pages

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

QA Administrators  changed:

   What|Removed |Added

 Resolution|--- |INSUFFICIENTDATA
 Status|NEEDINFO|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-bugs] [Bug 129169] HELP: "Selecting a new color" page needs to improve "To access this command..." section.

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

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 129221] Numbered bullets don't restart after header in importred .docx file

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

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

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


[Libreoffice-bugs] [Bug 129636] LibreOffice Impress does not have an integrated record audio with a microphone feature

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

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 129221] Numbered bullets don't restart after header in importred .docx file

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

QA Administrators  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

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


[Libreoffice-bugs] [Bug 122279] Feature Request: Hyperlink creation dialog should have option to enter exact href= text that will remain unmodified

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

--- Comment #6 from QA Administrators  ---
Dear Tom Sullivan,

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 124253] It unexpectedly closes libreoffice calc (macros problem)

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

--- Comment #12 from QA Administrators  ---
Dear Eduardo Castillo,

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 129627] Use soffice docx convert to pdf display style error.

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

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 128783] Cannot "unlist" List Items in Impress Tables

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

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-ux-advise] [Bug 122279] Feature Request: Hyperlink creation dialog should have option to enter exact href= text that will remain unmodified

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

--- Comment #6 from QA Administrators  ---
Dear Tom Sullivan,

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 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 126381] Crash in: Gdiplus::TextureBrush::TextureBrush(Gdiplus::Image *, Gdiplus::WrapMode)

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

--- Comment #2 from QA Administrators  ---
Dear Peter Cannon,

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 122936] Cannot Assign a macro to a button in Libre Office 6.1 in Linux Mint Mate 19.0 Libre Offices crashes.

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

--- Comment #14 from QA Administrators  ---
Dear Rickie,

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 122192] Converting docx in headless mode hangs

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

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

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 129846] Missing Extra Large (32px*32px) Sifr Icons

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

Commit Notification  changed:

   What|Removed |Added

 Whiteboard||target:6.5.0

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


[Libreoffice-bugs] [Bug 129846] Missing Extra Large (32px*32px) Sifr Icons

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

--- Comment #1 from Commit Notification 
 ---
Rizal Muttaqin committed a patch related to this issue.
It has been pushed to "master":

https://git.libreoffice.org/core/commit/7430664d2b9dc6f094f61e0ce9f4a3adbfcefe36

Sifr: Fix for tdf#127415, tdf#129846

It will be available in 6.5.0.

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

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

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


[Libreoffice-bugs] [Bug 34355] Option to show track changes in margin is missing

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

--- Comment #106 from swastik angar  ---
Thanks for sharing this article. loved to read it
https://recipewale.com/malai-kofta-recipe/

-- 
You are receiving this mail because:
You 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 34355] Option to show track changes in margin is missing

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

--- Comment #106 from swastik angar  ---
Thanks for sharing this article. loved to read it
https://recipewale.com/malai-kofta-recipe/

-- 
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 129169] HELP: "Selecting a new color" page needs to improve "To access this command..." section.

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

--- Comment #1 from sdc.bla...@youmail.dk ---
@Mike, some considerations:

How did "ask.libreoffice.org" question encounter this command/help page?

(In L06.3 Calc)
1. F1
2. type "color" into Index search field
3. click on "defining -- colors" or "colors -- adding"
4. The URL you cited appears.

This guess may explain how the question arose.  But the appropriate response
may be more complicated.

Suggestion 1:  Probably these two links "defining -- colors" and "colors --
adding" should go to: 
https://help.libreoffice.org/6.5/en-US/text/shared/01/05210100.html

Suggestion 2:   This page seems like the "right" page / place for giving advice
defining colors.  (including a link to the Color picker page). 

It is possible that for some "custom color" means "select one of the
preexisting colors" -- which the Area tab should help explain (or give a link
to a relevant page).

But this advice is not there (and I could not find another help page that
discusses how to use the Color within Area.)  

+ (I can see that it is currently missing access for "Calc", which I can add,
and make them say "Background" instead of "Area")
+  And willing to add some commonly used access paths.  
  - Advice/suggestions on both points appreciated.

Suggestion 3.  
  Search on "custom color" in the Help Index.  
  Only "Draw" comes up, with the link to the Color Picker page.  
  Seems relevant to add bookmarks(?) for "custom colors" for the other modules.

Suggestion 4:  Modify the color picker page (01010501.html), to indicate that
the picker is accessed from the Area tab page (and link to the Area tab help,
05210100.html) (presupposes that the Color Picker dialog can only be accessed
from the Area tab.)  Gives a simple solution for showing all the different
access routes, without having to add them directly to the color picker page. 

Most of these points require input from more knowledgeable persons.

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


[Libreoffice-bugs] [Bug 129914] New: Menu items for master keep being active and affect pages although master view has been closed

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

Bug ID: 129914
   Summary: Menu items for master keep being active and affect
pages although master view has been closed
   Product: LibreOffice
   Version: 6.3.4.2 release
  Hardware: All
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Draw
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gerhard.we...@t-online.de

Created attachment 157048
  --> https://bugs.documentfoundation.org/attachment.cgi?id=157048=edit
test document tobe used, details in the bug report

Menu items New Master and Delete Master keep being active after master view has
been switched on and off, and they act in a different way, namely creating or
deleting pages instead of masters.
Steps to reproduce:
Open the attachment, which contains 3 pages with irrelevant content and two
masters, of which the second, named "mei", is not connected to any page, so
deletion is possible.
Select View -> Master, select the second master "mei" (to activate the menu
items, at leat the delete item), then close this view by using the symbol of
the toolbar "Master View". The same effect may be got by closing the master
view using View -> Normal, but there it seems that the reaction depends on
whether the focus was on the working area containing a page of the drawing in
the meantime, so there is still no exact scenario to be followed, although the
problem could be reproduced also for this situation.
The menu items Page -> New Master or ...Delete Master are still active.
Moreover, if you use them, they will not affect a master, but the current page
of the document instead.

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


Please review "Correct import draw:transform values skewY and matrix"

2020-01-09 Thread Regina Henschel

Hi all,

I'm looking for reviewer for 
https://gerrit.libreoffice.org/#/c/core/+/86244/


It is in the main about correctly reading ODF files, where the 
draw:transform attribute contains skewY() or matrix().


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


[Libreoffice-bugs] [Bug 129661] [META] Right-To-Left (RTL) user interface issues

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||120206


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=120206
[Bug 120206] When switching keyboard layout, scrolling should not behave as
though Scroll Lock was toggled
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues (RTL/CTL)

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on|120615  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=120615
[Bug 120615] Ctrl+LShift, Ctrl+RShift not setting direction in Impress
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 129661] [META] Right-To-Left (RTL) user interface issues

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||120615


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=120615
[Bug 120615] Ctrl+LShift, Ctrl+RShift not setting direction in Impress
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues (RTL/CTL)

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on|120206  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=120206
[Bug 120206] When switching keyboard layout, scrolling should not behave as
though Scroll Lock was toggled
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 120206] When switching keyboard layout, scrolling should not behave as though Scroll Lock was toggled

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks|43808   |129661


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=43808
[Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues
(RTL/CTL)
https://bugs.documentfoundation.org/show_bug.cgi?id=129661
[Bug 129661] [META] Right-To-Left (RTL) user interface issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 129661] [META] Right-To-Left (RTL) user interface issues

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||121584


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=121584
[Bug 121584] Ctrl+LShift, Ctrl+RShift not setting direction in comments
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 121584] Ctrl+LShift, Ctrl+RShift not setting direction in comments

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks|43808   |129661


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=43808
[Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues
(RTL/CTL)
https://bugs.documentfoundation.org/show_bug.cgi?id=129661
[Bug 129661] [META] Right-To-Left (RTL) user interface issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 120615] Ctrl+LShift, Ctrl+RShift not setting direction in Impress

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks|43808   |129661


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=43808
[Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues
(RTL/CTL)
https://bugs.documentfoundation.org/show_bug.cgi?id=129661
[Bug 129661] [META] Right-To-Left (RTL) user interface issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues (RTL/CTL)

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on|121584  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=121584
[Bug 121584] Ctrl+LShift, Ctrl+RShift not setting direction in comments
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 128640] Numbering List Presets in Bulgarian (4x), Russian (4x), Serbian (4x)

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

Maxim Monastirsky  changed:

   What|Removed |Added

 CC||momonas...@gmail.com

--- Comment #6 from Maxim Monastirsky  ---
Keep in mind that these presets might be used in existing documents, and that
they're part of our public API. So it might not be that easy to remove them
completely. Of course we can just hide them from UI, while keeping the
underlying code working. But then it isn't clear what to do if such document is
opened, and the user opens the bullets dialog. And above all, I don't think we
should remove anything, as long as there is no way for the user to define his
own formats.

As for the UI: The current list isn't (yet?) too long, so I don't see any
particular problem with it. And we can always move less used items to the
bottom of the list, if needed.

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


MacUpdate - your app listing has been updated

2020-01-09 Thread MacUpdate
Title: Untitled Document








  




  




  




  

  
  

  
  

  

  

   App Listing Updated
  Hi The Document Foundation, We have updated your application listing for LibreOffice 6.3.4.2 on MacUpdate.com. Please take a moment to review your application's information to make sure that everything is correct. 
 	
  
  

  
View your updated app listing 
  

  
  
You can login to your Developer Account to reply to comments and view stats, or submit new updates and changes to your app listing.
  

  

  
  

  

		
		
  

		
		
 
		
		
  
  
Desktop Install Compatibility
  MacUpdate Desktop 6 is helping developers  make it easier for users to fully install and use their apps. Download Desktop 6 and to ensure your app works with the “Install” link on our download pages.
		  
		  
   
		  
		  
		  
  
	  
	  
	  

  

  
  

  

Advertise With MacUpdate
The best Mac devs advertise their apps on MacUpdate.com because it’s the most targeted, highly performing Mac app advertising you can find on the web. Contact a...@macupdate.com to guarantee your annual ad campaigns get booked and expand your app’s audience.

  
  



  
Learn more

  



  

  
  

  
Questions? Contact our Content Update Team upda...@macupdate.com.
  

  
  

  
  

  
You are receiving this offer because you have an app listed on MacUpdate.com. Add us to your address book or white list to ensure reliable delivery.
	
  © 2018 MacUpdate  - All Rights Reserved
  526 W. 14th St. #100 • Traverse City, MI 49684
  

  




  




  




  








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


[Libreoffice-commits] core.git: include/sfx2 sfx2/source

2020-01-09 Thread Michael Meeks (via logerrit)
 include/sfx2/sidebar/Deck.hxx |2 ++
 sfx2/source/sidebar/Deck.cxx  |   38 ++
 2 files changed, 40 insertions(+)

New commits:
commit b6295e4a1b7735c148174f44f6d28221f4f52302
Author: Michael Meeks 
AuthorDate: Thu Jan 9 16:43:11 2020 +
Commit: Michael Meeks 
CommitDate: Thu Jan 9 23:30:33 2020 +0100

lok: simplify jsdialog creation for sidebar panels.

Remove some layers of nested and/or un-necessary content, also
simplifies client-side JS.

Change-Id: I67347035ceb9dbee9c62c99624b5084883d4e61a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86499
Tested-by: Jenkins
Reviewed-by: Michael Meeks 

diff --git a/include/sfx2/sidebar/Deck.hxx b/include/sfx2/sidebar/Deck.hxx
index 65b44d7efc11..98738d814a7e 100644
--- a/include/sfx2/sidebar/Deck.hxx
+++ b/include/sfx2/sidebar/Deck.hxx
@@ -66,6 +66,8 @@ public:
 virtual bool EventNotify(NotifyEvent& rEvent) override;
 virtual void Resize() override;
 
+virtual boost::property_tree::ptree DumpAsPropertyTree() override;
+
 static void PrintWindowSubTree (vcl::Window* pRoot, int nIndentation);
 
 sal_Int32 GetMinimalWidth() const { return mnMinimalWidth; }
diff --git a/sfx2/source/sidebar/Deck.cxx b/sfx2/source/sidebar/Deck.cxx
index a015b0db2bd6..563f1e229a60 100644
--- a/sfx2/source/sidebar/Deck.cxx
+++ b/sfx2/source/sidebar/Deck.cxx
@@ -36,7 +36,9 @@
 #include 
 #include 
 #include 
+#include 
 #include 
+#include 
 #include 
 
 using namespace css;
@@ -189,6 +191,42 @@ void Deck::Resize()
 }
 }
 
+/*
+ * Get the ordering as is shown in the layout, and our type as 'deck'
+ * also elide nested panel windows.
+ */
+boost::property_tree::ptree Deck::DumpAsPropertyTree()
+{
+boost::property_tree::ptree aTree;
+aTree.put("id", get_id());  // TODO could be missing - sort out
+aTree.put("type", "deck");
+aTree.put("text", GetText());
+aTree.put("enabled", IsEnabled());
+
+boost::property_tree::ptree aChildren;
+for (auto  : maPanels)
+{
+if (it->IsLurking())
+continue;
+
+// collapse the panel itself out
+auto xContent = it->GetElementWindow();
+if (!xContent.is())
+continue;
+VclPtr pWindow = VCLUnoHelper::GetWindow(xContent);
+if (!pWindow)
+continue;
+
+boost::property_tree::ptree aChild = pWindow->DumpAsPropertyTree();
+aChild.put("text", it->GetText());
+aChild.put("type", "panel");
+aChildren.push_back(std::make_pair("", aChild));
+}
+
+aTree.add_child("children", aChildren);
+return aTree;
+}
+
 bool Deck::ProcessWheelEvent(CommandEvent const * pCommandEvent)
 {
 if ( ! mpVerticalScrollBar)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.2' - include/sfx2 sfx2/source

2020-01-09 Thread Michael Meeks (via logerrit)
 include/sfx2/sidebar/Deck.hxx |2 ++
 sfx2/source/sidebar/Deck.cxx  |   37 +
 2 files changed, 39 insertions(+)

New commits:
commit c6c92d01e6f6d8a962c9f452e8fb32cb3e3a41b1
Author: Michael Meeks 
AuthorDate: Thu Jan 9 16:43:11 2020 +
Commit: Michael Meeks 
CommitDate: Thu Jan 9 23:30:43 2020 +0100

lok: simplify jsdialog creation for sidebar panels.

Remove some layers of nested and/or un-necessary content, also
simplifies client-side JS.

Change-Id: I67347035ceb9dbee9c62c99624b5084883d4e61a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86498
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Michael Meeks 

diff --git a/include/sfx2/sidebar/Deck.hxx b/include/sfx2/sidebar/Deck.hxx
index 4c9558a1966b..23540f017172 100644
--- a/include/sfx2/sidebar/Deck.hxx
+++ b/include/sfx2/sidebar/Deck.hxx
@@ -68,6 +68,8 @@ public:
 virtual bool EventNotify(NotifyEvent& rEvent) override;
 virtual void Resize() override;
 
+virtual boost::property_tree::ptree DumpAsPropertyTree() override;
+
 static void PrintWindowSubTree (vcl::Window* pRoot, int nIndentation);
 
 sal_Int32 GetMinimalWidth() const { return mnMinimalWidth; }
diff --git a/sfx2/source/sidebar/Deck.cxx b/sfx2/source/sidebar/Deck.cxx
index 60ea6b71ebba..6def9683727e 100644
--- a/sfx2/source/sidebar/Deck.cxx
+++ b/sfx2/source/sidebar/Deck.cxx
@@ -36,6 +36,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 
@@ -180,6 +181,42 @@ void Deck::Resize()
 Window::Resize();
 }
 
+/*
+ * Get the ordering as is shown in the layout, and our type as 'deck'
+ * also elide nested panel windows.
+ */
+boost::property_tree::ptree Deck::DumpAsPropertyTree()
+{
+boost::property_tree::ptree aTree;
+aTree.put("id", get_id());  // TODO could be missing - sort out
+aTree.put("type", "deck");
+aTree.put("text", GetText());
+aTree.put("enabled", IsEnabled());
+
+boost::property_tree::ptree aChildren;
+for (auto  : maPanels)
+{
+if (it->IsLurking())
+continue;
+
+// collapse the panel itself out
+auto xContent = it->GetElementWindow();
+if (!xContent.is())
+continue;
+VclPtr pWindow = VCLUnoHelper::GetWindow(xContent);
+if (!pWindow)
+continue;
+
+boost::property_tree::ptree aChild = pWindow->DumpAsPropertyTree();
+aChild.put("text", it->GetText());
+aChild.put("type", "panel");
+aChildren.push_back(std::make_pair("", aChild));
+}
+
+aTree.add_child("children", aChildren);
+return aTree;
+}
+
 bool Deck::ProcessWheelEvent(CommandEvent const * pCommandEvent)
 {
 if ( ! mpVerticalScrollBar)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 129257] Norton.com/setup

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

Timur  changed:

   What|Removed |Added

 Resolution|FIXED   |INVALID

-- 
You are receiving this mail because:
You 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] online.git: loleaflet/src

2020-01-09 Thread Michael Meeks (via logerrit)
 loleaflet/src/control/Control.JSDialogBuilder.js |   12 +--
 loleaflet/src/control/Control.MobileWizard.js|   81 +--
 2 files changed, 40 insertions(+), 53 deletions(-)

New commits:
commit 7c29eb06ea2b8dad91a7836be3c387565658ad45
Author: Michael Meeks 
AuthorDate: Thu Jan 9 14:56:43 2020 +
Commit: Michael Meeks 
CommitDate: Thu Jan 9 23:31:18 2020 +0100

panel/wizard: adapt to new simpler 'deck' and 'panel' hierarchy.

Avoid lots of indirection and complexity based on the new,
simplified sidebar JSON hierarchy from the core.

Change-Id: I73d5c6af30d40e9a430e0f3df3b78b620f425e39
Reviewed-on: https://gerrit.libreoffice.org/c/online/+/86510
Tested-by: Jenkins CollaboraOffice 
Reviewed-by: Michael Meeks 
Tested-by: Michael Meeks 

diff --git a/loleaflet/src/control/Control.JSDialogBuilder.js 
b/loleaflet/src/control/Control.JSDialogBuilder.js
index b704ddfdf..d4f58b470 100644
--- a/loleaflet/src/control/Control.JSDialogBuilder.js
+++ b/loleaflet/src/control/Control.JSDialogBuilder.js
@@ -1518,16 +1518,14 @@ L.Control.JSDialogBuilder = L.Control.extend({
var childObject = needsToCreateContainer ? 
L.DomUtil.createWithId('div', childData.id, parent) : parent;
 
var handler = this._controlHandlers[childType];
-   var twoPanelsAsChildren = childData.children
-   && (childData.children.length == 4 || 
childData.children.length == 5)
-   && childData.children[0] && 
childData.children[0].type == 'panel'
-   && childData.children[2] && 
childData.children[2].type == 'panel';
+   var twoPanelsAsChildren =
+   childData.children && childData.children.length == 2
+   && childData.children[0] && 
childData.children[0].type == 'panel'
+   && childData.children[1] && 
childData.children[1].type == 'panel';
 
if (twoPanelsAsChildren) {
-   var tabsData = [childData.children[0], 
childData.children[2]];
-
handler = this._controlHandlers['paneltabs'];
-   processChildren = handler(childObject, 
tabsData, this);
+   processChildren = handler(childObject, 
childData.children, this);
} else {
if (handler)
processChildren = handler(childObject, 
childData, this);
diff --git a/loleaflet/src/control/Control.MobileWizard.js 
b/loleaflet/src/control/Control.MobileWizard.js
index d8145c05a..f07da4911 100644
--- a/loleaflet/src/control/Control.MobileWizard.js
+++ b/loleaflet/src/control/Control.MobileWizard.js
@@ -248,9 +248,8 @@ L.Control.MobileWizard = L.Control.extend({
 
_onMobileWizard: function(data) {
if (data) {
-   var isSidebar = data.id !== 'insert' && data.id !== 
'menubar'
-   && data.id !== 'insertshape' && data.id !== 
'funclist'
-   && data.executionType !== 'menu';
+   var isSidebar = (data.children && data.children.length 
>= 1 &&
+data.children[0].type == 'deck');
 
if (!this._isActive && isSidebar) {
if (this.map.showSidebar == false)
@@ -271,10 +270,9 @@ L.Control.MobileWizard = L.Control.extend({
this._showWizard();
this._hideKeyboard();
 
-   // We can change the sidebar as we want here
-   if (data.id === '') { // sidebar indicator
+   // Morph the sidebar into something prettier
+   if (isSidebar)
this._modifySidebarLayout(data);
-   }
 
L.control.jsDialogBuilder({mobileWizard: this, map: 
this.map}).build(this.content.get(0), [data]);
 
@@ -309,53 +307,44 @@ L.Control.MobileWizard = L.Control.extend({
},
 
_modifySidebarLayout: function (data) {
-   this._mergeStylesAndTextPropertyPanels(data);
-   this._removeItems(data, ['editcontour']);
-   },
-
-   _mergeStylesAndTextPropertyPanels: function (data) {
-   var stylesChildren = this._removeStylesPanelAndGetContent(data);
-   if (stylesChildren !== null) {
-   this._addChildrenToTextPanel(data, stylesChildren);
-   }
-   },
-
-   _removeStylesPanelAndGetContent: function (data) {
-   if (data.children) {
-   for (var i = 0; i < data.children.length; i++) {
-   if (data.children[i].type === 'panel' && 
data.children[i].children &&
- 

[Libreoffice-bugs] [Bug 129661] [META] Right-To-Left (RTL) user interface issues

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||124116


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=124116
[Bug 124116] Track-changes Hebrew & Arabic punctuation shifted from correct
position on regular text
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 124116] Track-changes Hebrew & Arabic punctuation shifted from correct position on regular text

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks||129661


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=129661
[Bug 129661] [META] Right-To-Left (RTL) user interface issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 129661] [META] Right-To-Left (RTL) user interface issues

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||100585


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=100585
[Bug 100585] Ordering of sheets with different direction changes when switching
between them (RTL UI, not with GTK3)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues (RTL/CTL)

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on|100585  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=100585
[Bug 100585] Ordering of sheets with different direction changes when switching
between them (RTL UI, not with GTK3)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 100585] Ordering of sheets with different direction changes when switching between them (RTL UI, not with GTK3)

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks|43808   |129661


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=43808
[Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues
(RTL/CTL)
https://bugs.documentfoundation.org/show_bug.cgi?id=129661
[Bug 129661] [META] Right-To-Left (RTL) user interface issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 114746] Improve CJK and CTL fonts setting in default Impress templates

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks|43808   |129661


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=43808
[Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues
(RTL/CTL)
https://bugs.documentfoundation.org/show_bug.cgi?id=129661
[Bug 129661] [META] Right-To-Left (RTL) user interface issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues (RTL/CTL)

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on|114746  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=114746
[Bug 114746] Improve CJK and CTL fonts setting in default Impress templates
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 129661] [META] Right-To-Left (RTL) user interface issues

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||114746


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=114746
[Bug 114746] Improve CJK and CTL fonts setting in default Impress templates
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 115682] Clone formatting tool is not cloning RTL in Arabic

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks|43808   |129661


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=43808
[Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues
(RTL/CTL)
https://bugs.documentfoundation.org/show_bug.cgi?id=129661
[Bug 129661] [META] Right-To-Left (RTL) user interface issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 129661] [META] Right-To-Left (RTL) user interface issues

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||115682


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=115682
[Bug 115682] Clone formatting tool is not cloning RTL in Arabic
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues (RTL/CTL)

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on|115682  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=115682
[Bug 115682] Clone formatting tool is not cloning RTL in Arabic
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 129661] [META] Right-To-Left (RTL) user interface issues

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||100584


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=100584
[Bug 100584] If original sheet direction is RTL, keep new added sheets as RTL
not LTR
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues (RTL/CTL)

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on|100584  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=100584
[Bug 100584] If original sheet direction is RTL, keep new added sheets as RTL
not LTR
-- 
You are receiving this mail because:
You 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 100584] If original sheet direction is RTL, keep new added sheets as RTL not LTR

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks|43808   |129661


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=43808
[Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues
(RTL/CTL)
https://bugs.documentfoundation.org/show_bug.cgi?id=129661
[Bug 129661] [META] Right-To-Left (RTL) user interface issues
-- 
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 100584] If original sheet direction is RTL, keep new added sheets as RTL not LTR

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks|43808   |129661


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=43808
[Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues
(RTL/CTL)
https://bugs.documentfoundation.org/show_bug.cgi?id=129661
[Bug 129661] [META] Right-To-Left (RTL) user interface issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 129661] [META] Right-To-Left (RTL) user interface issues

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||95539


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=95539
[Bug 95539] Option + arrow does not work properly  when RTL is enabled
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 95539] Option + arrow does not work properly when RTL is enabled

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks|43808   |129661


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=43808
[Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues
(RTL/CTL)
https://bugs.documentfoundation.org/show_bug.cgi?id=129661
[Bug 129661] [META] Right-To-Left (RTL) user interface issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues (RTL/CTL)

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on|95539   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=95539
[Bug 95539] Option + arrow does not work properly  when RTL is enabled
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 102835] Feature request: Endnote by chapter near end of document.

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

--- Comment #7 from christ.st...@gmx.de ---
I agree: I think this feature is very important for the future of LibreOffice
Writer.

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


[Libreoffice-ux-advise] [Bug 102835] Feature request: Endnote by chapter near end of document.

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

--- Comment #7 from christ.st...@gmx.de ---
I agree: I think this feature is very important for the future of LibreOffice
Writer.

-- 
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 129661] [META] Right-To-Left (RTL) user interface issues

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||54494


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=54494
[Bug 54494] improve cursor traversal of combined characters
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues (RTL/CTL)

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on|54494   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=54494
[Bug 54494] improve cursor traversal of combined characters
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 54494] improve cursor traversal of combined characters

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks|43808   |129661


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=43808
[Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues
(RTL/CTL)
https://bugs.documentfoundation.org/show_bug.cgi?id=129661
[Bug 129661] [META] Right-To-Left (RTL) user interface issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 56412] RTL UI: Movement of embedded objects is opposite to the change direction

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks||129661

--- Comment #14 from Eyal Rozenberg  ---
Bug still manifests with:

Version: 6.3.2.2
Build ID: 1:6.3.2-1
CPU threads: 4; OS: Linux 5.2; UI render: default; VCL: gtk3; 
Locale: he-IL (en_IL); UI-Language: en-US

Not sure if this issue is also an RTL-UI issue or just an RTL-CTL only issue.
Let's make it block both.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=129661
[Bug 129661] [META] Right-To-Left (RTL) user interface issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 129661] [META] Right-To-Left (RTL) user interface issues

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||56412


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=56412
[Bug 56412] RTL UI: Movement of embedded objects is opposite to the change
direction
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 76258] [Filter][Enchancement] Filter by colors in LibO Calc

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

--- Comment #17 from pre...@gmail.com ---
I am very interested too.

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


[Libreoffice-bugs] [Bug 57422] presenter console RTL support needs completion

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks|43808   |129661


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=43808
[Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues
(RTL/CTL)
https://bugs.documentfoundation.org/show_bug.cgi?id=129661
[Bug 129661] [META] Right-To-Left (RTL) user interface issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 62932] EDITING: No option to change LTR writing direction to RTL for comment edit box in Impress

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks|43808   |129661


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=43808
[Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues
(RTL/CTL)
https://bugs.documentfoundation.org/show_bug.cgi?id=129661
[Bug 129661] [META] Right-To-Left (RTL) user interface issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues (RTL/CTL)

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on|57422   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=57422
[Bug 57422] presenter console RTL support needs completion
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 129661] [META] Right-To-Left (RTL) user interface issues

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||57422


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=57422
[Bug 57422] presenter console RTL support needs completion
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 129661] [META] Right-To-Left (RTL) user interface issues

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||62932


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=62932
[Bug 62932] EDITING: No option to change LTR writing direction to RTL for
comment edit box in Impress
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues (RTL/CTL)

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on|62932   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=62932
[Bug 62932] EDITING: No option to change LTR writing direction to RTL for
comment edit box in Impress
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues (RTL/CTL)

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on|63929   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=63929
[Bug 63929] "show hidden characters" should show bidi markers
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 129661] [META] Right-To-Left (RTL) user interface issues

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||63929


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=63929
[Bug 63929] "show hidden characters" should show bidi markers
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 63929] "show hidden characters" should show bidi markers

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks|43808   |129661


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=43808
[Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues
(RTL/CTL)
https://bugs.documentfoundation.org/show_bug.cgi?id=129661
[Bug 129661] [META] Right-To-Left (RTL) user interface issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 128783] Cannot "unlist" List Items in Impress Tables

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

--- Comment #1 from Oliver Grimm  ---
cannot reproduce on 

Version: 6.3.4.2.0+
Build-ID: 1:6.3.4-2
CPU-Threads: 2; BS: Linux 5.3; UI-Render: Standard; VCL: kde5; 
Gebietsschema: de-DE (de_DE.UTF-8); UI-Sprache: de-DE
Calc: threaded

can you please elaborate somewhat on how exactly to reproduce this bug?
thank you.

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


[Libreoffice-bugs] [Bug 76258] [Filter][Enchancement] Filter by colors in LibO Calc

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

Timur  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues (RTL/CTL)

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on|73494   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=73494
[Bug 73494] Font fallback issue with text of mixed directionality in the UI
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 129661] [META] Right-To-Left (RTL) user interface issues

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||73494


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=73494
[Bug 73494] Font fallback issue with text of mixed directionality in the UI
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 73494] Font fallback issue with text of mixed directionality in the UI

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks|43808   |129661


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=43808
[Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues
(RTL/CTL)
https://bugs.documentfoundation.org/show_bug.cgi?id=129661
[Bug 129661] [META] Right-To-Left (RTL) user interface issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 129661] [META] Right-To-Left (RTL) user interface issues

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||80662


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80662
[Bug 80662] RTL: The update number of the java version number in Options dialog
is on the wrong side
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 80662] RTL: The update number of the java version number in Options dialog is on the wrong side

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks|43808   |129661


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=43808
[Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues
(RTL/CTL)
https://bugs.documentfoundation.org/show_bug.cgi?id=129661
[Bug 129661] [META] Right-To-Left (RTL) user interface issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 129903] Widgets (+ / -; on top of row column headers/beside row headers) to show or hide details of Outlines (rows or columns) are missing

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

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #1 from m.a.riosv  ---
Hi Cor, do you have enable the option to view it in
Menu/Tools/Options/LibreOffice calc/View - Outlines - Window - Outline symbols

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


[Libreoffice-bugs] [Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues (RTL/CTL)

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on|80662   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=80662
[Bug 80662] RTL: The update number of the java version number in Options dialog
is on the wrong side
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 129912] Cannot open DOC - regression

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

Timur  changed:

   What|Removed |Added

Version|6.5.0.0.alpha0+ Master  |6.4.0.1 rc

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


[Libreoffice-bugs] [Bug 32531] Incorrect cursor key movement between table cells of different directionality

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Blocks|43808   |129661


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=43808
[Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues
(RTL/CTL)
https://bugs.documentfoundation.org/show_bug.cgi?id=129661
[Bug 129661] [META] Right-To-Left (RTL) user interface issues
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 129661] [META] Right-To-Left (RTL) user interface issues

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on||32531


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=32531
[Bug 32531] Incorrect cursor key movement between table cells of different
directionality
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues (RTL/CTL)

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on|39935   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=39935
[Bug 39935] Disabled Asian or CTL language value should default to "None"
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues (RTL/CTL)

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on|32531   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=32531
[Bug 32531] Incorrect cursor key movement between table cells of different
directionality
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43808] [META] Right-To-Left (aka Complex Text Layout) language issues (RTL/CTL)

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

Eyal Rozenberg  changed:

   What|Removed |Added

 Depends on|45147   |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=45147
[Bug 45147] right-to-left words appear in the wrong order in the CSV import
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


  1   2   3   4   5   >