2021-09-21 Fred Gleason <fredg@paravelsystems.com>

* Fixed a regression in rdairplay(1) that made it impossible to
	change the order of columns in the Full Log widget.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2021-09-21 13:13:24 -04:00
parent df3ad659fd
commit d1db7e7719
2 changed files with 5 additions and 0 deletions

View File

@ -22455,3 +22455,6 @@
length of macro carts after editing.
2021-09-21 Fred Gleason <fredg@paravelsystems.com>
* Refactored 'RDMacroEvent' to avoid use of the STL.
2021-09-21 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in rdairplay(1) that made it impossible to
change the order of columns in the Full Log widget.

View File

@ -18,6 +18,7 @@
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//
#include <QHeaderView>
#include <QMessageBox>
#include <QPainter>
@ -135,6 +136,7 @@ ListLog::ListLog(RDLogPlay *log,int id,bool allow_pause,
list_log->setFont(defaultFont());
list_log->setPalette(palette());
list_log_view->setModel(list_log);
list_log_view->horizontalHeader()->setSectionsMovable(true);
list_log_view->resizeColumnsToContents();
connect(list_log_view->selectionModel(),
SIGNAL(selectionChanged(const QItemSelection &,const QItemSelection &)),