If a master is being created at loading the child, un-hide it.

Fixes: #11162
(cherry picked from commit a368439bcc)
This commit is contained in:
Juergen Spitzmueller 2018-06-01 10:17:18 +02:00
parent 5133026b01
commit 4a8b508d40
2 changed files with 6 additions and 0 deletions

View File

@ -1052,6 +1052,10 @@ bool Buffer::readDocument(Lexer & lex)
<< absFileName()
<< ") does not include "
"this document. Ignoring the master assignment.");
// If the master has just been created, un-hide it (#11162)
if (!master->fileName().exists())
lyx::dispatch(FuncRequest(LFUN_BUFFER_SWITCH,
master->absFileName()));
}
}
}

View File

@ -70,6 +70,8 @@ What's new
- GuiCitation: Don't reset filter on show (bug 11291).
- If a master is being created at loading the child, un-hide it (bug 11162).
* DOCUMENTATION AND LOCALIZATION