mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-05-12 06:49:40 -05:00
Edit: Fix bug introduced in 2242ce8ee6
Fix a bug introduced by commit 2242ce8ee6
which didn't change the code only for the edit dialog, not for the edit dock.
See issue #508.
This commit is contained in:
+1
-1
@@ -184,7 +184,7 @@ void MainWindow::init()
|
||||
connect(editWin, SIGNAL(goingAway()), this, SLOT(editWinAway()));
|
||||
connect(editWin, SIGNAL(updateRecordText(int, int, bool, QByteArray)), this, SLOT(updateRecordText(int, int, bool, QByteArray)));
|
||||
connect(editDock, SIGNAL(goingAway()), this, SLOT(editWinAway()));
|
||||
connect(editDock, SIGNAL(updateRecordText(int, int, QByteArray)), this, SLOT(updateRecordText(int, int, QByteArray)));
|
||||
connect(editDock, SIGNAL(updateRecordText(int, int, bool, QByteArray)), this, SLOT(updateRecordText(int, int, bool, QByteArray)));
|
||||
connect(ui->dbTreeWidget->selectionModel(), SIGNAL(currentChanged(QModelIndex,QModelIndex)), this, SLOT(changeTreeSelection()));
|
||||
connect(ui->dataTable->horizontalHeader(), SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(showDataColumnPopupMenu(QPoint)));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user