mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-23 10:18:50 +00:00
* GuiView.cpp (reloadBuffer):
- make sure a child is re-allocated to its master after reloading (bug 6233). git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@31510 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
e5533c552e
commit
42b2fa2acf
@ -2245,12 +2245,18 @@ void GuiView::reloadBuffer()
|
||||
{
|
||||
Buffer * buf = &documentBufferView()->buffer();
|
||||
FileName filename = buf->fileName();
|
||||
Buffer const * master = buf->masterBuffer();
|
||||
bool const is_child = master != buf;
|
||||
// The user has already confirmed that the changes, if any, should
|
||||
// be discarded. So we just release the Buffer and don't call closeBuffer();
|
||||
theBufferList().release(buf);
|
||||
buf = loadDocument(filename);
|
||||
docstring const disp_fn = makeDisplayPath(filename.absFilename());
|
||||
docstring str;
|
||||
// re-allocate master if necessary
|
||||
if (is_child && theBufferList().isLoaded(master)
|
||||
&& buf->masterBuffer() != master)
|
||||
buf->setParent(master);
|
||||
if (buf) {
|
||||
buf->updateLabels();
|
||||
setBuffer(buf);
|
||||
|
Loading…
Reference in New Issue
Block a user