mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
preview_shape_factor is a float.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4584 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
b315c46a63
commit
0e3d3dc850
@ -1,3 +1,7 @@
|
||||
2002-07-10 Angus Leeming <leeming@lyx.org>
|
||||
|
||||
* lyxrc.[Ch]: preview_scale_factor should be a float not an int.
|
||||
|
||||
2002-07-09 Angus Leeming <leeming@lyx.org>
|
||||
|
||||
* lyxrc.[Ch]: added preview_hashed_labels and preview_scale_factor.
|
||||
|
@ -960,7 +960,7 @@ int LyXRC::read(string const & filename)
|
||||
|
||||
case RC_PREVIEW_SCALE_FACTOR:
|
||||
if (lexrc.next())
|
||||
preview_hashed_labels = lexrc.getInteger();
|
||||
preview_scale_factor = lexrc.getFloat();
|
||||
break;
|
||||
|
||||
case RC_LAST: break; // this is just a dummy
|
||||
|
@ -355,7 +355,7 @@ enum LyXRCTags {
|
||||
///
|
||||
bool preview_hashed_labels;
|
||||
///
|
||||
int preview_scale_factor;
|
||||
float preview_scale_factor;
|
||||
|
||||
private:
|
||||
/// Is a bind file already (or currently) read?
|
||||
|
Loading…
Reference in New Issue
Block a user