mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-11 03:03:06 +00:00
start image loading at metrics time.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25165 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
21f59b816b
commit
e4a5278060
@ -133,8 +133,14 @@ bool readyToDisplay(graphics::Loader const & loader)
|
||||
|
||||
void RenderGraphic::metrics(MetricsInfo & mi, Dimension & dim) const
|
||||
{
|
||||
bool image_ready = displayGraphic(params_) && readyToDisplay(loader_);
|
||||
if (displayGraphic(params_)) {
|
||||
if (loader_.status() == graphics::WaitingToLoad)
|
||||
loader_.startLoading();
|
||||
if (!loader_.monitoring())
|
||||
loader_.startMonitoring();
|
||||
}
|
||||
|
||||
bool image_ready = displayGraphic(params_) && readyToDisplay(loader_);
|
||||
if (image_ready) {
|
||||
dim.wid = loader_.image()->width() + 2 * Inset::TEXT_TO_INSET_OFFSET;
|
||||
dim.asc = loader_.image()->height();
|
||||
@ -172,13 +178,6 @@ void RenderGraphic::metrics(MetricsInfo & mi, Dimension & dim) const
|
||||
|
||||
void RenderGraphic::draw(PainterInfo & pi, int x, int y) const
|
||||
{
|
||||
if (displayGraphic(params_)) {
|
||||
if (loader_.status() == graphics::WaitingToLoad)
|
||||
loader_.startLoading();
|
||||
if (!loader_.monitoring())
|
||||
loader_.startMonitoring();
|
||||
}
|
||||
|
||||
// This will draw the graphics. If the graphics has not been
|
||||
// loaded yet, we draw just a rectangle.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user