mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Fix typo, and also check if string is null.
This commit is contained in:
parent
68b60ec529
commit
066cc0c9c0
@ -118,7 +118,8 @@ void GuiRef::gotoClicked()
|
||||
// to which we are going (or from which we are returning) is
|
||||
// restored in the dialog. It's a bit of a hack, but it works,
|
||||
// and no-one seems to have any better idea.
|
||||
bool const toggled = last_reference_.empty();
|
||||
bool const toggled =
|
||||
last_reference_.isEmpty() || last_reference_.isNull();
|
||||
if (toggled)
|
||||
last_reference_ = referenceED->text();
|
||||
gotoRef();
|
||||
|
Loading…
Reference in New Issue
Block a user