Re: [for enrico] Question: do we still need that?

2024-08-29 Thread Enrico Forestieri
On Thu, Aug 29, 2024 at 07:20:05PM +0200, Jean-Marc Lasgouttes wrote: Actually, it seems to me that -geometry did not work anymore in unix/x11. The old logic in parse_geometry() seems backwards to me. It works in 2.3 and works again in stable and devel after reverting 16e7e93d and 88e739b4.

Re: [for enrico] Question: do we still need that?

2024-08-29 Thread Jean-Marc Lasgouttes
Le 29/08/2024 à 13:51, Enrico Forestieri a écrit : What I did not do is remove the hand-made parsing of geometry that is used for window-new lfun only on Windows (why?). Can this go away? That code was necessary for Qt4, where -qwindowgeometry was not available. It was necessary on Windows bec

Re: [for enrico] Question: do we still need that?

2024-08-29 Thread Kornel Benko
Am Thu, 29 Aug 2024 11:34:57 +0200 schrieb Jean-Marc Lasgouttes : > PS: the cmake part of second patch is missing, but it is > straightforward: get rid of QPA_XCB and define HAVE_XCB_XCB_H HAVE_LIXCB > if they are available. Done at f1fddd86. Kornel pgpHFfwqurgIE.pgp Description: Dig

Re: [for enrico] Question: do we still need that?

2024-08-29 Thread Enrico Forestieri
On Thu, Aug 29, 2024 at 11:34:57AM +0200, Jean-Marc Lasgouttes wrote: Le 28/08/2024 à 20:51, Enrico Forestieri a écrit : I am not sure I understand your concern. That makes the -geometry option work also on Windows. Maybe those lines can be transferred in the following guard, i.e., I propose

Re: [for enrico] Question: do we still need that?

2024-08-29 Thread Jean-Marc Lasgouttes
Le 28/08/2024 à 20:51, Enrico Forestieri a écrit : I am not sure I understand your concern. That makes the -geometry option work also on Windows. Maybe those lines can be transferred in the following guard, i.e., I propose a more radical approach, which is to change -geometry to -windowgeomet

Re: [for enrico] Question: do we still need that?

2024-08-28 Thread Enrico Forestieri
On Wed, Aug 28, 2024 at 04:48:16PM +0200, Jean-Marc Lasgouttes wrote: Le 28/08/2024 à 15:54, Jean-Marc Lasgouttes a écrit : In createAppplication, we have: #if !defined(QPA_XCB) // prune -geometry argument(s) by shifting // the following ones 2 places down. for (int i = 0 ; i < argc

Re: [for enrico] Question: do we still need that?

2024-08-28 Thread Jean-Marc Lasgouttes
Le 28/08/2024 à 15:54, Jean-Marc Lasgouttes a écrit : In createAppplication, we have: #if !defined(QPA_XCB) // prune -geometry argument(s) by shifting // the following ones 2 places down. for (int i = 0 ; i < argc ; ++i) {     if (strcmp(argv[i], "-geometry") == 0) {    

[for enrico] Question: do we still need that?

2024-08-28 Thread Jean-Marc Lasgouttes
In createAppplication, we have: #if !defined(QPA_XCB) // prune -geometry argument(s) by shifting // the following ones 2 places down. for (int i = 0 ; i < argc ; ++i) { if (strcmp(argv[i], "-geometry") == 0) { int const remove = (i+1

Re: Preview musings (and a question about pnmcrop)

2024-08-16 Thread José Matos
On Fri, 2024-08-16 at 10:10 +0100, José Matos wrote: > Question: > Does anyone have a reason to keep the current two stages process? The new code becomes simply: def crop_files(pnmcrop, basename): for file in glob.glob(f"{basename}*.ppm"): tmp = tempfi

Re: Preview musings (and a question about pnmcrop)

2024-08-16 Thread José Matos
On Fri, 2024-08-16 at 10:10 +0100, José Matos wrote: > Hi, >   my main focus now is to try to clean the python scripts that we > use. One question that I noticed while searching for this. Is it possible now to use preview when using minted? minted requires to invoke LaTeX with the -she

Preview musings (and a question about pnmcrop)

2024-08-16 Thread José Matos
options -left, the first time, and -right the last time. As far as I can see this is not required at all, pnmcrop supports both options at once. So I will fix this issue this way. Question: Does anyone have a reason to keep the current two stages process? Best regards, -- José Abílio -- lyx

Re: Alt/Option key question

2023-03-31 Thread Paul A. Rubin
question: Is there a way to prevent this, so that depressing/releasing the Option key simply has no effect on the cursor? Any thoughts appreciated. Thanks. Chris Menzel What OS are you using? I don't experience this on Linux Mint. Paul -- lyx-devel mailing list lyx-devel@lists.lyx.org

Alt/Option key question

2023-03-30 Thread Christopher Menzel
have to depress the Option key and let it up again to get the cursor back. This is a bit irritating: I often find myself depressing the Option key absent-mindedly when I’m thinking and it’s annoying to start typing and have nothing happen. Thus my question: Is there a way to prevent this, so that

Re: Python question

2022-12-29 Thread Jürgen Spitzmüller
Am Donnerstag, dem 29.12.2022 um 11:07 + schrieb José Matos: > That seems a reasonable thing to do, and it works for python 2 and 3. Thanks! > I suspect that in this case an even simpler version would be: > > if errorstring: > ... > > The difference from the above is that we would not print

Re: Python question

2022-12-29 Thread José Matos
On Thu, 2022-12-29 at 10:39 +0100, Jürgen Spitzmüller wrote: > makeupdatetests (runtests.py, for that matter) currently outputs > rather > unpleasant messages, since it just prints stderr.read() in encoded > form. > > The following change works for me, but is this the right thing to do? > > diff

Python question

2022-12-29 Thread Jürgen Spitzmüller
makeupdatetests (runtests.py, for that matter) currently outputs rather unpleasant messages, since it just prints stderr.read() in encoded form. The following change works for me, but is this the right thing to do? diff --git a/src/tex2lyx/test/runtests.py b/src/tex2lyx/test/runtests.py index 103

Re: OOP question: deduplicating code across two subclasses

2022-12-10 Thread Scott Kostyshak
On Sun, Dec 11, 2022 at 12:31:18AM +0100, Thibaut Cuvelier wrote: > On Sat, 10 Dec 2022 at 23:12, Scott Kostyshak wrote: > > > On Sat, Dec 10, 2022 at 10:36:51PM +0100, Thibaut Cuvelier wrote: > > > On Sat, 10 Dec 2022 at 17:19, Scott Kostyshak wrote: > > > > > > > PreambleModule::editExternal()

Re: OOP question: deduplicating code across two subclasses

2022-12-10 Thread Thibaut Cuvelier
On Sat, 10 Dec 2022 at 23:12, Scott Kostyshak wrote: > On Sat, Dec 10, 2022 at 10:36:51PM +0100, Thibaut Cuvelier wrote: > > On Sat, 10 Dec 2022 at 17:19, Scott Kostyshak wrote: > > > > > PreambleModule::editExternal() and LocalLayout::editExternal() share > > > most of their code. The functions

Re: OOP question: deduplicating code across two subclasses

2022-12-10 Thread Scott Kostyshak
On Sat, Dec 10, 2022 at 10:36:51PM +0100, Thibaut Cuvelier wrote: > On Sat, 10 Dec 2022 at 17:19, Scott Kostyshak wrote: > > > PreambleModule::editExternal() and LocalLayout::editExternal() share > > most of their code. The functions are pretty small, so there's not too > > much duplication as a

Re: OOP question: deduplicating code across two subclasses

2022-12-10 Thread Thibaut Cuvelier
On Sat, 10 Dec 2022 at 17:19, Scott Kostyshak wrote: > PreambleModule::editExternal() and LocalLayout::editExternal() share > most of their code. The functions are pretty small, so there's not too > much duplication as a whole. However, I'm still curious. How would I > best deduplicate the code?

OOP question: deduplicating code across two subclasses

2022-12-10 Thread Scott Kostyshak
PreambleModule::editExternal() and LocalLayout::editExternal() share most of their code. The functions are pretty small, so there's not too much duplication as a whole. However, I'm still curious. How would I best deduplicate the code? In this case I wonder if a friend function might be the best c

Question: How to retrieve the character

2022-05-27 Thread Kornel Benko
Given: BufferView * bv; DocIterator cur = bv->cursor(); How can I get the char_type character if cur.inMathed() == true? Kornel -- lyx-devel mailing list lyx-devel@lists.lyx.org http://lists.lyx.org/mailman/listinfo/lyx-devel pgp1l47qTKV_N.pgp Description: Dig

Re: Quick newbie question

2022-05-02 Thread Lorenzo Bertini
Il 02/05/22 13:39, Pavel Sanda ha scritto: On Mon, May 02, 2022 at 01:04:23PM +0200, Lorenzo Bertini wrote: Update: file was never gone, just in its folder "3rdparty". Compilation now works after countless attemps, and I didn't really change anything :). Problem is here again after another att

Re: Quick newbie question

2022-05-02 Thread Pavel Sanda
On Mon, May 02, 2022 at 01:04:23PM +0200, Lorenzo Bertini wrote: > >Update: file was never gone, just in its folder "3rdparty". Compilation > >now works after countless attemps, and I didn't really change anything :). > > Problem is here again after another attempted bisect, failure, and restoring

Re: Quick newbie question

2022-05-02 Thread Lorenzo Bertini
Il 01/01/22 19:01, Lorenzo Bertini ha scritto: Il 01/01/22 17:54, Lorenzo Bertini ha scritto: Dear list, I found a bug and needed to bisect, so i moved back HEAD to an old commit, then configured and built. I went back to master and can't build anymore because its missing `nod.hpp` file; no g

Re: Question on Multiple Render Passes

2022-01-12 Thread Daniel
On 12/01/2022 06:44, Joel Kulesza wrote: LyX Developers, A colleague asked me a question the other day on how LyX operates that I was unsure of, which I hope you can help me with.  He'd read that an approach to "speeding up" multiple render-pass LaTeX compilations is to

Question on Multiple Render Passes

2022-01-11 Thread Joel Kulesza
LyX Developers, A colleague asked me a question the other day on how LyX operates that I was unsure of, which I hope you can help me with. He'd read that an approach to "speeding up" multiple render-pass LaTeX compilations is to use draft-mode compiles for all but the final compi

Re: Quick newbie question

2022-01-01 Thread Lorenzo Bertini
Il 01/01/22 17:54, Lorenzo Bertini ha scritto: Dear list, I found a bug and needed to bisect, so i moved back HEAD to an old commit, then configured and built. I went back to master and can't build anymore because its missing `nod.hpp` file; no git command seems to restore this file (git rese

Quick newbie question

2022-01-01 Thread Lorenzo Bertini
Dear list, I found a bug and needed to bisect, so i moved back HEAD to an old commit, then configured and built. I went back to master and can't build anymore because its missing `nod.hpp` file; no git command seems to restore this file (git reset --hard, creating a new master branch tracking

Re: A Small Question

2021-04-12 Thread Scott Kostyshak
On Mon, Apr 12, 2021 at 01:30:26PM -0600, Doug Martin wrote: > P.S. Some time ago I tried using xtable, but I found use of kable > (included in > the knitr package) enhanced with the kableExtra package and its > documentation, e.g., > "Create Awesome LaTeX Table with knitr::kable and kableExtra" a

Re: A Small Question

2021-04-12 Thread Doug Martin
P.S. Some time ago I tried using xtable, but I found use of kable (included in the knitr package) enhanced with the kableExtra package and its documentation, e.g., "Create Awesome LaTeX Table with knitr::kable and kableExtra" as of 2021-02-19, at CRAN "https://cran.r-project.org/web/packages/kable

Re: A Small Question

2021-04-12 Thread Doug Martin
Scott, Thanks for your suggestions, both of which work, without resulting in the error message we were getting. This is simpler than adding the LaTeX code lines for every table, so we will use it. We will suggest the change needed to the kableExtra author Hao Zhu, who has previously been very hel

Re: A Small Question

2021-04-11 Thread Scott Kostyshak
On Sun, Apr 11, 2021 at 03:19:56PM -0600, Doug Martin wrote: > Scott, > > Thanks for the quick response and suggested solutions. > I will check it out later today or first thing tomorrow, and get back to > you. Sounds good! Scott signature.asc Description: PGP signature -- lyx-devel mailing l

Re: A Small Question

2021-04-11 Thread Doug Martin
Scott, Thanks for the quick response and suggested solutions. I will check it out later today or first thing tomorrow, and get back to you. Doug On Sun, Apr 11, 2021 at 2:55 PM Scott Kostyshak wrote: > On Sun, Apr 11, 2021 at 02:07:51PM -0600, Doug Martin wrote: > > Scott and all, > > > > Here

Re: A Small Question

2021-04-11 Thread Scott Kostyshak
On Sun, Apr 11, 2021 at 02:07:51PM -0600, Doug Martin wrote: > Scott and all, > > Here you go. As you will see, the Table is fine, but we get the "knitr > errors" message: > LaTeX Error: Not in outer par mode. > > Doug > > P.S. We like various capabilities that the kableExtra package provides u

Re: A Small Question

2021-04-11 Thread Doug Martin
Scott and all, Here you go. As you will see, the Table is fine, but we get the "knitr errors" message: LaTeX Error: Not in outer par mode. Doug P.S. We like various capabilities that the kableExtra package provides us with, e.g., in this simple example the add_header_above via kable_styling. Of

Re: A Small Question

2021-04-11 Thread Scott Kostyshak
On Sun, Apr 11, 2021 at 09:12:15AM -0600, Doug Martin wrote: > Tom Philips and I create tables in LYX using the knitr package function > kable (with the package kableExtra) in the > following way: > > > >1. Insert > Float > Table >2. In the float, enter a name and header for the table in

A Small Question

2021-04-11 Thread Doug Martin
Tom Philips and I create tables in LYX using the knitr package function kable (with the package kableExtra) in the following way: 1. Insert > Float > Table 2. In the float, enter a name and header for the table in the space provided 3. Just below the name, *but still inside the float

Re: Question about trac search

2021-01-04 Thread Richard Kimberly Heck
On 1/4/21 4:47 AM, Yu Jin wrote: > Am Mo., 4. Jan. 2021 um 10:39 Uhr schrieb Yu Jin >: > > I am trying to search for bugs in Trac. I have chosen only "new" > status in the filters, but the result also shows fixedinstable, > reopened and even closed bugs in some c

Re: Question about trac search

2021-01-04 Thread Yu Jin
Am Mo., 4. Jan. 2021 um 10:39 Uhr schrieb Yu Jin : > I am trying to search for bugs in Trac. I have chosen only "new" status in > the filters, but the result also shows fixedinstable, reopened and even > closed bugs in some cases. See attached. > What am I doing wrong? > Ah found, it was (status A

Question about trac search

2021-01-04 Thread Yu Jin
I am trying to search for bugs in Trac. I have chosen only "new" status in the filters, but the result also shows fixedinstable, reopened and even closed bugs in some cases. See attached. What am I doing wrong? -- Eugene -- lyx-devel mailing list lyx-devel@lists.lyx.org http://lists.lyx.org/m

Re: Automake question

2020-09-27 Thread Kornel Benko
Am Sun, 27 Sep 2020 16:35:27 +0200 schrieb Pavel Sanda : > On Sun, Sep 27, 2020 at 03:46:48PM +0200, Kornel Benko wrote: > > > > > On Sat, Sep 26, 2020 at 10:44:59PM +0200, Kornel Benko wrote: > > > > > > And before you ask, here the full sequence > > > > > > $ cd source > > > > > > $

Re: Automake question

2020-09-27 Thread Pavel Sanda
On Sun, Sep 27, 2020 at 03:46:48PM +0200, Kornel Benko wrote: > > > > On Sat, Sep 26, 2020 at 10:44:59PM +0200, Kornel Benko wrote: > > > > > And before you ask, here the full sequence > > > > > $ cd source > > > > > $ ./autogen.sh > > > > > > > > These two commands below look st

Re: Automake question

2020-09-27 Thread Kornel Benko
Am Sun, 27 Sep 2020 15:35:48 +0200 schrieb Pavel Sanda : > On Sun, Sep 27, 2020 at 01:53:15PM +0200, Kornel Benko wrote: > > Am Sun, 27 Sep 2020 13:44:24 +0200 > > schrieb Pavel Sanda : > > > > > On Sat, Sep 26, 2020 at 10:44:59PM +0200, Kornel Benko wrote: > > > > And before you ask, here th

Re: Automake question

2020-09-27 Thread Pavel Sanda
On Sun, Sep 27, 2020 at 01:53:15PM +0200, Kornel Benko wrote: > Am Sun, 27 Sep 2020 13:44:24 +0200 > schrieb Pavel Sanda : > > > On Sat, Sep 26, 2020 at 10:44:59PM +0200, Kornel Benko wrote: > > > And before you ask, here the full sequence > > > $ cd source > > > $ ./autogen.sh > > > > Thes

Re: Automake question

2020-09-27 Thread Kornel Benko
Am Sun, 27 Sep 2020 13:44:24 +0200 schrieb Pavel Sanda : > On Sat, Sep 26, 2020 at 10:44:59PM +0200, Kornel Benko wrote: > > And before you ask, here the full sequence > > $ cd source > > $ ./autogen.sh > > These two commands below look strange to me in the sense that I would not > exp

Re: Automake question

2020-09-27 Thread Pavel Sanda
On Sat, Sep 26, 2020 at 10:44:59PM +0200, Kornel Benko wrote: > And before you ask, here the full sequence > $ cd source > $ ./autogen.sh These two commands below look strange to me in the sense that I would not expect autogen to update anything in build directory > $ cd build

Re: Automake question

2020-09-26 Thread Kornel Benko
Am Sat, 26 Sep 2020 21:14:03 +0200 schrieb Jean-Marc Lasgouttes : > Le 26 septembre 2020 19:20:48 GMT+02:00, Kornel Benko a > écrit : > >Hi all, > >suppose I want to add a script to lib/scripts. What is needed to make > >it installed > >in automake environment? > > > >Apparently to use > >

Re: Automake question

2020-09-26 Thread Jean-Marc Lasgouttes
Le 26 septembre 2020 19:20:48 GMT+02:00, Kornel Benko a écrit : >Hi all, >suppose I want to add a script to lib/scripts. What is needed to make >it installed >in automake environment? > >Apparently to use >$ git add lib/scripts/abcd >and add 'abcd' to the list dist_scripts_DATA in lib/Make

Automake question

2020-09-26 Thread Kornel Benko
Hi all, suppose I want to add a script to lib/scripts. What is needed to make it installed in automake environment? Apparently to use $ git add lib/scripts/abcd and add 'abcd' to the list dist_scripts_DATA in lib/Makefile.am is not sufficient. Kornel pgp034GlkY89p.pgp Descripti

Re: autonests question

2020-06-25 Thread Scott Kostyshak
On Thu, Jun 25, 2020 at 10:38:25AM +0200, Jürgen Spitzmüller wrote: > Am Donnerstag, den 25.06.2020, 10:09 +0200 schrieb Jürgen Spitzmüller: > > It is expected in the sense of a feature limitation. When checking > > for > > autonest, we only check the layout of the previous paragraph. We do > > not

Re: autonests question

2020-06-25 Thread Jürgen Spitzmüller
Am Donnerstag, den 25.06.2020, 10:09 +0200 schrieb Jürgen Spitzmüller: > It is expected in the sense of a feature limitation. When checking > for > autonest, we only check the layout of the previous paragraph. We do > not > consider yet nested paragraphs and go further back to their parents. > > I

Re: autonests question

2020-06-25 Thread Jürgen Spitzmüller
Am Mittwoch, den 24.06.2020, 15:24 -0400 schrieb Scott Kostyshak: > I like the autonests layout feature, but don't know much about it. Is > the following expected? > > 1. Open lib/examples/Presentations/Beamer.lyx. > 2. Navigate to the frame "Purpose of this presentation". > 3. Put the cursor befo

autonests question

2020-06-24 Thread Scott Kostyshak
I like the autonests layout feature, but don't know much about it. Is the following expected? 1. Open lib/examples/Presentations/Beamer.lyx. 2. Navigate to the frame "Purpose of this presentation". 3. Put the cursor before "For". 4. Press . 5. Change the layout to one that Frame autonests, such a

Re: Question on undo: Remove a finishUndo() after a recordUndo() ?

2020-02-02 Thread Scott Kostyshak
On Sat, Feb 01, 2020 at 08:41:12PM +0100, Jean-Marc Lasgouttes wrote: > Le 01/02/2020 à 18:39, Scott Kostyshak a écrit : > > What would the consequences be of the attached patch? > > > > From what I understand, finishUndo() is meant for when there have been > > som undos of type INSERT or DELETE

Re: Question on undo: Remove a finishUndo() after a recordUndo() ?

2020-02-01 Thread Jean-Marc Lasgouttes
Le 01/02/2020 à 18:39, Scott Kostyshak a écrit : What would the consequences be of the attached patch? From what I understand, finishUndo() is meant for when there have been som undos of type INSERT or DELETE recorded, but PARAGRAPH_MOVE_DOWN itself does not record any INSERTs or DELETEs. What

Question on undo: Remove a finishUndo() after a recordUndo() ?

2020-02-01 Thread Scott Kostyshak
What would the consequences be of the attached patch? From what I understand, finishUndo() is meant for when there have been som undos of type INSERT or DELETE recorded, but PARAGRAPH_MOVE_DOWN itself does not record any INSERTs or DELETEs. What would happen if the finishUndo() is removed? Is the

Re: One reaction and one question regarding 2.3.2

2018-12-22 Thread Daniel
On 21/12/2018 17:13, Jürgen Spitzmüller wrote: Am Freitag, den 21.12.2018, 15:56 +0100 schrieb Kornel Benko: So, if I want to change some words to say 'emph+bold', I have to set it again and again for each word? No, you can use the 'Apply last text properties' button once you have applied it f

Re: One reaction and one question regarding 2.3.2

2018-12-21 Thread Richard Kimberly Heck
On 12/21/18 8:59 AM, Enrico Forestieri wrote: > On Fri, Dec 21, 2018 at 12:33:31PM +0100, Jürgen Spitzmüller wrote: > >> Riki, let me know if I should backport this. > I think this has to be backported because it re-allows a workflow which > seems to be very common. Go ahead, then. Riki

Re: One reaction and one question regarding 2.3.2

2018-12-21 Thread Kornel Benko
Am Freitag, 21. Dezember 2018 17:13:15 CET schrieb Jürgen Spitzmüller : > Am Freitag, den 21.12.2018, 15:56 +0100 schrieb Kornel Benko: > > So, if I want to change some words to say 'emph+bold', I have to set > > it again and again for each word? > > No, you can use the 'Apply last text propertie

Re: One reaction and one question regarding 2.3.2

2018-12-21 Thread Jürgen Spitzmüller
Am Freitag, den 21.12.2018, 15:56 +0100 schrieb Kornel Benko: > So, if I want to change some words to say 'emph+bold', I have to set > it again and again for each word? No, you can use the 'Apply last text properties' button once you have applied it from the dialog. > > > Also the use of 'Apply l

Re: One reaction and one question regarding 2.3.2

2018-12-21 Thread Kornel Benko
Am Freitag, 21. Dezember 2018 15:29:25 CET schrieb Jürgen Spitzmüller : > Am Freitag, den 21.12.2018, 15:20 +0100 schrieb Kornel Benko: > > Selecting to 'Reset All To No Change' does as expected, but the first > > use of 'Apply' > > resets all again. Selecting next word while the dialog is open re

Re: One reaction and one question regarding 2.3.2

2018-12-21 Thread Jürgen Spitzmüller
Am Freitag, den 21.12.2018, 15:20 +0100 schrieb Kornel Benko: > Selecting to 'Reset All To No Change' does as expected, but the first > use of 'Apply' > resets all again. Selecting next word while the dialog is open resets > too :( Sure, this is how the font dialog works now. You want the old dial

Re: One reaction and one question regarding 2.3.2

2018-12-21 Thread Kornel Benko
Am Freitag, 21. Dezember 2018 13:38:02 CET schrieb Jürgen Spitzmüller : > Am Freitag, den 21.12.2018, 12:52 +0100 schrieb Kornel Benko: > > In file included from /usr2/src/lyx/lyx- > > git/src/frontends/qt4/GuiCharacter.cpp:16:0: > > /usr2/src/lyx/lyx-git/src/frontends/qt4/GuiCharacter.h:115:32: e

Re: One reaction and one question regarding 2.3.2

2018-12-21 Thread Enrico Forestieri
On Fri, Dec 21, 2018 at 12:33:31PM +0100, Jürgen Spitzmüller wrote: > Am Donnerstag, den 20.12.2018, 17:31 +0100 schrieb Enrico Forestieri: > > Maybe. However, I wonder how many read it (want it) in the same way. > > Be it as it may, both is now possible in master. Ok, thanks Jürgen. > Riki, let

Re: One reaction and one question regarding 2.3.2

2018-12-21 Thread Jürgen Spitzmüller
Am Freitag, den 21.12.2018, 12:52 +0100 schrieb Kornel Benko: > In file included from /usr2/src/lyx/lyx- > git/src/frontends/qt4/GuiCharacter.cpp:16:0: > /usr2/src/lyx/lyx-git/src/frontends/qt4/GuiCharacter.h:115:32: error: > no matching function for call to ‘QAction::QAction()’ > QAction * reset

Re: One reaction and one question regarding 2.3.2

2018-12-21 Thread Kornel Benko
Am Freitag, 21. Dezember 2018 12:33:31 CET schrieb Jürgen Spitzmüller : > Am Donnerstag, den 20.12.2018, 17:31 +0100 schrieb Enrico Forestieri: > > Maybe. However, I wonder how many read it (want it) in the same way. > > Be it as it may, both is now possible in master. > > Riki, let me know if I

Re: One reaction and one question regarding 2.3.2

2018-12-21 Thread Jürgen Spitzmüller
Am Donnerstag, den 20.12.2018, 17:31 +0100 schrieb Enrico Forestieri: > Maybe. However, I wonder how many read it (want it) in the same way. Be it as it may, both is now possible in master. Riki, let me know if I should backport this. Jürgen signature.asc Description: This is a digitally signe

Re: One reaction and one question regarding 2.3.2

2018-12-21 Thread Kornel Benko
Am Donnerstag, 20. Dezember 2018 17:53:42 CET schrieb Enrico Forestieri : > On Thu, Dec 20, 2018 at 05:06:47PM +0100, Jürgen Spitzmüller wrote: > > Am Donnerstag, den 20.12.2018, 16:39 +0100 schrieb Enrico Forestieri: > > > Indeed, when you change a > > > property with the Text Style dialog and wa

Re: One reaction and one question regarding 2.3.2

2018-12-20 Thread Enrico Forestieri
On Thu, Dec 20, 2018 at 05:06:47PM +0100, Jürgen Spitzmüller wrote: > Am Donnerstag, den 20.12.2018, 16:39 +0100 schrieb Enrico Forestieri: > > Indeed, when you change a > > property with the Text Style dialog and want to apply this only > > change > > to different selections of text, you have to t

Re: One reaction and one question regarding 2.3.2

2018-12-20 Thread Enrico Forestieri
On Thu, Dec 20, 2018 at 05:23:59PM +0100, Jürgen Spitzmüller wrote: > Am Donnerstag, den 20.12.2018, 17:19 +0100 schrieb Enrico Forestieri: > > This is not what the reporter of #11415 meant. > > ... in your reading. Maybe. However, I wonder how many read it (want it) in the same way. -- Enrico

Re: One reaction and one question regarding 2.3.2

2018-12-20 Thread Jürgen Spitzmüller
Am Donnerstag, den 20.12.2018, 17:19 +0100 schrieb Enrico Forestieri: > This is not what the reporter of #11415 meant. ... in your reading. Jürgen signature.asc Description: This is a digitally signed message part

Re: One reaction and one question regarding 2.3.2

2018-12-20 Thread Enrico Forestieri
On Thu, Dec 20, 2018 at 04:59:54PM +0100, Jürgen Spitzmüller wrote: > Am Donnerstag, den 20.12.2018, 16:39 +0100 schrieb Enrico Forestieri: > > I would say that a button "Restore No Change" is more useful than > > "Restore Defaults". > > I added this per user request: > https://www.lyx.org/trac/t

Re: One reaction and one question regarding 2.3.2

2018-12-20 Thread Jürgen Spitzmüller
Am Donnerstag, den 20.12.2018, 16:39 +0100 schrieb Enrico Forestieri: > Indeed, when you change a > property with the Text Style dialog and want to apply this only > change > to different selections of text, you have to take care to change to > "No Change" all other properties. This is a big nuisan

Re: One reaction and one question regarding 2.3.2

2018-12-20 Thread Jürgen Spitzmüller
Am Donnerstag, den 20.12.2018, 16:39 +0100 schrieb Enrico Forestieri: > I would say that a button "Restore No Change" is more useful than > "Restore Defaults". I added this per user request: https://www.lyx.org/trac/ticket/11415 Jürgen signature.asc Description: This is a digitally signed messa

Re: One reaction and one question regarding 2.3.2

2018-12-20 Thread Enrico Forestieri
On Thu, Dec 20, 2018 at 04:18:56PM +0100, Jürgen Spitzmüller wrote: > Am Donnerstag, den 20.12.2018, 09:45 -0500 schrieb Paul A. Rubin: > > If "defaults" means document-wide > > settings, I'm not sure how that would differ from the "Reset" button > > action. > > Reset resets to the settings at cu

Re: One reaction and one question regarding 2.3.2

2018-12-20 Thread Jürgen Spitzmüller
Am Donnerstag, den 20.12.2018, 09:45 -0500 schrieb Paul A. Rubin: > If "defaults" means document-wide > settings, I'm not sure how that would differ from the "Reset" button > action. Reset resets to the settings at cursor positions (the initial settings when you opened the dialog). As to your pr

Re: One reaction and one question regarding 2.3.2

2018-12-20 Thread Paul A. Rubin
On 12/20/18 8:18 AM, Daniel wrote: On 20/12/2018 14:06, Jürgen Spitzmüller wrote: Am Mittwoch, den 19.12.2018, 19:58 -0500 schrieb Paul A. Rubin: Assuming this is the new normal for the style dialog, any chance there could at least be a button at the bottom that would clear all settings? In t

Re: One reaction and one question regarding 2.3.2

2018-12-20 Thread Daniel
On 20/12/2018 14:06, Jürgen Spitzmüller wrote: Am Mittwoch, den 19.12.2018, 19:58 -0500 schrieb Paul A. Rubin: Assuming this is the new normal for the style dialog, any chance there could at least be a button at the bottom that would clear all settings? In the next release, the dialog will hav

Re: One reaction and one question regarding 2.3.2

2018-12-20 Thread Jürgen Spitzmüller
Am Mittwoch, den 19.12.2018, 19:58 -0500 schrieb Paul A. Rubin: > Assuming this is the new normal for the style dialog, any chance > there could at least be a button at the bottom that would clear all > settings? In the next release, the dialog will have a "Restore Defaults" button that will set a

Re: One reaction and one question regarding 2.3.2

2018-12-19 Thread Daniel
On 20/12/2018 01:58, Paul A. Rubin wrote: Hi all, I just installed 2.3.2 and I have a question regarding change tracking. I'm not sure if this is a change in 2.3.2, or if it's always been this way and I just never tripped over it. If I have change tracking turned on and I change t

One reaction and one question regarding 2.3.2

2018-12-19 Thread Paul A. Rubin
Hi all, I just installed 2.3.2 and I have a question regarding change tracking. I'm not sure if this is a change in 2.3.2, or if it's always been this way and I just never tripped over it. If I have change tracking turned on and I change the font of a selection (for instance, by cl

Re: Debugging question

2018-11-06 Thread Kornel Benko
In findadv deselect 'igmore format' > > > use regex '.+' and set the lang of regex to English > > > > > > Now, sometimes, not the whole English part is found. > > > The following search will find the remaining (or again only a part of the

Re: Debugging question

2018-11-05 Thread Kornel Benko
; > > > Now, sometimes, not the whole English part is found. > > The following search will find the remaining (or again only a part of the > > remaining) and so on. > > > > The question is: What the hell is going on here? The code is the same, > > only the d

Re: Debugging question

2018-11-05 Thread Richard Kimberly Heck
xt in English and some in another > languages. > > In findadv deselect 'igmore format' > use regex '.+' and set the lang of regex to English > > Now, sometimes, not the whole English part is found. > The following search will find the remaining (or again onl

Debugging question

2018-11-04 Thread Kornel Benko
ct 'igmore format' use regex '.+' and set the lang of regex to English Now, sometimes, not the whole English part is found. The following search will find the remaining (or again only a part of the remaining) and so on. The question is: What the hell is going on here? The co

Re: Question on osuosl.org hosting service(s)

2018-09-06 Thread Richard Kimberly Heck
Thanks, Pavel, to taking this responsiblity. On 09/06/2018 10:37 AM, Pavel Sanda wrote: > Hi OSU Open Source Lab, > > I'm one of developers of LyX, open source document processor (www.lyx.org). > Our services (web/bug tracker system/git server/wiki site) used to be kindly > hosted for the past d

Re: Build question regarding --enable-cxx11 configure option

2018-02-26 Thread Jean-Marc Lasgouttes
Le 25/02/2018 à 20:40, Stephan Witt a écrit : Am 25.02.2018 um 19:57 schrieb José Abílio Matos : On Sunday, 25 February 2018 16.58.36 WET Stephan Witt wrote: Today I saw a warning with lyx-2.3.0 as follows: configure: WARNING: unrecognized options: --enable-cxx11 Hi Stephan, isn't

Re: Build question regarding --enable-cxx11 configure option

2018-02-25 Thread Stephan Witt
Am 25.02.2018 um 19:57 schrieb José Abílio Matos : > > On Sunday, 25 February 2018 16.58.36 WET Stephan Witt wrote: > > Today I saw a warning with lyx-2.3.0 as follows: > > configure: WARNING: unrecognized options: --enable-cxx11 > > Hi Stephan, > isn't C++ 11 our basic requirement? > >

Re: Build question regarding --enable-cxx11 configure option

2018-02-25 Thread José Abílio Matos
On Sunday, 25 February 2018 16.58.36 WET Stephan Witt wrote: > Today I saw a warning with lyx-2.3.0 as follows: > configure: WARNING: unrecognized options: --enable-cxx11 Hi Stephan, isn't C++ 11 our basic requirement? Or said the other way around there is code that does not work

Re: Build question regarding --enable-cxx11 configure option

2018-02-25 Thread Stephan Witt
Am 25.02.2018 um 19:35 schrieb Kornel Benko : > > Am Sonntag, 25. Februar 2018 17:58:36 CET schrieb Stephan Witt > : >> Hi, >> >> usually I’m using the --enable-cxx11 configure option to build LyX binaries >> on Mac with autotools. >> >> Today I saw a warning with lyx-2.3.0 as follows: >> confi

Re: Build question regarding --enable-cxx11 configure option

2018-02-25 Thread Kornel Benko
Am Sonntag, 25. Februar 2018 17:58:36 CET schrieb Stephan Witt : > Hi, > > usually I’m using the --enable-cxx11 configure option to build LyX binaries > on Mac with autotools. > > Today I saw a warning with lyx-2.3.0 as follows: > configure: WARNING: unrecognized options: --enable-cxx11 If I un

Build question regarding --enable-cxx11 configure option

2018-02-25 Thread Stephan Witt
Hi, usually I’m using the --enable-cxx11 configure option to build LyX binaries on Mac with autotools. Today I saw a warning with lyx-2.3.0 as follows: configure: WARNING: unrecognized options: --enable-cxx11 So I tried to build w/o this option. But this leads to a configure error: configure:1

Re: Question for Guillaume about b30f8d3c and GuiFontMetrics::countExpanders

2017-08-21 Thread Jean-Marc Lasgouttes
Le 27/07/2017 à 16:11, Guillaume MM a écrit : The reasoning was that how many expanders there are in a string is toolkit-specific. This implementation was by testing and reading the docs and source code of Qt, and does not correspond to my knowledge to any Unicode standard (say). So, using the fr

Re: Question for Guillaume about b30f8d3c and GuiFontMetrics::countExpanders

2017-07-27 Thread Guillaume MM
nders this looks like an overzealous application of the frontend separation I will agree. But if the question was just out of curiosity and does not limit you then I would say leave it as is. Any clarification on Qt in support/ vs. Qt in frontends/ is welcome. Guillaume

Question for Guillaume about b30f8d3c and GuiFontMetrics::countExpanders

2017-07-25 Thread Jean-Marc Lasgouttes
Hi Guillaume, The commit log for b30f8d3c says: " CountExpanders() is moved to FontMetrics to fix a discrepancy with the duplicate implementation from 598f7e4a." I interpret that to mean that countExpanders() should be available in GuiPainter too, right? OTOH, countExpanders is basically

Re: row-breaking question

2017-01-26 Thread Richard Heck
On 01/26/2017 08:20 AM, Jean-Marc Lasgouttes wrote: > Le 26/01/2017 à 10:54, Jean-Marc Lasgouttes a écrit : >> I am not sure. The cause for 3 is that the code fails to account >> precisely for the available space on next row (because when it evaluates >> whether breaking would be a good idea. I jus

Re: row-breaking question

2017-01-26 Thread Jean-Marc Lasgouttes
Le 26/01/2017 à 10:54, Jean-Marc Lasgouttes a écrit : I am not sure. The cause for 3 is that the code fails to account precisely for the available space on next row (because when it evaluates whether breaking would be a good idea. I just have to find the time to write a patch. I pushed a fix at

Re: row-breaking question

2017-01-26 Thread Jean-Marc Lasgouttes
cisely for the available space on next row (because when it evaluates whether breaking would be a good idea. I just have to find the time to write a patch. Concerning my other remark, I do not think this will be fixed by this improvement. This is a separate question, I believe. JMarc

Re: row-breaking question

2017-01-25 Thread Guillaume Munch
Le 21/01/2017 à 20:22, Jean-Marc Lasgouttes a écrit : Le 21/01/2017 à 19:33, Scott Kostyshak a écrit : The attached sequence of screenshots show the phases of row-breaking that happens as I keep typing " abc" in the footnote. The word "OLS" seems to jump around a lot and I find that (mildly) ann

  1   2   3   4   5   6   7   8   9   10   >