bug 920 "a stupid bug"

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@6250 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
John Levon 2003-02-25 13:42:49 +00:00
parent c7e842a9df
commit f8c2fc4851
4 changed files with 14 additions and 15 deletions

View File

@ -1,3 +1,8 @@
2003-02-25 John Levon <levon@movementarian.org>
* insetgraphicsParams.h:
* insetgraphics.C: fix bug #920 (don't load NoDisplay graphics)
2003-02-14 Jean-Marc Lasgouttes <lasgouttes@freesurf.fr>
* insetquotes.C (dispString): remove use of acute accent for "'"

View File

@ -222,7 +222,7 @@ string const InsetGraphics::statusMessage() const
switch (cache_->loader.status()) {
case grfx::WaitingToLoad:
msg = _("Waiting for draw request to start loading...");
msg = _("Not shown.");
break;
case grfx::Loading:
msg = _("Loading...");
@ -347,7 +347,10 @@ void InsetGraphics::draw(BufferView * bv, LyXFont const & font,
int old_x = int(x);
x += lwidth;
if (cache_->loader.status() == grfx::WaitingToLoad)
grfx::Params const & gparams = params().as_grfxParams();
if (gparams.display != grfx::NoDisplay
&& cache_->loader.status() == grfx::WaitingToLoad)
cache_->loader.startLoading(*this, *bv);
if (!cache_->loader.monitoring())

View File

@ -79,7 +79,7 @@ struct InsetGraphicsParams
// Only a subset of InsetGraphicsParams is needed for display purposes.
// This function also interrogates lyxrc to ascertain whether
// to display or not.
grfx::Params as_grfxParams(string const & filepath) const;
grfx::Params as_grfxParams(string const & filepath = string()) const;
private:
/// Initialize the object to a default status.

View File

@ -43,6 +43,9 @@ What's new
- fix mathed bug where curly brackets in, e.g. {a^b}^c, would get lost
and cause TeX errors
- graphics that have been set to not display in LyX are no longer
converted [bug #920]
- delete lyxserver pipes on exit [bug #865, Qt only]
- fix bug where "lyx -e" would refuse to work [bug #788, Qt only]
@ -89,18 +92,6 @@ What's new
- revert is now disabled for an unchanged or unsaved document [bug #783]
- The spell-checking system has been over-hauled, including the following
changes :
o start spell-checking immediately on pressing F7
o xform's broken start/stop button removed
o better spell progress feedback
o long hang on ispell error changed
o infinite hang on ispell error fixed
o reports ispell errors back to the user
o the personal dictionaries are always correctly written out
o "Accept" button became "Ignore All" for clarity
- fix compilation on OpenBSD
- mention in INSTALL file that the qt frontend is selected using