mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 19:07:45 +00:00
Properly resize columns of child document table widget
This commit is contained in:
parent
b2604aa840
commit
6617d492e8
@ -874,8 +874,14 @@ GuiDocument::GuiDocument(GuiView & lv)
|
||||
masterChildModule->childrenTW->setColumnCount(2);
|
||||
masterChildModule->childrenTW->headerItem()->setText(0, qt_("Child Document"));
|
||||
masterChildModule->childrenTW->headerItem()->setText(1, qt_("Include to Output"));
|
||||
masterChildModule->childrenTW->resizeColumnToContents(1);
|
||||
masterChildModule->childrenTW->resizeColumnToContents(2);
|
||||
|
||||
#if (QT_VERSION > 0x050000)
|
||||
masterChildModule->childrenTW->header()->setSectionResizeMode(0, QHeaderView::ResizeToContents);
|
||||
masterChildModule->childrenTW->header()->setSectionResizeMode(1, QHeaderView::ResizeToContents);
|
||||
#else
|
||||
masterChildModule->childrenTW->header()->setResizeMode(0, QHeaderView::ResizeToContents);
|
||||
masterChildModule->childrenTW->header()->setResizeMode(1, QHeaderView::ResizeToContents);
|
||||
#endif
|
||||
|
||||
|
||||
// Formats
|
||||
|
@ -63,6 +63,8 @@ What's new
|
||||
|
||||
- Consider shorthand in biblatex cite display (bug 11696).
|
||||
|
||||
- Properly resize columns of child document table widget.
|
||||
|
||||
|
||||
* INTERNALS
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user