Re: [PATCH] comment out function to get rid of a compiler warning

2012-05-20 Thread Vincent van Ravesteijn
Thanks, I've committed it. Also for branch ? Vincent

[patch] ampersand + shortcut leaves an underscore in menu

2012-05-20 Thread Scott Kostyshak
In the menu when there is an entry that has an ampersand and it has a shortcut, an unnecessary underscore is displayed. For example, instead of Find Replace (Quick)... I see _Find Replace (Quick) I see this behavior on Ubuntu 12.04 with Qt 4.8.1. The attached patch fixes this. Note that

Re: [patch] ampersand + shortcut leaves an underscore in menu

2012-05-20 Thread Vincent van Ravesteijn
Op 20-5-2012 12:50, Scott Kostyshak schreef: In the menu when there is an entry that has an ampersand and it has a shortcut, an unnecessary underscore is displayed. For example, instead of Find Replace (Quick)... I see _Find Replace (Quick) I see this behavior on Ubuntu 12.04 with Qt

RE: [patch] ampersand + shortcut leaves an underscore in menu

2012-05-20 Thread Scott Kostyshak
From: Vincent van Ravesteijn [v...@lyx.org] Sent: Sunday, May 20, 2012 7:05 AM Isn't this exactly what is expected ? The |F means that the F is the accelerator, and thus it will be underlined. I don't see a relation with the ampersand. I agree that F should be underlined. But for me (without

Re: no GUI error when configure fails on first configure

2012-05-20 Thread Richard Heck
On 05/19/2012 10:54 PM, Scott Kostyshak wrote: When you reconfigure by going to Tools Reconfigure, if the python script returns a non-zero exit status, a useful GUI error is displayed. However, when configure is run from LyX.cpp on the first run, you can only see if there is an error in the

Re: [patch] ampersand + shortcut leaves an underscore in menu

2012-05-20 Thread Jean-Marc Lasgouttes
Le 20/05/12 13:25, Scott Kostyshak a écrit : *From:* Vincent van Ravesteijn [v...@lyx.org] *Sent:* Sunday, May 20, 2012 7:05 AM Isn't this exactly what is expected ? The |F means that the F is the accelerator, and thus it will be underlined. I don't see a relation with the ampersand. I agree

Re: [LyX master] Fix bug #8164: lyxpak.py fails to include filenames with spaces

2012-05-20 Thread Richard Heck
On 05/20/2012 10:34 AM, Enrico Forestieri wrote: The branch, master, has been updated. - Log - commit fbcf2486d84b4ea543560cb7f583bc38e6cf67f5 Author: Enrico Forestierifor...@lyx.org Date: Sun May 20 16:32:47 2012 +0200

RE: no GUI error when configure fails on first configure

2012-05-20 Thread Scott Kostyshak
From: Richard Heck [rgh...@comcast.net] Sent: Sunday, May 20, 2012 9:53 AM I think the GUI is accessible at this point---if use_gui is true. So you might just try something like: if (use_gui) frontend::Alert(...); else LYXERR0(...); at the relevant point. If not, then we

Re: [PATCH] comment out function to get rid of a compiler warning

2012-05-20 Thread Vincent van Ravesteijn
Thanks, I've committed it. Also for branch ? Vincent

[patch] ampersand + shortcut leaves an underscore in menu

2012-05-20 Thread Scott Kostyshak
In the menu when there is an entry that has an ampersand and it has a shortcut, an unnecessary underscore is displayed. For example, instead of "Find & Replace (Quick)..." I see "_Find & Replace (Quick)...". I see this behavior on Ubuntu 12.04 with Qt 4.8.1. The attached patch fixes this. Note

Re: [patch] ampersand + shortcut leaves an underscore in menu

2012-05-20 Thread Vincent van Ravesteijn
Op 20-5-2012 12:50, Scott Kostyshak schreef: In the menu when there is an entry that has an ampersand and it has a shortcut, an unnecessary underscore is displayed. For example, instead of "Find & Replace (Quick)..." I see "_Find & Replace (Quick)...". I see this behavior on Ubuntu 12.04 with

RE: [patch] ampersand + shortcut leaves an underscore in menu

2012-05-20 Thread Scott Kostyshak
From: Vincent van Ravesteijn [v...@lyx.org] Sent: Sunday, May 20, 2012 7:05 AM >Isn't this exactly what is expected ? The "|F" means that the F is the >accelerator, and thus it will be >underlined. I don't see a relation with the >ampersand. I agree that F should be underlined. But for me

Re: no GUI error when configure fails on first configure

2012-05-20 Thread Richard Heck
On 05/19/2012 10:54 PM, Scott Kostyshak wrote: When you reconfigure by going to Tools > Reconfigure, if the python script returns a non-zero exit status, a useful GUI error is displayed. However, when configure is run from LyX.cpp on the first run, you can only see if there is an error in the

Re: [patch] ampersand + shortcut leaves an underscore in menu

2012-05-20 Thread Jean-Marc Lasgouttes
Le 20/05/12 13:25, Scott Kostyshak a écrit : *From:* Vincent van Ravesteijn [v...@lyx.org] *Sent:* Sunday, May 20, 2012 7:05 AM >Isn't this exactly what is expected ? The "|F" means that the F is the accelerator, and thus it will be >underlined. I don't see a relation with the ampersand. I

Re: [LyX master] Fix bug #8164: lyxpak.py fails to include filenames with spaces

2012-05-20 Thread Richard Heck
On 05/20/2012 10:34 AM, Enrico Forestieri wrote: The branch, master, has been updated. - Log - commit fbcf2486d84b4ea543560cb7f583bc38e6cf67f5 Author: Enrico Forestieri Date: Sun May 20 16:32:47 2012 +0200

RE: no GUI error when configure fails on first configure

2012-05-20 Thread Scott Kostyshak
From: Richard Heck [rgh...@comcast.net] Sent: Sunday, May 20, 2012 9:53 AM >I think the GUI is accessible at this point---if use_gui is true. So you might >just try something like: >if (use_gui) >frontend::Alert(...); >else >LYXERR0(...); >at the relevant point. If not,