From 98f4b88fd6cd36dc2b932bd3a758495d6a4a220a Mon Sep 17 00:00:00 2001 From: mgrojo Date: Mon, 25 Jun 2018 20:52:30 +0200 Subject: [PATCH] Issue #1450: adjust SQL Schema column in DB Schema dock to content The SQL Schema column in DB Schema dock is set to resize automatically to adjust to the content, like it is already done for the same column in the Database Structure tab. --- src/MainWindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index 4c77e54a..2c60901a 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -477,6 +477,7 @@ void MainWindow::populateStructure(const QString& old_table) // Resize SQL column to fit contents ui->dbTreeWidget->resizeColumnToContents(3); + ui->treeSchemaDock->resizeColumnToContents(3); } void MainWindow::clearTableBrowser()