From: Juergen Spitzmueller Date: Sat, 8 Feb 2020 08:27:21 +0000 (+0100) Subject: Properly resize columns of child document table widget X-Git-Tag: 2.3.5~103 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=6617d492e888c3dc48ffcfd1f61aa13ca74f638b;p=features.git Properly resize columns of child document table widget --- diff --git a/src/frontends/qt4/GuiDocument.cpp b/src/frontends/qt4/GuiDocument.cpp index 8fe7ddada2..122a4905fe 100644 --- a/src/frontends/qt4/GuiDocument.cpp +++ b/src/frontends/qt4/GuiDocument.cpp @@ -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 diff --git a/status.23x b/status.23x index e7e08f998c..f93844e61e 100644 --- a/status.23x +++ b/status.23x @@ -63,6 +63,8 @@ What's new - Consider shorthand in biblatex cite display (bug 11696). +- Properly resize columns of child document table widget. + * INTERNALS