mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Do not crop wide characters in Symbols dialog (bug #5707).
This commit is contained in:
parent
60ec70a6f5
commit
6642547384
@ -275,11 +275,12 @@ GuiSymbols::GuiSymbols(GuiView & lv)
|
||||
setFocusProxy(symbolsLW);
|
||||
|
||||
symbolsLW->setViewMode(QListView::IconMode);
|
||||
symbolsLW->setUniformItemSizes(true);
|
||||
// increase the display size of the symbols a bit
|
||||
QFont font= symbolsLW->font();
|
||||
int size = font.pointSize() + 3;
|
||||
font.setPointSize(size);
|
||||
QFontMetrics fm(font);
|
||||
symbolsLW->setGridSize(QSize(fm.maxWidth() + 2, fm.height() + 2));
|
||||
symbolsLW->setFont(font);
|
||||
symbolsLW->setModel(model_);
|
||||
}
|
||||
|
@ -116,6 +116,8 @@ What's new
|
||||
- Show the output of configure.py while the LaTeX packages are being checked
|
||||
rather than all at once at the end of the check (bug 8477).
|
||||
|
||||
- Do not crop wide characters in Symbols dialog (bug 5707).
|
||||
|
||||
|
||||
* DOCUMENTATION AND LOCALIZATION
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user