>>>>> "John" == John Levon <[EMAIL PROTECTED]> writes:
John> In
John>
https://sourceforge.net/tracker/index.php?func=detail&aid=233236&group_id=15212&atid=115212
John> Michael points out that the size is toggled with default despite
John> the claims of the dialog.
John> Who is wrong, the dialog or the behaviour, or something else ?
Looking at the code in lyxfont.C(update), I would say this is intentional:
if (newfont.size() != IGNORE_SIZE) {
if (newfont.size() == INCREASE_SIZE)
incSize();
else if (newfont.size() == DECREASE_SIZE)
decSize();
else if (newfont.size() == size() && toggleall)
setSize(INHERIT_SIZE); // toggle 'back'
else
setSize(newfont.size());
}
Now, we can argue whether this is a good thing or not. Either the
popup or the code have to be fixed. Do people who use this feature
often have an idea on it? Michael seems to think this does not make
sense.
I am not sure myself. The easiest solution would certainly be to fix
the font code :)
JMarc