mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 19:07:45 +00:00
Fix bug #12721.
This commit is contained in:
parent
e41f4d20bc
commit
211554d0df
@ -933,4 +933,10 @@ string InsetExternal::params2string(InsetExternalParams const & params,
|
||||
return data.str();
|
||||
}
|
||||
|
||||
|
||||
docstring InsetExternal::toolTip(BufferView const &, int, int) const
|
||||
{
|
||||
return from_utf8(params().filename.onlyFileName());
|
||||
}
|
||||
|
||||
} // namespace lyx
|
||||
|
@ -177,7 +177,8 @@ private:
|
||||
bool isPreviewed() const;
|
||||
/// Do we have the right renderer (button, graphic or monitored preview)?
|
||||
bool isRendererValid() const;
|
||||
|
||||
///
|
||||
docstring toolTip(BufferView const & bv, int x, int y) const override;
|
||||
/// The current params
|
||||
InsetExternalParams params_;
|
||||
/// The thing that actually draws the image on LyX's screen.
|
||||
|
Loading…
Reference in New Issue
Block a user