Fix bug with display of reference tooltips.

Previously, the tooltip was assigned during updateBuffer. But then
we could not determine the value for forward references.
This commit is contained in:
Richard Kimberly Heck 2024-08-06 11:31:35 -04:00
parent f2e6a9b4ae
commit b494286a9c

View File

@ -528,20 +528,14 @@ void InsetRef::updateBuffer(ParIterator const & it, UpdateType, bool const /*del
label += getParam("name");
}
bool const use_formatted_ref = buffer().params().use_formatted_ref;
unsigned int const maxLabelChars = 24;
toc_string_ = label;
// Show label in tooltip when formatted references are shown in the work
// area or it is too long
if (use_formatted_ref || label.size() > maxLabelChars) {
// The tooltip will be over-written later, in addToToc, if need be.
tooltip_ = label;
support::truncateWithEllipsis(label, maxLabelChars);
} else {
// put cross-reference value into tooltip
tooltip_ = displayString(ref, cmd);
}
toc_string_ = label;
// Note: This could be changed later, in addToToc, if we are using
unsigned int const maxLabelChars = 24;
support::truncateWithEllipsis(label, maxLabelChars);
// Note: This could also be changed later, in addToToc, if we are using
// fomatted references in the work area.
screen_label_ = label;
// This also can be overwritten in addToToc. (We can't do it now
@ -572,13 +566,16 @@ void InsetRef::addToToc(DocIterator const & cpit, bool output_active,
}
// Code for display of formatted references
bool const use_formatted_ref = buffer().params().use_formatted_ref;
if (use_formatted_ref) {
string const & cmd = getCmdName();
if (cmd != "pageref" && cmd != "vpageref" &&
cmd != "vref" && cmd != "labelonly")
{
bool const use_formatted_ref = buffer().params().use_formatted_ref;
// We will put the value of the reference either into the tooltip
// or the screen label, depending.
docstring & target = use_formatted_ref ? screen_label_ : tooltip_;
docstring const & ref = getParam("reference");
if (cmd != "pageref" && cmd != "vpageref" && cmd != "vref" &&
cmd != "labelonly")
screen_label_ = displayString(ref, cmd);
target = displayString(ref, cmd);
}
return;
}