Tab of crud view now shows name of the table.
This commit is contained in:
parent
a543ccb021
commit
07c1b63d44
1 changed files with 1 additions and 1 deletions
|
|
@ -50,7 +50,7 @@ void MainWindow::newCrudPage(const PgClass &table)
|
||||||
{
|
{
|
||||||
CrudTab *ct = new CrudTab(this);
|
CrudTab *ct = new CrudTab(this);
|
||||||
ct->setConfig(m_database, table);
|
ct->setConfig(m_database, table);
|
||||||
ui->tabWidget->addTab(ct, "CRUD");
|
ui->tabWidget->addTab(ct, table.name);
|
||||||
ui->tabWidget->setCurrentWidget(ct);
|
ui->tabWidget->setCurrentWidget(ct);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue