mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-13 09:15:50 +00:00
fix from herbert for % height
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH-1_2_X@4641 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
9a39e0d33f
commit
1cb11db386
@ -1,3 +1,8 @@
|
||||
2002-07-11 Herbert Voss <voss@perce.de>
|
||||
|
||||
* FormGraphics.C (input): test also the height for %-value, when
|
||||
importing the latex-value into the lyx-view
|
||||
|
||||
2002-07-10 Andrew Zabolotny <zap@cobra.ru>
|
||||
|
||||
* combox.C (peek_event):
|
||||
|
@ -553,7 +553,8 @@ ButtonPolicy::SMInput FormGraphics::input(FL_OBJECT * ob, long)
|
||||
setEnabled(lyxview_->check_lyxaspectratio, 0);
|
||||
setEnabled(lyxview_->input_lyxscale, 1);
|
||||
} else if (ob == lyxview_->button_latex_values) {
|
||||
if (contains(fl_get_choice_text(size_->choice_width),'%'))
|
||||
if (contains(fl_get_choice_text(size_->choice_width),'%')
|
||||
|| contains(fl_get_choice_text(size_->choice_height),'%'))
|
||||
Alert::alert(_("Warning!"),
|
||||
_("No %-units are allowed here."),
|
||||
_("Cannot use the values from LaTeX size!"));
|
||||
|
@ -28,7 +28,7 @@ What's new
|
||||
|
||||
- better support for entering cyrillic and greek alphabets
|
||||
|
||||
- support selection via the numpad direction keys
|
||||
- support the numpad direction keys as equivalent to normal cursor keys
|
||||
|
||||
- update template for IEEEtran; update hebrew article class
|
||||
|
||||
@ -117,6 +117,8 @@ What's new
|
||||
|
||||
- fix command line crash and give useful exit status on some errors
|
||||
|
||||
- fix the detection of cygwin in Reconfigure when the shell is not bash
|
||||
|
||||
- fix latex import when using --with-version-suffix configure flag
|
||||
|
||||
- make latex import script (reLyX) honor the LYX_DIR_12x envirnment
|
||||
|
Loading…
Reference in New Issue
Block a user