commit d1c11283a3ce32f8df8862aa086db731ba21bd22
Author: Richard Heck <[email protected]>
Date: Tue Jun 14 18:55:18 2016 +0100
Fix bug #10213 as discussed there: We now display the same button
whether the branch is open or closed.
(cherry picked from commit 3573b7270c717b5715f507da47e4ce238dbb987c)
diff --git a/src/insets/InsetBranch.cpp b/src/insets/InsetBranch.cpp
index 7d2d4d5..18db067 100644
--- a/src/insets/InsetBranch.cpp
+++ b/src/insets/InsetBranch.cpp
@@ -82,36 +82,38 @@ docstring InsetBranch::toolTip(BufferView const & bv, int,
int) const
}
-docstring const InsetBranch::buttonLabel(BufferView const & bv) const
+docstring const InsetBranch::buttonLabel(BufferView const &) const
{
static char_type const tick = 0x2714; // ✔ U+2714 HEAVY CHECK MARK
static char_type const cross = 0x2716; // ✖ U+2716 HEAVY MULTIPLICATION
X
- docstring s = _("Branch: ") + params_.branch;
+
Buffer const & realbuffer = *buffer().masterBuffer();
BranchList const & branchlist = realbuffer.params().branchlist();
bool const inmaster = branchlist.find(params_.branch);
bool const inchild =
buffer().params().branchlist().find(params_.branch);
- if (!inmaster && inchild)
- s = _("Branch (child only): ") + params_.branch;
- else if (inmaster && !inchild)
- s = _("Branch (master only): ") + params_.branch;
- else if (!inmaster)
- s = _("Branch (undefined): ") + params_.branch;
- if (!params_.branch.empty()) {
- // FIXME UNICODE
- ColorCode c = lcolor.getFromLyXName(to_utf8(params_.branch));
- if (c == Color_none)
- s = _("Undef: ") + s;
- }
+
bool const master_selected = isBranchSelected();
bool const child_selected = isBranchSelected(true);
+
docstring symb = docstring(1, master_selected ? tick : cross);
if (inchild && master_selected != child_selected)
symb += child_selected ? tick : cross;
- if (decoration() == InsetLayout::CLASSIC)
- return symb + (isOpen(bv) ? s : getNewLabel(s));
- else
- return symb + params_.branch + ": " + getNewLabel(s);
+
+ if (decoration() == InsetLayout::MINIMALISTIC)
+ return symb + params_.branch;
+
+ docstring s;
+ if (inmaster && inchild)
+ s = _("Branch: ");
+ else if (inchild) // && !inmaster
+ s = _("Branch (child only): ");
+ else if (inmaster) // && !inchild
+ s = _("Branch (master only): ");
+ else // !inmaster && !inchild
+ s = _("Branch (undefined): ");
+ s += params_.branch;
+
+ return symb + s;
}
diff --git a/src/insets/InsetBranch.h b/src/insets/InsetBranch.h
index e005bce..b4ecbc8 100644
--- a/src/insets/InsetBranch.h
+++ b/src/insets/InsetBranch.h
@@ -61,7 +61,7 @@ private:
///
void read(Lexer & lex);
///
- docstring const buttonLabel(BufferView const & bv) const;
+ docstring const buttonLabel(BufferView const &) const;
///
ColorCode backgroundColor(PainterInfo const &) const;
///
diff --git a/status.22x b/status.22x
index 5054193..193ebce 100644
--- a/status.22x
+++ b/status.22x
@@ -23,7 +23,10 @@ What's new
* USER INTERFACE
- Syntax highlighting in the preamble and and the source view has been made
- compatible with dark themes (#8325)
+ compatible with dark themes (bug 8325).
+
+- Changed the display of buttons for collapsed branches. We now display the
+ same thing as if the branches were open (bug 10213).
- Added a new module "Title and Preamble Hacks".