mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-18 21:45:24 +00:00
fix off-by-one-error with paperpackage selection
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@8823 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
3fa836599c
commit
f5781acad0
@ -1,3 +1,8 @@
|
||||
2004-06-27 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
|
||||
|
||||
* tex-strings.C: add "none" to string_paperpackages[], fixes
|
||||
off-by-one-error in the paperpackage selection.
|
||||
|
||||
2004-04-29 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
|
||||
|
||||
* text2.C (setCounter):
|
||||
|
@ -34,8 +34,8 @@ char const * string_papersize[12] = {
|
||||
};
|
||||
|
||||
|
||||
char const * string_paperpackages[4] = {
|
||||
"a4", "a4wide", "widemarginsa4", ""
|
||||
char const * string_paperpackages[5] = {
|
||||
"none", "a4", "a4wide", "widemarginsa4", ""
|
||||
};
|
||||
|
||||
|
||||
|
@ -54,6 +54,9 @@ What's new
|
||||
|
||||
- fix handling of counters in the scrlettr and scrlttr2 classes.
|
||||
|
||||
- fix off-by-one-error which caused LyX to chose the wrong custom margin
|
||||
package.
|
||||
|
||||
* User Interface:
|
||||
|
||||
- use opening quotation marks after an opening square bracket
|
||||
|
Loading…
x
Reference in New Issue
Block a user