mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
Slight rearrangement
This commit is contained in:
parent
62483d102d
commit
b828da02f8
@ -618,19 +618,19 @@ void LayoutBox::updateContents(bool reset)
|
||||
|
||||
void LayoutBox::selected(int index)
|
||||
{
|
||||
// get selection
|
||||
QModelIndex mindex = d->filterModel_->mapToSource(
|
||||
d->filterModel_->index(index, 1));
|
||||
docstring layoutName = qstring_to_ucs4(
|
||||
d->model_->itemFromIndex(mindex)->text());
|
||||
d->owner_.setFocus();
|
||||
|
||||
if (!d->text_class_) {
|
||||
updateContents(false);
|
||||
d->resetFilter();
|
||||
return;
|
||||
}
|
||||
|
||||
// get selection
|
||||
QModelIndex mindex = d->filterModel_->mapToSource(
|
||||
d->filterModel_->index(index, 1));
|
||||
docstring const layoutName = qstring_to_ucs4(
|
||||
d->model_->itemFromIndex(mindex)->text());
|
||||
|
||||
// find corresponding text class
|
||||
if (d->text_class_->hasLayout(layoutName)) {
|
||||
FuncRequest const func(LFUN_LAYOUT, layoutName, FuncRequest::TOOLBAR);
|
||||
@ -639,7 +639,7 @@ void LayoutBox::selected(int index)
|
||||
d->resetFilter();
|
||||
return;
|
||||
}
|
||||
LYXERR0("ERROR (layoutSelected): layout " << layoutName << " not found!");
|
||||
LYXERR0("ERROR (LayoutBox::Selected): layout " << layoutName << " not found!");
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user