mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-23 10:18:50 +00:00
* even when sorted alphabetically keep the separation of standard and module layouts
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23476 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
1247839690
commit
cafaf075e5
@ -522,8 +522,14 @@ void GuiLayoutBox::addItemSort(docstring const & item, bool sorted)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// find row to insert the item
|
// find row to insert the item, after the separator if it exists
|
||||||
int i = 1; // skip the Standard layout
|
int i = 1; // skip the Standard layout
|
||||||
|
|
||||||
|
QList<QStandardItem *> sep = model_->findItems("--", Qt::MatchStartsWith);
|
||||||
|
if (!sep.isEmpty())
|
||||||
|
i = sep.first()->index().row() + 1;
|
||||||
|
if (i < model_->rowCount()) {
|
||||||
|
// find alphabetic position
|
||||||
QString is = model_->item(i, 0)->text();
|
QString is = model_->item(i, 0)->text();
|
||||||
while (is.compare(titem) < 0) {
|
while (is.compare(titem) < 0) {
|
||||||
// e.g. --Separator--
|
// e.g. --Separator--
|
||||||
@ -534,6 +540,7 @@ void GuiLayoutBox::addItemSort(docstring const & item, bool sorted)
|
|||||||
break;
|
break;
|
||||||
is = model_->item(i, 0)->text();
|
is = model_->item(i, 0)->text();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
model_->insertRow(i, row);
|
model_->insertRow(i, row);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user