[Libreoffice-bugs] [Bug 65353] FILESAVE: LO embeds non-used fonts

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65353

--- Comment #21 from Yousuf Philips (jay)  ---
So i see that whatever fonts are set to be used for asian and ctl language
support, even though the fonts arent actually set to any text but are set in
various styles like the default paragraph and graphic styles, they will be
saved within the document.

On Windows 8.1, for asian support, Microsoft YaHei and SimSun are selected[1],
and it embeds SimSun, but strangely didnt for YaHei, but corrupts the SimSun
17.4mb file as it removes the first 32 bytes from its beginning. For ctl
support, Mangal is set and it embeds it totaling 377kb. A resulting blank
document with these fonts takes up 11mb.

On Linux Mint 18 (clean installation), for asian support, WenQuanYi Micro Hei
is selected and takes up 4.9mb, while for ctl support, Lohit Devanagari is
selected and takes up 137.5k, as it saves two copies of the same file. A
resulting blank document with these fonts takes up 3.8mb.

On Linux Mint 18 (with various MS fonts installed), for asian support,
Microsoft YaHei and SimSun are selected and take up 51.8mb, while for ctl
support, Lucida Sans is selected and takes up 127kb. A resulting blank document
with these fonts takes up 3.8mb. A resulting blank document with these fonts
takes up 32.9mb.

Separate from the asian and ctl support, LO saves Liberation Sans and Serif for
latin support which take up 2.8mb.

@Olivier: in your duplicate bug, what do you have set for latin, asian and ctl
fonts to get the whopping 94mb file you mentioned.

[1] Tools > Options > LibreOffice Writer > Basic Fonts (Asian)

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


[Libreoffice-bugs] [Bug 99654] FILESAVE Embedding font makes file incredibly large

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=99654

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||philip...@hotmail.com
 Resolution|--- |DUPLICATE

--- Comment #4 from Yousuf Philips (jay)  ---


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

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


[Libreoffice-bugs] [Bug 65353] FILESAVE: LO embeds non-used fonts

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=65353

Yousuf Philips (jay)  changed:

   What|Removed |Added

 CC||olivier.hallot@documentfoun
   ||dation.org

--- Comment #20 from Yousuf Philips (jay)  ---
*** Bug 99654 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: lingucomponent/source

2017-10-04 Thread Julien Nabet
 lingucomponent/source/spellcheck/macosxspell/macspellimp.hxx |1 -
 lingucomponent/source/spellcheck/macosxspell/macspellimp.mm  |9 -
 2 files changed, 4 insertions(+), 6 deletions(-)

New commits:
commit cfce9b418072ff930d400890dcc0781e919fce24
Author: Julien Nabet 
Date:   Wed Oct 4 22:02:53 2017 +0200

Fix potential leak in macspellimp.mm

+ avoid macSpell var
I'm not sure to retrieve [NSSpellChecker sharedSpellChecker] in a pointer
is a good idea.
Most of the examples using sharedSpellChecker just call [NSSpellChecker 
sharedSpellChecker]
each time. If there's a bit more code, at least we're sure we won't leak 
because of this.

Change-Id: I9818bd3d51f26b50849e1a5e69cc705acd92ad29
Reviewed-on: https://gerrit.libreoffice.org/43140
Tested-by: Jenkins 
Reviewed-by: Julien Nabet 

diff --git a/lingucomponent/source/spellcheck/macosxspell/macspellimp.hxx 
b/lingucomponent/source/spellcheck/macosxspell/macspellimp.hxx
index 7c72b748c7b2..c489bee337f2 100644
--- a/lingucomponent/source/spellcheck/macosxspell/macspellimp.hxx
+++ b/lingucomponent/source/spellcheck/macosxspell/macspellimp.hxx
@@ -63,7 +63,6 @@ class MacSpellChecker :
 Locale *aDLocs;
 OUString *  aDNames;
 sal_Int32   numdict;
-NSSpellChecker *macSpell;
 int macTag;   // unique tag for this doc
 
 ::comphelper::OInterfaceContainerHelper2   aEvtListeners;
diff --git a/lingucomponent/source/spellcheck/macosxspell/macspellimp.mm 
b/lingucomponent/source/spellcheck/macosxspell/macspellimp.mm
index f146db7b8dab..4519e2a98fd7 100644
--- a/lingucomponent/source/spellcheck/macosxspell/macspellimp.mm
+++ b/lingucomponent/source/spellcheck/macosxspell/macspellimp.mm
@@ -57,7 +57,6 @@ MacSpellChecker::MacSpellChecker() :
 numdict = 0;
 NSApplicationLoad();
 NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
-macSpell = [NSSpellChecker sharedSpellChecker];
 macTag = [NSSpellChecker uniqueSpellDocumentTag];
 [pool release];
 }
@@ -117,7 +116,7 @@ Sequence< Locale > SAL_CALL MacSpellChecker::getLocales()
 for (NSUInteger i = 0; i < [aLocales count]; i++)
 {
 NSString* pLangStr = (NSString*)[aLocales objectAtIndex:i];
-if( [macSpell setLanguage:pLangStr ] )
+if( [[NSSpellChecker sharedSpellChecker] setLanguage:pLangStr ] )
 {
 postspdict.push_back( pLangStr );
 }
@@ -241,7 +240,7 @@ sal_Int16 MacSpellChecker::GetSpellFailure( const OUString 
, const Locale
 }
 
 NSInteger aCount;
-NSRange range = [macSpell checkSpellingOfString:aNSStr startingAt:0 
language:aLang wrap:false inSpellDocumentWithTag:macTag wordCount:];
+NSRange range = [[NSSpellChecker sharedSpellChecker] 
checkSpellingOfString:aNSStr startingAt:0 language:aLang wrap:false 
inSpellDocumentWithTag:macTag wordCount:];
 int rVal = 0;
 if(range.length>0)
 {
@@ -339,8 +338,8 @@ Reference< XSpellAlternatives >
 NSString* aTaggedCountry = [@"_" stringByAppendingString:aCountry];
 aLang = [aLang  stringByAppendingString:aTaggedCountry];
 }
-[macSpell setLanguage:aLang];
-NSArray *guesses = [macSpell guessesForWordRange:NSMakeRange(0, 
[aNSStr length]) inString:aNSStr language:aLang inSpellDocumentWithTag:0];
+[[NSSpellChecker sharedSpellChecker] setLanguage:aLang];
+NSArray *guesses = [[NSSpellChecker sharedSpellChecker] 
guessesForWordRange:NSMakeRange(0, [aNSStr length]) inString:aNSStr 
language:aLang inSpellDocumentWithTag:0];
 count = [guesses count];
 if (count)
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2017-10-04 Thread Tor Lillqvist
 bridges/source/cpp_uno/gcc3_macosx_x86-64/cpp2uno.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ad0e0cb25c7943663f6c946fd300bff83e4caa59
Author: Tor Lillqvist 
Date:   Thu Oct 5 07:27:05 2017 +0300

Fix --enable-assert-always-abort (but not --enable-debug) build

Look at NDEBUG, not OSL_DEBUG_LEVEL, to see whether asserts are active
or not.

Change-Id: I772d27da4bcc73c8c5a50ab4b72f50caddcf7273

diff --git a/bridges/source/cpp_uno/gcc3_macosx_x86-64/cpp2uno.cxx 
b/bridges/source/cpp_uno/gcc3_macosx_x86-64/cpp2uno.cxx
index b340c08b1a6a..3b7beeac3102 100644
--- a/bridges/source/cpp_uno/gcc3_macosx_x86-64/cpp2uno.cxx
+++ b/bridges/source/cpp_uno/gcc3_macosx_x86-64/cpp2uno.cxx
@@ -109,7 +109,7 @@ static typelib_TypeClass cpp2uno_call(
 
 int nUsedGPR = 0;
 int nUsedSSE = 0;
-#if OSL_DEBUG_LEVEL > 0
+#ifndef NDEBUG
 bool bFitsRegisters =
 #endif
 x86_64::examine_argument( rParam.pTypeRef, false, nUsedGPR, 
nUsedSSE );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 100233] Wrong Windows version reported in the About window in Windows 10

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100233

--- Comment #18 from Mike Kaganski  ---
Yes, that commit guarantees that we will continue to get proper Windows
versions for display, even if program will run on a future Windows version.
Another commit -
https://cgit.freedesktop.org/libreoffice/core/commit/?id=736a4e659cff2ef5f900301d7d288494f9b98178
- adds compatibility sections to our binaries' manifests claiming support of
Win7 through Win10, so this also "fixes" GetVersion* API results, but that
would fail on next Windows version, and is only meant to prevent us running in
compatibility (reduced) mode.

To clarify: Windows versions are not a float that can be rounded: they are a
series of integers, which are simply displayed using dot between them, so no
"rounding" is possible here. The "19" came from Microsoft for unclear reasons:
trying to use its recommended API (IsWindowsVersionOrGreater), we used to try
to find out the highest supported version and subversion numbers by starting at
a high value (30), decrementing by one, and asking that API if that version and
subversion are supported; and it returned true for subversion 19 on version 6
for Win10. See WinSalInstance::getOSVersion() changes in
https://cgit.freedesktop.org/libreoffice/core/commit/?id=0dd2e602e5c1b46e82abc6051677aeaab1d265b8
for old implementation details.

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


[Libreoffice-bugs] [Bug 100233] Wrong Windows version reported in the About window in Windows 10

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100233

V Stuart Foote  changed:

   What|Removed |Added

 CC||mikekagan...@hotmail.com

--- Comment #17 from V Stuart Foote  ---
(In reply to Yousuf Philips (jay) from comment #16)
> Can we find out which patch fixed this as it would be good to fix it for
> other Windows versions.

Pretty sure it was Mike K's work in
https://gerrit.libreoffice.org/gitweb?p=core.git;a=commit;h=0dd2e602e5c1b46e82abc6051677aeaab1d265b8
and with its refactoring already should detect all our support Windows
versions.

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


[Libreoffice-bugs] [Bug 102998] [META] Mail merge bugs and enhancements

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=102998

Aron Budea  changed:

   What|Removed |Added

 Depends on|108584  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=108584
[Bug 108584] user\config\autotbl.fmt is read more than a 1000 times every time
when cutting some text in Writer (see comment 4)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 108584] user\config\autotbl.fmt is read more than a 1000 times every time when cutting some text in Writer (see comment 4)

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108584

Aron Budea  changed:

   What|Removed |Added

 Blocks|102998  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=102998
[Bug 102998] [META] Mail merge 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 108584] user\config\autotbl.fmt is read more than a 1000 times every time when cutting some text in Writer (see comment 4)

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108584

Aron Budea  changed:

   What|Removed |Added

   Keywords||bibisected

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

2017-10-04 Thread Mike Kaganski
 writerfilter/source/dmapper/BorderHandler.cxx|8 +++---
 writerfilter/source/dmapper/CellColorHandler.cxx |8 +++---
 writerfilter/source/dmapper/CellMarginHandler.cxx|6 ++--
 writerfilter/source/dmapper/ConversionHelper.cxx |2 -
 writerfilter/source/dmapper/DomainMapper.cxx |   20 +++
 writerfilter/source/dmapper/DomainMapperTableHandler.cxx |   14 +-
 writerfilter/source/dmapper/DomainMapperTableHandler.hxx |4 +--
 writerfilter/source/dmapper/DomainMapperTableManager.cxx |   16 ++--
 writerfilter/source/dmapper/DomainMapperTableManager.hxx |2 -
 writerfilter/source/dmapper/DomainMapper_Impl.cxx|   10 +++
 writerfilter/source/dmapper/DomainMapper_Impl.hxx|2 -
 writerfilter/source/dmapper/FontTable.cxx|2 -
 writerfilter/source/dmapper/GraphicImport.cxx|2 -
 writerfilter/source/dmapper/LatentStyleHandler.cxx   |2 -
 writerfilter/source/dmapper/MeasureHandler.cxx   |6 ++--
 writerfilter/source/dmapper/ModelEventListener.cxx   |4 +--
 writerfilter/source/dmapper/NumberingManager.hxx |2 -
 writerfilter/source/dmapper/OLEHandler.cxx   |6 ++--
 writerfilter/source/dmapper/PropertyMap.cxx  |6 ++--
 writerfilter/source/dmapper/SdtHelper.cxx|2 -
 writerfilter/source/dmapper/SdtHelper.hxx|2 -
 writerfilter/source/dmapper/SectionColumnHandler.cxx |6 ++--
 writerfilter/source/dmapper/SettingsTable.cxx|6 ++--
 writerfilter/source/dmapper/SmartTagHandler.cxx  |2 -
 writerfilter/source/dmapper/StyleSheetTable.cxx  |   12 -
 writerfilter/source/dmapper/StyleSheetTable.hxx  |2 -
 writerfilter/source/dmapper/TDefTableHandler.cxx |6 ++--
 writerfilter/source/dmapper/TableManager.cxx |8 +++---
 writerfilter/source/dmapper/TableManager.hxx |4 +--
 writerfilter/source/dmapper/TablePositionHandler.cxx |4 +--
 writerfilter/source/dmapper/TablePropertiesHandler.cxx   |2 -
 writerfilter/source/dmapper/TablePropertiesHandler.hxx   |2 -
 writerfilter/source/dmapper/TblStylePrHandler.cxx|4 +--
 writerfilter/source/dmapper/TblStylePrHandler.hxx|2 -
 writerfilter/source/dmapper/TextEffectsHandler.cxx   |2 -
 writerfilter/source/dmapper/TextEffectsHandler.hxx   |2 -
 writerfilter/source/dmapper/ThemeTable.cxx   |2 -
 writerfilter/source/dmapper/TrackChangesHandler.cxx  |6 ++--
 writerfilter/source/dmapper/TrackChangesHandler.hxx  |2 -
 writerfilter/source/dmapper/domainmapperfactory.cxx  |2 -
 writerfilter/source/dmapper/util.cxx |2 -
 writerfilter/source/ooxml/OOXMLDocumentImpl.cxx  |2 -
 writerfilter/source/ooxml/OOXMLStreamImpl.cxx|2 -
 writerfilter/source/rtftok/rtfcharsets.cxx   |2 -
 writerfilter/source/rtftok/rtfcontrolwords.cxx   |2 -
 writerfilter/source/rtftok/rtfdispatchdestination.cxx|   10 +++
 writerfilter/source/rtftok/rtfdispatchflag.cxx   |6 ++--
 writerfilter/source/rtftok/rtfdispatchsymbol.cxx |6 ++--
 writerfilter/source/rtftok/rtfdispatchvalue.cxx  |   10 +++
 writerfilter/source/rtftok/rtfdocumentfactory.cxx|2 -
 writerfilter/source/rtftok/rtfdocumentimpl.cxx   |   12 -
 writerfilter/source/rtftok/rtfdocumentimpl.hxx   |8 +++---
 writerfilter/source/rtftok/rtflistener.hxx   |2 -
 writerfilter/source/rtftok/rtflookahead.cxx  |2 -
 writerfilter/source/rtftok/rtflookahead.hxx  |4 +--
 writerfilter/source/rtftok/rtfreferenceproperties.cxx|2 -
 writerfilter/source/rtftok/rtfreferenceproperties.hxx|2 -
 writerfilter/source/rtftok/rtfreferencetable.cxx |2 -
 writerfilter/source/rtftok/rtfsdrimport.cxx  |4 +--
 writerfilter/source/rtftok/rtfsdrimport.hxx  |2 -
 writerfilter/source/rtftok/rtfskipdestination.cxx|2 -
 writerfilter/source/rtftok/rtfskipdestination.hxx|2 -
 writerfilter/source/rtftok/rtfsprm.cxx   |2 -
 writerfilter/source/rtftok/rtfsprm.hxx   |2 -
 writerfilter/source/rtftok/rtftokenizer.cxx  |4 +--
 writerfilter/source/rtftok/rtftokenizer.hxx  |2 -
 writerfilter/source/rtftok/rtfvalue.cxx  |4 +--
 67 files changed, 152 insertions(+), 152 deletions(-)

New commits:
commit 633f405701fc5cadfa73e950f7a8c122ad01c149
Author: Mike Kaganski 
Date:   Wed Oct 4 19:01:14 2017 +0300

writerfilter: consistently use "" and <> in include directives

[cpp.include] tells that includes in <> are searched in 
implementation-defined

[Libreoffice-bugs] [Bug 100233] Wrong Windows version reported in the About window in Windows 10

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=100233

--- Comment #16 from Yousuf Philips (jay)  ---
Can we find out which patch fixed this as it would be good to fix it for other
Windows versions.

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


[Libreoffice-bugs] [Bug 112818] UI: Better understandable name for command .uno:PreviewZoom

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112818

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||f...@libreoffice.org,
   ||tietze.he...@gmail.com,
   ||vstuart.fo...@utsa.edu
 Ever confirmed|0   |1

--- Comment #1 from Yousuf Philips (jay)  ---
(In reply to Thomas Lendo from comment #0)
> I suggest to use a better understandable name for command .uno:PreviewZoom,
> especially for a easier search in the functions list of the Customize dialog
> and to be self-explanatory in menus, etc.

This uno command is a contextual function that opens up the View > Zoom >
Zoom... dialog only when in print preview mode, so not sure what a suitable
label would be for it. Maybe 'Zoom (Print Preview Mode)...'

> Suggested names for both title and visible command name:
> * Preview: Zoom & View Layout
> * Zoom & View Layout for Preview

We have many labels in the menu that dont have the exact label as the dialog it
opens and that isnt a problem in my view, as long as it has the main keyword(s)
in it. e.g. File > Templates > Manage Templates, Tools > Footnotes and Endnotes

Heiko, Stuart, Adolfo: Your thoughts.

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


[Libreoffice-bugs] [Bug 112847] RTL: Arabic label text in various places appearing along with squares

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112847

--- Comment #10 from Khaled Hosny  ---
(In reply to Yousuf Philips (jay) from comment #8)
> (In reply to Khaled Hosny from comment #7)
> > I can reproduce this in the styles menu. My guess is it is a font fallback
> > issue (these styles specify a font that does not support Arabic).
> 
> On linux, the font in the styles menu looks like Times New Roman from my
> tests. No idea what is being used on windows, but i'm on Windows 8.1.
> 
> > What is your UI font in the about dialog case?
> 
> The system font on Linux Mint 18 Mate is Noto Sans and on Ubuntu Mate 16.04
> is Ubuntu, though the UI font looks identical in both systems, so i dont
> think it is using this font for the LO UI.

So all are fonts that lack Arabic support and the strings have mixed direction
(e.g. numbers or English text next to the Arabic), which further suggests it is
a duplicate.

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


[Libreoffice-bugs] [Bug 111846] Find & Replace: Rename diacritics and kashida search options

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=111846

--- Comment #20 from Khaled Hosny  ---
(In reply to Thomas Lendo from comment #19)
> The 2 main reasons are stated in the initial post. From the UX point of view
> it's worth to discuss that and to take it into consideration.
> 
> Many search results in Google of "ignore diacritics" are developer-related.
> The search functionality of LibO is used by non-developers mostly. Also
> "include" is only a suggestion--a good and better term has to be found by
> English native speakers so that it will be understand immediately.

Inventing new jargon is unlikely to help users, unlike sticking to existing
nomenclature. That is similar to the never ending attempts to replace the
floppy disk save icon with some of thing modern just because someone thinks
this will help users who never saw an actual floppy disk.

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


[Libreoffice-bugs] [Bug 107435] Non-exact paragraph line spacing has problems for CTL and CJK fonts

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107435

--- Comment #9 from Khaled Hosny  ---
(In reply to Yousuf Philips (jay) from comment #8)
> (In reply to Khaled Hosny from comment #6)
> > I’d say Word line spacing is at fault here and LibreOffice is rendering the
> > fonts as intended.
> 
> Any way to double check this with another app that you know always renders
> it correctly?

Firefox (at least on Linux) should be good.

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


[Libreoffice-bugs] [Bug 103866] Formula Vertical Alignment issue

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103866

--- Comment #17 from Ben  ---
Can an indication be provided when this issues might be resolved? I'm working
on a book and the final editing process has started. This is a pervasive issue
that appears across the whole book.

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


[Libreoffice-bugs] [Bug 93121] FILESAVE: Docx / Doc / RTF export of two footnote paragraphs adds a tab before the second one

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93121

--- Comment #10 from Aibara  ---
Note that with .docx files (I can't reproduce with .doc) a tab is added in each
single-paragraph footnote at the very beginning. So no need to make two
paragraphs in the footnotes: each and every one will get that tab character
regardless. At least with 5.4.1.2 on Ubuntu 16.04.

Is there any workaround for this? It's really annoying when you are editing and
adding comments to a colleague's paper and they wonder why the hell you added a
bunch of tabs to their work.

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


[Libreoffice-bugs] [Bug 112887] Notebookbar: black icons and font on Groupedbar Full with dark system theme Numix

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112887

--- Comment #2 from kompilainenn <79045_79...@mail.ru> ---
Created attachment 136774
  --> https://bugs.documentfoundation.org/attachment.cgi?id=136774=edit
Default toolbars with dark system theme

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


[Libreoffice-bugs] [Bug 112887] Notebookbar: black icons and font on Groupedbar Full with dark system theme Numix

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112887

--- Comment #1 from kompilainenn <79045_79...@mail.ru> ---
Created attachment 136773
  --> https://bugs.documentfoundation.org/attachment.cgi?id=136773=edit
Notebookbar Groupedbar Full with dark system theme

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


[Libreoffice-bugs] [Bug 112886] FILESAVE: Each save adds a tab space to footnotes

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112886

m.a.riosv  changed:

   What|Removed |Added

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

--- Comment #4 from m.a.riosv  ---


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

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


[Libreoffice-bugs] [Bug 93121] FILESAVE: Docx / Doc / RTF export of two footnote paragraphs adds a tab before the second one

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=93121

m.a.riosv  changed:

   What|Removed |Added

 CC||cranberrydoug...@yahoo.com

--- Comment #9 from m.a.riosv  ---
*** Bug 112886 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 112887] New: Notebookbar: black icons and font on Groupedbar Full with dark system theme Numix

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112887

Bug ID: 112887
   Summary: Notebookbar: black icons and font on Groupedbar Full
with dark system theme Numix
   Product: LibreOffice
   Version: 6.0.0.0.alpha0+ Master
  Hardware: All
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: graphics stack
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: 79045_79...@mail.ru

Description:
black icons and font on Groupedbar Full variant of Notebookbar with dark system
theme Numix
Xubuntu 17.04, videocard - intel hd3000.
View of default toolbars is OK, Notebookbar Tabbed - OK.

Steps to Reproduce:
1. Open LibreOffice Calc/Writer
2. Select View-Toolbar layout-Notebookbar
3. Select View-Notebookbar-Groupedbar Full
4. See screenshot from attach

Actual Results:  
black icons and font on Groupedbar Full variant of Notebookbar with dark system
theme Numix

Expected Results:
normal view of icons and font on Notebookbar


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:55.0) Gecko/20100101
Firefox/55.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 112885] Memory usage when launching Libo/ Calc has increased with 40 MB

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112885

Telesto  changed:

   What|Removed |Added

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

--- Comment #2 from Telesto  ---
Nevermind; should have checked LibO6.0 first

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


[Libreoffice-bugs] [Bug 112886] FILESAVE: Each save adds a tab space to footnotes

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112886

--- Comment #3 from Aibara  ---
Created attachment 136772
  --> https://bugs.documentfoundation.org/attachment.cgi?id=136772=edit
A third save means a third tab space added.

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


[Libreoffice-bugs] [Bug 112886] FILESAVE: Each save adds a tab space to footnotes

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112886

--- Comment #2 from Aibara  ---
Created attachment 136771
  --> https://bugs.documentfoundation.org/attachment.cgi?id=136771=edit
The file saved twice: now there are two tab spaces

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


[Libreoffice-bugs] [Bug 112886] FILESAVE: Each save adds a tab space to footnotes

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112886

--- Comment #1 from Aibara  ---
Created attachment 136770
  --> https://bugs.documentfoundation.org/attachment.cgi?id=136770=edit
A docx saved once: note the tab space in the footnote

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


[Libreoffice-bugs] [Bug 112886] New: FILESAVE: Each save adds a tab space to footnotes

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112886

Bug ID: 112886
   Summary: FILESAVE: Each save adds a tab space to footnotes
   Product: LibreOffice
   Version: 5.4.1.2 release
  Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: cranberrydoug...@yahoo.com

Description:
Each time a docx file with footnotes is saved a tab space is added to the
beginning of the footnote, just after the number.

Steps to Reproduce:
1. Create a file with a footnote or open an already extant .docx with a
footnote.
2. Save it as a .docx.

Actual Results:  
A tab space is added to the beginning of the footnote.

Expected Results:
No tab should be added since the user did not actually add one.


Reproducible: Always

User Profile Reset: Yes

Additional Info:
This is really nasty when editing .docx files, especially when someone asks you
to read over their work and you end up destroying their formatting. The space
is added to every single footnote.

This is definitely a regression, though I'm not sure when the problem was first
introduced.

I could only reproduce this with .docx files, not with .odt or older .doc
files.


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

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


[Libreoffice-qa] DirectWrite deficienies holding open BZ issues

2017-10-04 Thread V Stuart Foote
@Xisco, *

Notice we'd reverted a number of closings for BZ issues that are cleared by
Khaled's tweak for  tdf#112486
  

"...optionally not using GDI when not using OpenGL (previously we always
used GDI when OpenGL was used). I think it was wishful thinking of my
part to think the non-GDI code path is usable"

So, that has been done. And we've now restored Windows GDI font rendering
functionality for the final 5.3.7 build, and have 5.4.3 and 6.0.0 covered.

Why would we hold open all those performance and rendering issues caused by
use of  the "non-GDI" code path? We should close them to reduce the noise.

Yes going forward with either more "correctly" refactoring our  DirectWrite
Direct2D implementation or moving to FreeType everywhere,  if PDF output on
Windows can be solved, there is work on Windows font rendering to be done
but it is not tied to status of these BZ issues.

Behavior of these now resolved bugs should be checked against that rendering
rework, obviously.  But the issues should not be held open awaiting work
that may be a long time in development.




--
Sent from: http://nabble.documentfoundation.org/QA-f3613148.html
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: https://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

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

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103859
Bug 103859 depends on bug 79664, which changed state.

Bug 79664 Summary: vertical text in embedded WMF not rendered correctly
https://bugs.documentfoundation.org/show_bug.cgi?id=79664

   What|Removed |Added

 Status|NEW |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 79664] vertical text in embedded WMF not rendered correctly

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79664

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #9 from Xisco Faulí  ---
(In reply to Gabor Kelemen from comment #8)
> Created attachment 136769 [details]
> EMF column headers in current LO6
> 
> In a current LO 6 alpha - from commit
> c3819630e0205a372899ef67d689619657bbbf33 ; 4 days ago - the alignment of
> vertical text looks good.
> I suggest to say WORKSFORME, if someone else can confirm.

Confirmed in

Version: 6.0.0.0.alpha0+
Build ID: 6e3e4cd38b56d432c48cd7217885974e3f0519fd
CPU threads: 4; OS: Linux 4.10; UI render: default; VCL: gtk3; 
Locale: ca-ES (ca_ES.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 79664] vertical text in embedded WMF not rendered correctly

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=79664

--- Comment #8 from Gabor Kelemen  ---
Created attachment 136769
  --> https://bugs.documentfoundation.org/attachment.cgi?id=136769=edit
EMF column headers in current LO6

In a current LO 6 alpha - from commit c3819630e0205a372899ef67d689619657bbbf33
; 4 days ago - the alignment of vertical text looks good.
I suggest to say WORKSFORME, if someone else can confirm.

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


[Libreoffice-bugs] [Bug 112885] Memory usage when launching Libo/ Calc has increased with 40 MB

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112885

--- Comment #1 from Telesto  ---
Created attachment 136768
  --> https://bugs.documentfoundation.org/attachment.cgi?id=136768=edit
Bibisect log

~/bibisect-win32-5.3
$ git bisect bad
4bdfe05eb12ec0528ed3a299e91b5e7eb5d126a1 is the first bad commit
commit 4bdfe05eb12ec0528ed3a299e91b5e7eb5d126a1
Author: Norbert Thiebaud 
Date:   Tue Jul 12 19:50:14 2016 -0700

source sha:c44726c48228d9c6a5960e302b1c0bd16b0099c4

source sha:c44726c48228d9c6a5960e302b1c0bd16b0099c4

:04 04 278a1a071b5a9bc032baa5e63d05f09e4c46e2e4
f69e77690b8a1f02e33b3d1e8a376aefa69fa03d M  instdir

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

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


[Libreoffice-bugs] [Bug 112885] New: Memory usage when launching Libo/ Calc has increased with 40 MB

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112885

Bug ID: 112885
   Summary: Memory usage when launching Libo/Calc has increased
with 40 MB
   Product: LibreOffice
   Version: 5.3.0.3 release
  Hardware: All
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Calc
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: tele...@surfxs.nl

Description:
Memory usage when launching Libo/Calc has increased with 40 MB 

Steps to Reproduce:
1. Open Start Center
2. Launch Libo

Prior to commit c44726c48228d9c6a5960e302b1c0bd16b0099c4 +/- 35 MB and after 75
MB


75

Actual Results:  
Memory requirement when launching has increased with 40 MB

Expected Results:
Based on the bibisect results: no need


Reproducible: Always

User Profile Reset: No

Additional Info:


User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:52.0) Gecko/20100101
Firefox/52.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 107833] [META] Writer paragraph style bugs and enhancements

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107833

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on|112800  |


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112800
[Bug 112800] Toolbar and sidebar controls not able to detect character and
paragraph level properties for selected text over 1,000 paragraphs
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 112800] Toolbar and sidebar controls not able to detect character and paragraph level properties for selected text over 1 , 000 paragraphs

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112800

Yousuf Philips (jay)  changed:

   What|Removed |Added

 CC||philip...@hotmail.com
 Blocks|107833  |103239, 103428, 107838,
   ||107831
Summary|The font name and size both |Toolbar and sidebar
   |disappear when too much |controls not able to detect
   |text is selected.   |character and paragraph
   ||level properties for
   ||selected text over 1,000
   ||paragraphs

--- Comment #4 from Yousuf Philips (jay)  ---
So its not just the font name and font size controls that are affected,
horizontal alignment, text direction, spacing and indent are as well. You can
easily see this with the sidebar properties deck open.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103239
[Bug 103239] [META] Toolbars bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=103428
[Bug 103428] [META] Properties deck/tab of the sidebar
https://bugs.documentfoundation.org/show_bug.cgi?id=107831
[Bug 107831] [META] Paragraph-level bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=107833
[Bug 107833] [META] Writer paragraph style bugs and enhancements
https://bugs.documentfoundation.org/show_bug.cgi?id=107838
[Bug 107838] [META] Character-level 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 107838] [META] Character-level bugs and enhancements

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107838

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||112800


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112800
[Bug 112800] Toolbar and sidebar controls not able to detect character and
paragraph level properties for selected text over 1,000 paragraphs
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 103239] [META] Toolbars bugs and enhancements

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103239

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||112800


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112800
[Bug 112800] Toolbar and sidebar controls not able to detect character and
paragraph level properties for selected text over 1,000 paragraphs
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 107831] [META] Paragraph-level bugs and enhancements

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107831

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||112800


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112800
[Bug 112800] Toolbar and sidebar controls not able to detect character and
paragraph level properties for selected text over 1,000 paragraphs
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 103428] [META] Properties deck/tab of the sidebar

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103428

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||112800


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112800
[Bug 112800] Toolbar and sidebar controls not able to detect character and
paragraph level properties for selected text over 1,000 paragraphs
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 112726] Saving a document as .odt file will fail if it contains a picture that is 404 NOT FOUND.

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112726

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||xiscofa...@libreoffice.org
 Ever confirmed|0   |1

--- Comment #7 from Xisco Faulí  ---
(In reply to Yang Lifu from comment #5)
> Hey, dude, thanks for the reproduction, but I used 5.4.1.2, not 6.0.0.0.


Could you please try to reproduce it with a master build from
http://dev-builds.libreoffice.org/daily/master/ ?
You can install it alongside the standard version.
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' if the bug is still present in the master build

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


[Libreoffice-bugs] [Bug 112864] Impress does not loop videos any more

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112864

Mike  changed:

   What|Removed |Added

 Status|RESOLVED|UNCONFIRMED
   Hardware|All |x86-64 (AMD64)
 Resolution|WORKSFORME  |---
 Ever confirmed|1   |0

--- Comment #3 from Mike  ---
Additional info:
- videos are looping with 5.4.1.2 32bit
- videos are not looping with 5.4.1.2 64 bit

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


[Libreoffice-bugs] [Bug 97689] SVG not supporting stroke-dashoffset

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=97689

Xisco Faulí  changed:

   What|Removed |Added

 CC||ask4supp...@email.cz

--- Comment #10 from Xisco Faulí  ---
*** Bug 112850 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 112850] SVG dashes (and indices) do not work properly

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112850

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #2 from Xisco Faulí  ---
Hello,
Thanks for reporting this issue.
it seems like a duplicate of bug 97689

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

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


[Libreoffice-bugs] [Bug 112878] RTL: Writer paragraph styles set to left alignment, which isnt usable for RTL languages

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112878

Lior Kaplan  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||kaplanl...@gmail.com
 Ever confirmed|0   |1

--- Comment #1 from Lior Kaplan  ---
Happens in 5.4.1 as well (and if I remember in any LibreOffice version).

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


[Libreoffice-bugs] [Bug 108236] Text in EMF looks worse since 5.3.2.2 esp. with default rendering ( in 6.0+ only in presentation mode) (DirectWrite)

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108236

--- Comment #11 from V Stuart Foote  ---
Nothing to do with processing the WMF in the ODF Presentation (not even an
EMF/EMF+), issue was strictly DirectWrite font handling for rendering to
presentation canvas when HA is enabled which is bug 107090

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


[Libreoffice-bugs] [Bug 71732] [META] Bugs related to text rendering, typography and font features in LO

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71732
Bug 71732 depends on bug 108236, which changed state.

Bug 108236 Summary: Text in EMF looks worse since 5.3.2.2 esp. with default 
rendering (in 6.0+ only in presentation mode) (DirectWrite)
https://bugs.documentfoundation.org/show_bug.cgi?id=108236

   What|Removed |Added

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

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


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

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103859
Bug 103859 depends on bug 108236, which changed state.

Bug 108236 Summary: Text in EMF looks worse since 5.3.2.2 esp. with default 
rendering (in 6.0+ only in presentation mode) (DirectWrite)
https://bugs.documentfoundation.org/show_bug.cgi?id=108236

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 109234] [META] DirectWrite rendering bugs and enhancements

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109234
Bug 109234 depends on bug 108236, which changed state.

Bug 108236 Summary: Text in EMF looks worse since 5.3.2.2 esp. with default 
rendering (in 6.0+ only in presentation mode) (DirectWrite)
https://bugs.documentfoundation.org/show_bug.cgi?id=108236

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 112486] [META] Bugs caused/worsened by more use of DirectWrite

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112486
Bug 112486 depends on bug 108236, which changed state.

Bug 108236 Summary: Text in EMF looks worse since 5.3.2.2 esp. with default 
rendering (in 6.0+ only in presentation mode) (DirectWrite)
https://bugs.documentfoundation.org/show_bug.cgi?id=108236

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 108236] Text in EMF looks worse since 5.3.2.2 esp. with default rendering ( in 6.0+ only in presentation mode) (DirectWrite)

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108236

V Stuart Foote  changed:

   What|Removed |Added

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

--- Comment #10 from V Stuart Foote  ---


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

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


[Libreoffice-bugs] [Bug 107090] Text is poorly rendered to presentation mode canvas with default rendering and "Use hardware acceleration" enabled ( OpenGL and CPU only rendering is correct) (DirectWr

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107090

--- Comment #30 from V Stuart Foote  ---
*** Bug 108236 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 61405] LibreOffice unable to paste image from clipboard

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61405

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #14 from Xisco Faulí  ---
Dear Daniel,
This bug has been in RESOLVED WORKSFORME status for more than 6 months.
If the issue is still reproducible with the latest version of LibreOffice from
https://www.libreoffice.org/download/libreoffice-fresh/, please report a new
issue in https://bugs.documentfoundation.org/enter_bug.cgi providing, if
needed, the steps and documents to reproduce it.
Thanks for your understanding and collaboration.
Closing as RESOLVED 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 112808] CONTEXT MENU: 'Edit Section' entry appears on indexes

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112808

Yousuf Philips (jay)  changed:

   What|Removed |Added

 CC||gulsah.1...@gmail.com

--- Comment #2 from Yousuf Philips (jay)  ---
Gulsah: Got time to fix this implementation issue?

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


[Libreoffice-bugs] [Bug 112864] Impress does not loop videos any more

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112864

Xisco Faulí  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 112864] Impress does not loop videos any more

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112864

--- Comment #2 from Mike  ---
With Impress 5.4.1.2 videos are looping again.

Thank you
Mike

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


[Libreoffice-bugs] [Bug 103239] [META] Toolbars bugs and enhancements

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103239

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||112813


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112813
[Bug 112813] Toolbar/Sidebar: Selection of combobox content with a single mouse
click
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 112813] Toolbar/Sidebar: Selection of combobox content with a single mouse click

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112813

Yousuf Philips (jay)  changed:

   What|Removed |Added

 CC|libreoffice-ux-advise@lists |momonas...@gmail.com
   |.freedesktop.org|
 Blocks||103239

--- Comment #3 from Yousuf Philips (jay)  ---
(In reply to Thomas Lendo from comment #0)
> When clicking in a combobox with a single mouse click or tab key, the
> content should be selected/marked instead of the necessity of using a
> double-click with the mouse.

As a combobox is a text field, like a textbox, clicking in it with a mouse
shouldnt select all the text. Using tab should select the text, as it does so
in dialogs and spinboxes in the sidebar, though strangely it doesnt happen to
spinboxes in the toolbar.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103239
[Bug 103239] [META] Toolbars 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 112813] Toolbar/Sidebar: Selection of combobox content with a single mouse click

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112813

Yousuf Philips (jay)  changed:

   What|Removed |Added

 CC|libreoffice-ux-advise@lists |momonas...@gmail.com
   |.freedesktop.org|
 Blocks||103239

--- Comment #3 from Yousuf Philips (jay)  ---
(In reply to Thomas Lendo from comment #0)
> When clicking in a combobox with a single mouse click or tab key, the
> content should be selected/marked instead of the necessity of using a
> double-click with the mouse.

As a combobox is a text field, like a textbox, clicking in it with a mouse
shouldnt select all the text. Using tab should select the text, as it does so
in dialogs and spinboxes in the sidebar, though strangely it doesnt happen to
spinboxes in the toolbar.


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=103239
[Bug 103239] [META] Toolbars 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 107090] Text is poorly rendered to presentation mode canvas with default rendering and "Use hardware acceleration" enabled ( OpenGL and CPU only rendering is correct) (DirectWr

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107090

--- Comment #29 from V Stuart Foote  ---
@Xisco, issue as in the summary is corrected, fallback from non-OpenGL is
rendered correctly again om presentation canvas when the HA is in use.

Yes there remains a need to resolve our DirectWrite font handling--but that is
not _this_ bug which is corrected now in 5.3.7, for 5.4.3 when rolled and in
master for 6.0.0 for the commits noted.

The impact on canvas composition with HA vs. CPU only rendering is an
implementation issue as we move forward either with DireectWrite Direct2D, or
more cross platform with a FreeType implementation.

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


[Libreoffice-bugs] [Bug 112486] [META] Bugs caused/worsened by more use of DirectWrite

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112486

Xisco Faulí  changed:

   What|Removed |Added

  Alias|Regressions-DirertWrite |Regression-DirectWrite

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


[Libreoffice-bugs] [Bug 112486] [META] Bugs caused/worsened by more use of DirectWrite

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112486
Bug 112486 depends on bug 110794, which changed state.

Bug 110794 Summary: Slower LO redraw speed with big Writer table since 5.3 
(DirectWrite)
https://bugs.documentfoundation.org/show_bug.cgi?id=110794

   What|Removed |Added

 Status|RESOLVED|NEW
 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 110794] Slower LO redraw speed with big Writer table since 5.3 ( DirectWrite)

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=110794

Xisco Faulí  changed:

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|WORKSFORME  |---
Summary|Slower LO redraw speed with |Slower LO redraw speed with
   |big Writer table since 5.3  |big Writer table since 5.3
   ||(DirectWrite)

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


[Libreoffice-bugs] [Bug 112486] [META] Bugs caused/worsened by more use of DirectWrite

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112486
Bug 112486 depends on bug 109220, which changed state.

Bug 109220 Summary: App. one second delay when using Page UP/DOWN and switching 
between tabs (DirectWrite)
https://bugs.documentfoundation.org/show_bug.cgi?id=109220

   What|Removed |Added

 Status|RESOLVED|NEW
 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 108075] [META] Scrolling and Page up/down issues

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108075
Bug 108075 depends on bug 109220, which changed state.

Bug 109220 Summary: App. one second delay when using Page UP/DOWN and switching 
between tabs (DirectWrite)
https://bugs.documentfoundation.org/show_bug.cgi?id=109220

   What|Removed |Added

 Status|RESOLVED|NEW
 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 109220] App. one second delay when using Page UP/ DOWN and switching between tabs (DirectWrite)

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109220

Xisco Faulí  changed:

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|FIXED   |---
Summary|App. one second delay when  |App. one second delay when
   |using Page UP/DOWN and  |using Page UP/DOWN and
   |switching between tabs  |switching between tabs
   ||(DirectWrite)

--- Comment #13 from Xisco Faulí  ---
This is a problem in DirectWrite, thus it's not fixed. My commit only changes
the behaviour to use GDI instead, as it was before. The plan is to move to
DirectWrite at some point. Keeping it open.

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


[Libreoffice-bugs] [Bug 112486] [META] Bugs caused/worsened by more use of DirectWrite

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112486
Bug 112486 depends on bug 109174, which changed state.

Bug 109174 Summary: EDITING: There are lots of font queries when changing the 
font size (DirectWrite)
https://bugs.documentfoundation.org/show_bug.cgi?id=109174

   What|Removed |Added

 Status|RESOLVED|NEW
 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 109234] [META] DirectWrite rendering bugs and enhancements

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109234
Bug 109234 depends on bug 109174, which changed state.

Bug 109174 Summary: EDITING: There are lots of font queries when changing the 
font size (DirectWrite)
https://bugs.documentfoundation.org/show_bug.cgi?id=109174

   What|Removed |Added

 Status|RESOLVED|NEW
 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 108636] [META] Extensive file accesses

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108636
Bug 108636 depends on bug 109174, which changed state.

Bug 109174 Summary: EDITING: There are lots of font queries when changing the 
font size (DirectWrite)
https://bugs.documentfoundation.org/show_bug.cgi?id=109174

   What|Removed |Added

 Status|RESOLVED|NEW
 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 109174] EDITING: There are lots of font queries when changing the font size (DirectWrite)

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109174

Xisco Faulí  changed:

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|WORKSFORME  |---
Summary|EDITING: There are lots of  |EDITING: There are lots of
   |font queries when changing  |font queries when changing
   |the font size (which|the font size (DirectWrite)
   |weren't there before)   |

--- Comment #7 from Xisco Faulí  ---
This is a problem in DirectWrite, thus it's not fixed. My commit only changes
the behaviour to use GDI instead, as it was before. The plan is to move to
DirectWrite at some point. Keeping it open.

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


[Libreoffice-bugs] [Bug 108574] Scrolling complex document at zoomlevel 50% from 5.3 appears to be slower as it has been before (DirectWrite)

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108574

Xisco Faulí  changed:

   What|Removed |Added

 Status|RESOLVED|NEW
 CC||xiscofa...@libreoffice.org
 Resolution|FIXED   |---
Summary|Scrolling complex document  |Scrolling complex document
   |at zoomlevel 50% from 5.3   |at zoomlevel 50% from 5.3
   |appears to be slower as it  |appears to be slower as it
   |has been before |has been before
   ||(DirectWrite)

--- Comment #14 from Xisco Faulí  ---
This is a problem in DirectWrite, thus it's not fixed. My commit only changes
the behaviour to use GDI instead, as it was before. The plan is to move to
DirectWrite at some point. Keeping it open.

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


[Libreoffice-bugs] [Bug 112486] [META] Bugs caused/worsened by more use of DirectWrite

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112486
Bug 112486 depends on bug 108574, which changed state.

Bug 108574 Summary: Scrolling complex document at zoomlevel 50% from 5.3 
appears to be slower as it has been before (DirectWrite)
https://bugs.documentfoundation.org/show_bug.cgi?id=108574

   What|Removed |Added

 Status|RESOLVED|NEW
 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 112486] [META] Bugs caused/worsened by more use of DirectWrite

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112486
Bug 112486 depends on bug 108535, which changed state.

Bug 108535 Summary: EDITING: Slow scrolling with Formatting marks enabled 
(DirectWrite)
https://bugs.documentfoundation.org/show_bug.cgi?id=108535

   What|Removed |Added

 Status|RESOLVED|NEW
 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 108535] EDITING: Slow scrolling with Formatting marks enabled ( DirectWrite)

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108535

Xisco Faulí  changed:

   What|Removed |Added

 Status|RESOLVED|NEW
 CC||xiscofa...@libreoffice.org
 Resolution|WORKSFORME  |---
Summary|EDITING: Slow scrolling |EDITING: Slow scrolling
   |with Formatting marks   |with Formatting marks
   |enabled |enabled (DirectWrite)

--- Comment #7 from Xisco Faulí  ---
This is a problem in DirectWrite, thus it's not fixed. My commit only changes
the behaviour to use GDI instead, as it was before. The plan is to move to
DirectWrite at some point. Keeping it open.

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


[Libreoffice-bugs] [Bug 112486] [META] Bugs caused/worsened by more use of DirectWrite

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112486

Xisco Faulí  changed:

   What|Removed |Added

  Alias|Regressions-from-more-DWrit |Regressions-DirertWrite
   |e   |

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

2017-10-04 Thread Andras Timar
 loleaflet/po/styles/af.po  |  796 +++
 loleaflet/po/styles/am.po  |   28 
 loleaflet/po/styles/ar.po  | 1408 ++
 loleaflet/po/styles/as.po  | 1416 +++
 loleaflet/po/styles/ast.po | 1008 
 loleaflet/po/styles/be.po  |  752 ++
 loleaflet/po/styles/bg.po  | 1492 
 loleaflet/po/styles/bn-IN.po   | 1428 +++
 loleaflet/po/styles/bn.po  | 1088 ++
 loleaflet/po/styles/bo.po  |  932 +++
 loleaflet/po/styles/br.po  | 1256 +++
 loleaflet/po/styles/brx.po |  100 ++
 loleaflet/po/styles/bs.po  | 1188 +
 loleaflet/po/styles/ca-valencia.po | 1472 
 loleaflet/po/styles/ca.po  | 1496 +
 loleaflet/po/styles/cs.po  | 1340 +
 loleaflet/po/styles/cy.po  |  884 +
 loleaflet/po/styles/da.po  |  984 
 loleaflet/po/styles/de.po  | 1116 +++
 loleaflet/po/styles/dgo.po | 1084 ++
 loleaflet/po/styles/dz.po  |  280 ++
 loleaflet/po/styles/el.po  | 1464 
 loleaflet/po/styles/eo.po  | 1440 +++
 loleaflet/po/styles/es.po  | 1200 +
 loleaflet/po/styles/et.po  | 1284 +++
 loleaflet/po/styles/eu.po  | 1340 +
 loleaflet/po/styles/fa.po  |  612 +++
 loleaflet/po/styles/fi.po  | 1480 
 loleaflet/po/styles/fr.po  | 1084 ++
 loleaflet/po/styles/ga.po  | 1188 +
 loleaflet/po/styles/gd.po  | 1116 +++
 loleaflet/po/styles/gl.po  | 1108 +++
 loleaflet/po/styles/gu.po  | 1400 ++
 loleaflet/po/styles/gug.po | 1140 
 loleaflet/po/styles/he.po  | 1392 ++
 loleaflet/po/styles/hi.po  | 1240 ++
 loleaflet/po/styles/hr.po  | 1172 
 loleaflet/po/styles/hu.po  | 1200 +
 loleaflet/po/styles/id.po  |  916 ++
 loleaflet/po/styles/is.po  | 1160 
 loleaflet/po/styles/it.po  | 1052 ++
 loleaflet/po/styles/ja.po  | 1464 
 loleaflet/po/styles/ka.po  |  156 +++
 loleaflet/po/styles/kk.po  | 1492 
 loleaflet/po/styles/km.po  | 1256 +++
 loleaflet/po/styles/kmr-Latn.po|  912 ++
 loleaflet/po/styles/kn.po  | 1428 +++
 loleaflet/po/styles/ko.po  | 1164 
 loleaflet/po/styles/kok.po | 1060 ++
 loleaflet/po/styles/ks.po  |   96 ++
 loleaflet/po/styles/lb.po  |  252 ++
 loleaflet/po/styles/lo.po  |   96 ++
 loleaflet/po/styles/lt.po  | 1188 +
 loleaflet/po/styles/lv.po  | 1376 ++
 loleaflet/po/styles/mai.po |  308 +++
 loleaflet/po/styles/mk.po  |  936 +++
 loleaflet/po/styles/ml.po  | 1260 +++
 loleaflet/po/styles/mn.po  |  888 +
 loleaflet/po/styles/mni.po |   96 ++
 loleaflet/po/styles/mr.po  | 1256 +++
 loleaflet/po/styles/my.po  |  992 
 loleaflet/po/styles/nb.po  | 1052 ++
 loleaflet/po/styles/ne.po  | 1052 ++
 loleaflet/po/styles/nl.po  | 1112 +++
 loleaflet/po/styles/nn.po  | 1056 ++
 loleaflet/po/styles/nr.po  |  552 +
 loleaflet/po/styles/nso.po |  956 +++
 loleaflet/po/styles/oc.po  |  956 +++
 loleaflet/po/styles/om.po  |  968 +++
 loleaflet/po/styles/or.po  | 1292 +++
 loleaflet/po/styles/pa-IN.po   | 1132 +++
 loleaflet/po/styles/pl.po  | 1180 +
 

[Libreoffice-bugs] [Bug 112486] [META] Bugs caused/worsened by more use of DirectWrite

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112486
Bug 112486 depends on bug 108361, which changed state.

Bug 108361 Summary: Scrolling a complex table structure seems to be slower as 
before (DirectWrite)
https://bugs.documentfoundation.org/show_bug.cgi?id=108361

   What|Removed |Added

 Status|RESOLVED|NEW
 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 108361] Scrolling a complex table structure seems to be slower as before ( DirectWrite)

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108361

Xisco Faulí  changed:

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|WORKSFORME  |---
Summary|Scrolling a complex table   |Scrolling a complex table
   |structure seems to be   |structure seems to be
   |slower as before|slower as before
   ||(DirectWrite)

--- Comment #7 from Xisco Faulí  ---
This is a problem in DirectWrite, thus it's not fixed. My commit only changes
the behaviour to use GDI instead, as it was before. The plan is to move to
DirectWrite at some point. Keeping it open.

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


[Libreoffice-bugs] [Bug 112486] [META] Bugs caused/worsened by more use of DirectWrite

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112486
Bug 112486 depends on bug 107090, which changed state.

Bug 107090 Summary: Text is poorly rendered to presentation mode canvas with 
default rendering and "Use hardware acceleration" enabled (OpenGL and CPU only 
rendering is correct) (DirectWrite)
https://bugs.documentfoundation.org/show_bug.cgi?id=107090

   What|Removed |Added

 Status|RESOLVED|NEW
 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 103859] [META] EMF/WMF (Enhanced/Windows Metafile) bugs and enhancements

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103859
Bug 103859 depends on bug 108236, which changed state.

Bug 108236 Summary: Text in EMF looks worse since 5.3.2.2 esp. with default 
rendering (in 6.0+ only in presentation mode) (DirectWrite)
https://bugs.documentfoundation.org/show_bug.cgi?id=108236

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 112486] [META] Bugs caused/worsened by more use of DirectWrite

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112486
Bug 112486 depends on bug 108236, which changed state.

Bug 108236 Summary: Text in EMF looks worse since 5.3.2.2 esp. with default 
rendering (in 6.0+ only in presentation mode) (DirectWrite)
https://bugs.documentfoundation.org/show_bug.cgi?id=108236

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 107355] Slow spreadsheet redraw speed since 5.3 (DirectWrite)

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107355

Xisco Faulí  changed:

   What|Removed |Added

Summary|Slow spreadsheet redraw |Slow spreadsheet redraw
   |speed since 5.3 |speed since 5.3
   ||(DirectWrite)

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


[Libreoffice-bugs] [Bug 109234] [META] DirectWrite rendering bugs and enhancements

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109234
Bug 109234 depends on bug 108236, which changed state.

Bug 108236 Summary: Text in EMF looks worse since 5.3.2.2 esp. with default 
rendering (in 6.0+ only in presentation mode) (DirectWrite)
https://bugs.documentfoundation.org/show_bug.cgi?id=108236

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 71732] [META] Bugs related to text rendering, typography and font features in LO

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71732
Bug 71732 depends on bug 108236, which changed state.

Bug 108236 Summary: Text in EMF looks worse since 5.3.2.2 esp. with default 
rendering (in 6.0+ only in presentation mode) (DirectWrite)
https://bugs.documentfoundation.org/show_bug.cgi?id=108236

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 108236] Text in EMF looks worse since 5.3.2.2 esp. with default rendering ( in 6.0+ only in presentation mode) (DirectWrite)

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=108236

Xisco Faulí  changed:

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|DUPLICATE   |---
Summary|Text in EMF looks worse |Text in EMF looks worse
   |since 5.3.2.2 esp. with |since 5.3.2.2 esp. with
   |default rendering (in 6.0+  |default rendering (in 6.0+
   |only in presentation mode)  |only in presentation mode)
   ||(DirectWrite)

--- Comment #9 from Xisco Faulí  ---
This is a problem in DirectWrite, thus it's not fixed. My commit only changes
the behaviour to use GDI instead, as it was before. The plan is to move to
DirectWrite at some point. Keeping it open.

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


[Libreoffice-bugs] [Bug 112486] [META] Bugs caused/worsened by more use of DirectWrite

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112486
Bug 112486 depends on bug 107355, which changed state.

Bug 107355 Summary: Slow spreadsheet redraw speed since 5.3
https://bugs.documentfoundation.org/show_bug.cgi?id=107355

   What|Removed |Added

 Status|RESOLVED|NEW
 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 109234] [META] DirectWrite rendering bugs and enhancements

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=109234
Bug 109234 depends on bug 107090, which changed state.

Bug 107090 Summary: Text is poorly rendered to presentation mode canvas with 
default rendering and "Use hardware acceleration" enabled (OpenGL and CPU only 
rendering is correct) (DirectWrite)
https://bugs.documentfoundation.org/show_bug.cgi?id=107090

   What|Removed |Added

 Status|RESOLVED|NEW
 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 107355] Slow spreadsheet redraw speed since 5.3

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107355

Xisco Faulí  changed:

   What|Removed |Added

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

--- Comment #17 from Xisco Faulí  ---
This is a problem in DirectWrite, thus it's not fixed. My commit only changes
the behaviour to use GDI instead, as it was before. The plan is to move to
DirectWrite at some point. Keeping it open.

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


[Libreoffice-bugs] [Bug 71732] [META] Bugs related to text rendering, typography and font features in LO

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71732
Bug 71732 depends on bug 107090, which changed state.

Bug 107090 Summary: Text is poorly rendered to presentation mode canvas with 
default rendering and "Use hardware acceleration" enabled (OpenGL and CPU only 
rendering is correct) (DirectWrite)
https://bugs.documentfoundation.org/show_bug.cgi?id=107090

   What|Removed |Added

 Status|RESOLVED|NEW
 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 103494] [META] Textbox bugs and enhancements

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=103494
Bug 103494 depends on bug 107090, which changed state.

Bug 107090 Summary: Text is poorly rendered to presentation mode canvas with 
default rendering and "Use hardware acceleration" enabled (OpenGL and CPU only 
rendering is correct) (DirectWrite)
https://bugs.documentfoundation.org/show_bug.cgi?id=107090

   What|Removed |Added

 Status|RESOLVED|NEW
 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 107090] Text is poorly rendered to presentation mode canvas with default rendering and "Use hardware acceleration" enabled ( OpenGL and CPU only rendering is correct) (DirectWr

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107090

Xisco Faulí  changed:

   What|Removed |Added

 Status|RESOLVED|NEW
 Resolution|FIXED   |---
Summary|Text is poorly rendered to  |Text is poorly rendered to
   |presentation mode canvas|presentation mode canvas
   |with default rendering and  |with default rendering and
   |"Use hardware acceleration" |"Use hardware acceleration"
   |enabled (OpenGL and CPU |enabled (OpenGL and CPU
   |only rendering is correct)  |only rendering is correct)
   ||(DirectWrite)

--- Comment #28 from Xisco Faulí  ---
This is a problem in DirectWrite, thus it's not fixed. My commit only changes
the behaviour to use GDI instead, as it was before. The plan is to move to
DirectWrite at some point. Keeping it open.

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


[Libreoffice-bugs] [Bug 61405] LibreOffice unable to paste image from clipboard

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=61405

Daniel Boyd  changed:

   What|Removed |Added

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

--- Comment #13 from Daniel Boyd  ---
I am experiencing a slight variation of this issue.  I am running:

Debian Testing (Buster)
GNOME 3.26
LibreOffice 5.4.1.2.0+, Build ID: 1:5.4.1-1

I am unable to copy and paste graphics from GIMP to Libreoffice.

I am able to paste the same image into Gnumeric, so the issue appears to be
with LibreOffice.

To Repeat:
1) select area in GIMP
2) Ctrl-C
3) switch to libreoffice program (have tested Impress and Calc)
4) Ctrl-V

Expected Result:
image is pasted into Libreoffice

Actual Result:
The mouse cursor switches to a spinning wheel for a few seconds and then
nothing happens.  A few times, LibreOffice has then gone onto crash shortly
afterwards.

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

2017-10-04 Thread Eike Rathke
 include/i18nlangtag/lang.h |8 
 1 file changed, 8 insertions(+)

New commits:
commit 7901ede8a63f41aea707bd19c22f834253161378
Author: Eike Rathke 
Date:   Wed Oct 4 14:33:29 2017 +0200

Add 0xF400 and 0xF800 constants for number format code modifiers, tdf#102075

Change-Id: Ic379135f2d12023b1d50d70e72b640e2380483b7

diff --git a/include/i18nlangtag/lang.h b/include/i18nlangtag/lang.h
index b2c313094adb..c83bd82e041e 100644
--- a/include/i18nlangtag/lang.h
+++ b/include/i18nlangtag/lang.h
@@ -478,6 +478,14 @@ namespace o3tl
  *! LANGUAGE_SYSTEM and then to effective system language */
 #define LANGUAGE_PROCESS_OR_USER_DEFAULTLanguageType(0x0400)
 
+/* Number format code modifier attribute for system time.
+ * Primary language 0x000, sublanguage 0x3D. */
+#define LANGUAGE_NF_SYSTEM_TIME LanguageType(0xF400)
+
+/* Number format code modifier attribute for system date.
+ * Primary language 0x000, sublanguage 0x3E. */
+#define LANGUAGE_NF_SYSTEM_DATE LanguageType(0xF800)
+
 
 /* And now the extensions we define,
  * with primary language IDs from 0x200 to 0x3FF valid in blocks from
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 71732] [META] Bugs related to text rendering, typography and font features in LO

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=71732

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||39805


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=39805
[Bug 39805] Hebrew nikud not represented properly (Windows specific)
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 39805] Hebrew nikud not represented properly (Windows specific)

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=39805

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||71732


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=71732
[Bug 71732] [META] Bugs related to text rendering, typography and font features
in LO
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-commits] core.git: vcl/win

2017-10-04 Thread Tor Lillqvist
 vcl/win/gdi/salfont.cxx   |2 +-
 vcl/win/gdi/winlayout.cxx |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 013044d12b61ac3b1b0b0f6e845825cac1894d94
Author: Tor Lillqvist 
Date:   Wed Oct 4 23:40:39 2017 +0300

It's called 'DirectWrite', one word

Change-Id: I4892da38182295ca474e89bb061f713039cfd8e1

diff --git a/vcl/win/gdi/salfont.cxx b/vcl/win/gdi/salfont.cxx
index 70ad1e908152..19c6424e6dfd 100644
--- a/vcl/win/gdi/salfont.cxx
+++ b/vcl/win/gdi/salfont.cxx
@@ -231,7 +231,7 @@ namespace
 }
 
 // These are Win 3.1 bitmap fonts using "FON" font format
-// which is not supported with "Direct Write" so let's substitute them
+// which is not supported with DirectWrite so let's substitute them
 // with a font that is supported and always available.
 // Based on:
 // 
https://dxr.mozilla.org/mozilla-esr10/source/gfx/thebes/gfxDWriteFontList.cpp#1057
diff --git a/vcl/win/gdi/winlayout.cxx b/vcl/win/gdi/winlayout.cxx
index f7161301d72a..cb70d9268514 100644
--- a/vcl/win/gdi/winlayout.cxx
+++ b/vcl/win/gdi/winlayout.cxx
@@ -83,7 +83,7 @@ bool WinFontInstance::CacheGlyphToAtlas(HDC hDC, HFONT hFont, 
int nGlyphIndex, S
 
 if (!pTxt->BindFont(aHDC.get()))
 {
-SAL_WARN("vcl.gdi", "Binding of font failed. The font might not be 
supported by Direct Write.");
+SAL_WARN("vcl.gdi", "Binding of font failed. The font might not be 
supported by DirectWrite.");
 return false;
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-bugs] [Bug 80430] [META] LOCALHELP: Features x Documentation gap

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=80430

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||112872


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=112872
[Bug 112872] Amend Clone formatting help with details regarding direct
formatting
-- 
You are receiving this mail because:
You are the assignee for the bug.___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 112872] Amend Clone formatting help with details regarding direct formatting

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=112872

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||80430


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 39936] UI: Right Click on Row/Column -> Insert Copied Cells... ( paste + shift cells in one click)

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=39936

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Blocks||86899


Referenced Bugs:

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


[Libreoffice-bugs] [Bug 86899] [META] Requests for the addition of UNO commands

2017-10-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=86899

Yousuf Philips (jay)  changed:

   What|Removed |Added

 Depends on||39936


Referenced Bugs:

https://bugs.documentfoundation.org/show_bug.cgi?id=39936
[Bug 39936] UI: Right Click on Row/Column -> Insert Copied Cells... (paste +
shift cells in one click)
-- 
You are receiving this mail because:
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   >