mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 21:21:32 +00:00
return early.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@30936 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
fe1e5203c0
commit
c49cbaa724
@ -1931,10 +1931,12 @@ docstring Cursor::selectionAsString(bool with_label) const
|
||||
if (!selection())
|
||||
return docstring();
|
||||
|
||||
if (inMathed())
|
||||
return cap::grabSelection(*this);
|
||||
|
||||
int const label = with_label
|
||||
? AS_STR_LABEL | AS_STR_INSETS : AS_STR_INSETS;
|
||||
|
||||
if (inTexted()) {
|
||||
idx_type const startidx = selBegin().idx();
|
||||
idx_type const endidx = selEnd().idx();
|
||||
if (startidx != endidx) {
|
||||
@ -1972,12 +1974,6 @@ docstring Cursor::selectionAsString(bool with_label) const
|
||||
return result;
|
||||
}
|
||||
|
||||
if (inMathed())
|
||||
return cap::grabSelection(*this);
|
||||
|
||||
return docstring();
|
||||
}
|
||||
|
||||
|
||||
docstring Cursor::currentState() const
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user