Cosmetics per JMarc's suggestions.

This commit is contained in:
Pavel Sanda 2018-02-09 23:46:14 +01:00
parent e836cc0aac
commit 1713b53516

View File

@ -1667,10 +1667,11 @@ void BufferView::dispatch(FuncRequest const & cmd, DispatchResult & dr)
from = cur.selectionBegin();
to = cur.selectionEnd();
string newId = cmd.getArg(0);
string const newId = cmd.getArg(0);
bool fetchId = newId.empty(); //if we wait for groupId from first graphics inset
InsetGraphicsParams grp_par;
if (!fetchId)
InsetGraphics::string2params(graphics::getGroupParams(buffer_, newId), buffer_, grp_par);
if (!from.nextInset()) //move to closest inset
@ -1680,15 +1681,12 @@ void BufferView::dispatch(FuncRequest const & cmd, DispatchResult & dr)
Inset * inset = from.nextInset();
if (!inset)
break;
if (inset->lyxCode() == GRAPHICS_CODE) {
InsetGraphics * ig = inset->asInsetGraphics();
if (!ig)
break;
if (ig) {
InsetGraphicsParams inspar = ig->getParams();
if (fetchId) {
grp_par = inspar;
fetchId = false;
} else {
grp_par.filename = inspar.filename;
ig->setParams(grp_par);