* InsetBranch.cpp:

- fix display of "child only" suffix.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_6_X@30424 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2009-07-09 11:49:16 +00:00
parent 54cd5c9e61
commit cfeab7476f
2 changed files with 4 additions and 1 deletions

View File

@ -95,7 +95,8 @@ docstring const InsetBranch::buttonLabel(BufferView const & bv) const
docstring s = _("Branch: ") + params_.branch;
Buffer const & realbuffer = *buffer().masterBuffer();
BranchList const & branchlist = realbuffer.params().branchlist();
if (!branchlist.find(params_.branch))
if (!branchlist.find(params_.branch)
&& buffer().params().branchlist().find(params_.branch))
s = _("Branch (child only): ") + params_.branch;
if (!params_.branch.empty()) {
// FIXME UNICODE

View File

@ -175,6 +175,8 @@ What's new
- Ensure that pasting into the preamble and the nomenclature dialog's
description widget resets the font formatting (bug 3936).
- Fix wrong labeling as "child only" branch if branches were unknown.
* DOCUMENTATION AND LOCALIZATION