From 46ccc3a8d8039e6f3e1a57c6209f8654cff0bc1e Mon Sep 17 00:00:00 2001 From: Iulian Onofrei Date: Tue, 12 Jul 2016 23:39:57 +0300 Subject: [PATCH] Fixes #510 - refresh the table after toggling the Show row id column option --- src/MainWindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index 88777ff0..ed032f15 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -2482,6 +2482,8 @@ void MainWindow::showRowidColumn(bool show) // Re-enable signals ui->dataTable->horizontalHeader()->blockSignals(false); + + ui->dataTable->update(); } void MainWindow::browseDataSetTableEncoding(bool forAllTables)