mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
set toc_string_ before the label is being truncated
We do not want truncated items in the outliner.
This commit is contained in:
parent
1de4645286
commit
8aeee03e3a
@ -530,6 +530,7 @@ void InsetRef::updateBuffer(ParIterator const & it, UpdateType, bool const /*del
|
||||
|
||||
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) {
|
||||
@ -539,8 +540,7 @@ void InsetRef::updateBuffer(ParIterator const & it, UpdateType, bool const /*del
|
||||
// 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
|
||||
// fomatted references in the work area.
|
||||
screen_label_ = label;
|
||||
|
Loading…
Reference in New Issue
Block a user