show contacts by ID, scroll to insertion when sorted by tha column up or down

This commit is contained in:
Brian Moran
2022-07-11 15:56:55 -07:00
parent d81a3d799c
commit c85ed8cc7d
3 changed files with 39 additions and 20 deletions
+2 -1
View File
@@ -70,7 +70,8 @@ CabrilloLogWindow::CabrilloLogWindow (QSettings * settings, Configuration const
m_->ui_.log_table_view->setItemDelegateForColumn (3, new SQLiteDateTimeDelegate {this});
m_->ui_.log_table_view->setItemDelegateForColumn (4, new CallsignDelegate {this});
auto h_header = m_->ui_.log_table_view->horizontalHeader ();
h_header->moveSection (7, 1); // band to first column
m_->ui_.log_table_view->verticalHeader()->setVisible(false); // turn off line numbers for the table, use index
h_header->moveSection (7, 2); // band to 2nd column
}
CabrilloLogWindow::~CabrilloLogWindow ()