Re: Update on the patches

2015-09-12 Thread Guillaume Munch
Le 13/09/2015 03:19, Scott Kostyshak a écrit : On Sun, Sep 13, 2015 at 02:31:27AM +0100, Guillaume Munch wrote: Dear list, I've pushed the patches that we discussed. First of all, congrats on your push! I am now enjoying the improvements you just committed and I am looking forward to your f

Re: Update on the patches

2015-09-12 Thread Scott Kostyshak
On Sun, Sep 13, 2015 at 02:31:27AM +0100, Guillaume Munch wrote: > Dear list, > I've pushed the patches that we discussed. First of all, congrats on your push! I am now enjoying the improvements you just committed and I am looking forward to your future work on LyX. You already seem to have an ex

Re: LyX on high resolution displays

2015-09-12 Thread Scott Kostyshak
On Sat, Sep 12, 2015 at 11:48:37PM +, David wrote: > OS: Windows 10 > LyX version: 2.1.4 > > I recently purchased a 4K resolution monitor (3840 by 2160). > > By using LyX's zoom settings I can make text and formulas look a nice size. > However, the icons on the toolbar in LyX now appear very

Update on the patches

2015-09-12 Thread Guillaume Munch
Dear list, I've pushed the patches that we discussed. * f3008c30 and 4d1ad336 are suitable for stable. Shall I commit them? * Am I responsible for updating the release notes? If so, do all the little bug fixes have to be mentioned? * Where should I commit po files? I vaguely remember readin

Re: Crash on Fedora 23 on copying or cutting text

2015-09-12 Thread José Matos
On Friday 11 September 2015 23:33:52 Georg Baum wrote: > The attached patch fixes the crash. Shall I apply it? > > > Georg Please do. :-) I can confirm that it solves all the crashes I had before (FWIW I am just testing 2.1.4). Best regards, -- José Abílio

Re: mailing list test

2015-09-12 Thread Jerry
On Sep 6, 2015, at 12:23 PM, Stephan Witt wrote: > Am 06.09.2015 um 20:09 schrieb Richard Heck : > >> On 09/05/2015 04:11 AM, Stephan Witt wrote: >>> Sorry for this test, but I don't get any mails for lyx-devel and lyx-users >>> anymore since the 8th of August or so. >>> >>> I tried to subscr

LyX on high resolution displays

2015-09-12 Thread David
OS: Windows 10 LyX version: 2.1.4 I recently purchased a 4K resolution monitor (3840 by 2160). By using LyX's zoom settings I can make text and formulas look a nice size. However, the icons on the toolbar in LyX now appear very small as do the pallets at the bottom of the window. Is it on the r

Re: Linker error while building Lyx 2.2 on OSX

2015-09-12 Thread david
Thanks Stephan. When I launch this version of LyX, I got an error saying that textclasses could not be found, which persisted even after I had updated the paths to match my LyX 2.1 settings exactly. Are there any paths hardcoded into the build? ~David On Sun, Sep 6, 2015 at 7:03 AM, Step

Re: textcommands in math mode

2015-09-12 Thread Enrico Forestieri
On Thu, Sep 10, 2015 at 02:14:26PM +, Guenter Milde wrote: > Dear LyX developers, > > LyX mis-handles some text commands in math mode. > > Try: > > * open LyX, > * open a new document, > * open a math box (CTRL-M) > * write \text\AA > > This looks completely OK (a letter A-with-ring (Å) a

Problem with InsetMathSideset::dyb

2015-09-12 Thread Jean-Marc Lasgouttes
Coverity points out that in the code below, des is overwritten without being used. The same happens in dyt(). Georg, any comment? JMarc int InsetMathSideset::dyb(BufferView const & bv) const 128{ 129int nd = ndes(bv); 130int des = 0; 131if (scriptl_ && scriptr_) 132

Re: [LyX/master] Add missing braces

2015-09-12 Thread Jean-Marc Lasgouttes
Le 12/09/15 18:48, Jean-Marc Lasgouttes a écrit : Le 12/09/15 18:43, Jean-Marc a écrit : commit 61f02710317b99a050346a0c95c02fcdd457bfca Author: Jean-Marc Date: Sat Sep 12 18:40:52 2015 +0200 Add missing braces Coverity issue 23506. This is an example of a bug found by coverity

Re: [LyX/master] Add missing braces

2015-09-12 Thread Jean-Marc Lasgouttes
Le 12/09/15 18:43, Jean-Marc a écrit : commit 61f02710317b99a050346a0c95c02fcdd457bfca Author: Jean-Marc Date: Sat Sep 12 18:40:52 2015 +0200 Add missing braces Coverity issue 23506. This is an example of a bug found by coverity amidst lots of nit picking. However doing the bori

Re: Crash on Fedora 23 on copying or cutting text

2015-09-12 Thread Jean-Marc Lasgouttes
Le 12/09/15 13:58, Georg Baum a écrit : Jean-Marc Lasgouttes wrote: I suspect a compiler bug. After further thinking about it I agree and reported it: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67557 The attached patch fixes the crash. Shall I apply it? Sure, it makes the code cleaner a

Re: Crash on Fedora 23 on copying or cutting text

2015-09-12 Thread Georg Baum
Jean-Marc Lasgouttes wrote: > I suspect a compiler bug. After further thinking about it I agree and reported it: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67557 >> The attached patch fixes the crash. Shall I apply it? > > Sure, it makes the code cleaner anyway. Did you try to run valgrind w

Re: Crash on Fedora 23 on copying or cutting text

2015-09-12 Thread Jean-Marc Lasgouttes
Le 11/09/15 23:33, Georg Baum a écrit : fontToStartTag() is a function that constructs a StartTag and returns it. Then, the copy constructor StartTag::StartTag() is called, constructing the FontTag object from the temporary StartTag object, and finally font_type_ is initialized. Calling a copy co